This documents an MDD TWAS study. The analysis was carried out by Lorenza Dall’Aglio and Oliver Pain, with supervision from Cathryn Lewis.

This study used GWAS summary statistics from the Wray et al Major Depression GWAS, including 23andMe participants. We used SNP-weights derived by FUSION for brain tissues, HPA tissues, HPT tissues, and blood.

After reviewer comments, we also included SNP-weights derived by the PsychENCODE team for the DLPFC. The PsychENCODE SNP-weights were derived using all HRC imputed variants within the PsychENCODE dataset. The standard FUSION LD reference is restricted to HapMap3 variants, so when using the PsychENCODE SNP-weight we used an unrestricted version of the 1KG Phase 3 reference to improve SNP overlap.


1 Estimating transcriptome-wide significance threshold

First we need to estimate our transcriptome-wide significance threshold to account for the number of features tested. We will use a permutation-based approach to determine the appropriate transcriptome-wide significance threshold. It works by performing TWAS using the relevent SNP-weight panels.

Show a list of SNP-weight panels in the TWAS

SNP-weight panels used in MDD TWAS
Panel
Adrenal_Gland
Brain_Amygdala
Brain_Anterior_cingulate_cortex_BA24
Brain_Caudate_basal_ganglia
Brain_Cerebellar_Hemisphere
Brain_Cerebellum
Brain_Cortex
Brain_Frontal_Cortex_BA9
Brain_Hippocampus
Brain_Hypothalamus
Brain_Nucleus_accumbens_basal_ganglia
Brain_Putamen_basal_ganglia
Brain_Substantia_nigra
CMC.BRAIN.RNASEQ
CMC.BRAIN.RNASEQ_SPLICING
NTR.BLOOD.RNAARR
Pituitary
Thyroid
Whole_Blood
YFS.BLOOD.RNAARR
PsychENCODE

Generate null distribution

mkdir -p /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/EstTWSig

for batch in $(seq 1 20); do
sbatch -p brc,shared -n 1 --mem=10G /users/k1806347/brc_scratch/Software/Rscript.sh /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/EstTWSig/TWASPermuThr.R \
--nperm 50 \
--ncore 1 \
--weights /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWASweights_list_withPsychENCODE.txt \
--output /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/EstTWSig/Batch${batch}
done

Estimate transcriptome-wide significance threshold

library(data.table)
library(MKmisc)

# Create list of files containing minimum p values
batches<-list.files(path='/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/EstTWSig/',pattern='Batch*')

# Combine all the minimum p-values
min_P_all<-NULL
for(batch in batches){      
    min_P_all<-c(min_P_all,fread(paste0('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/EstTWSig/',batch), header=F)$V1)
}

# Calculate the 5th percentile of the minimum p-values
TWalpha<-MKmisc::quantileCI(x=min_P_all, prob=0.05, method="exact",conf.level=0.95)
TWalpha # 1.368572e-06

# Calculate the 0.1th percentile which will be needed for the high-confidence associations section
TWalpha_001<-MKmisc::quantileCI(x=min_P_all, prob=0.001, method="exact",conf.level=0.99)
TWalpha_001 # 3.685926e-08

# Save the R object for future reference
saveRDS(TWalpha,file='/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/EstTWSig/TWASsign_05.RDS')
saveRDS(TWalpha_001,file='/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/EstTWSig/TWASsign_001.RDS')

2 TWAS


2.1 FUSION SNP-weights


2.1.1 GWAS summary statistics preparation

GWAS summary statistics were munged using the LDSC munge_sumstats.py.

Show munge log file

## *********************************************************************
## * LD Score Regression (LDSC)
## * Version 1.0.0
## * (C) 2014-2015 Brendan Bulik-Sullivan and Hilary Finucane
## * Broad Institute of MIT and Harvard / MIT Department of Mathematics
## * GNU General Public License v3
## *********************************************************************
## Call: 
## ./munge_sumstats.py \
## --N-con-col Ncon \
## --out /mnt/lustre/groups/ukbiobank/sumstats/munged/DEPR01 \
## --merge-alleles /mnt/lustre/groups/ukbiobank/Edinburgh_Data/usr/helenaG/ldsc-master/w_hm3.snplist \
## --N-cas-col Ncas \
## --N-col N \
## --info-min 0.6 \
## --sumstats /mnt/lustre/groups/ukbiobank/sumstats/cleaned/DEPR01.gz 
## 
## Interpreting column names as follows:
## INFO:    INFO score (imputation quality; higher --> better imputation)
## SNP: Variant ID (e.g., rs number)
## N:   Sample size
## A1:  Allele 1, interpreted as ref allele for signed sumstat.
## P:   p-Value
## A2:  Allele 2, interpreted as non-ref allele for signed sumstat.
## Ncon:    Number of controls
## Ncas:    Number of cases
## FREQ:    Allele frequency
## OR:  Odds ratio (1 --> no effect; above 1 --> A1 is risk increasing)
## 
## Reading list of SNPs for allele merge from /mnt/lustre/groups/ukbiobank/Edinburgh_Data/usr/helenaG/ldsc-master/w_hm3.snplist
## Read 1217311 SNPs for allele merge.
## Reading sumstats from /mnt/lustre/groups/ukbiobank/sumstats/cleaned/DEPR01.gz into memory 5000000.0 SNPs at a time.
## Read 10155339 SNPs from --sumstats file.
## Removed 8953119 SNPs not in --merge-alleles.
## Removed 0 SNPs with missing values.
## Removed 0 SNPs with INFO <= 0.6.
## Removed 17182 SNPs with MAF <= 0.01.
## Removed 0 SNPs with out-of-bounds p-values.
## Removed 0 variants that were not SNPs or were strand-ambiguous.
## 1185038 SNPs remain.
## Removed 0 SNPs with duplicated rs numbers (1185038 SNPs remain).
## Removed 0 SNPs with N < 307422.666667 (1185038 SNPs remain).
## Median value of OR was 1.0, which seems sensible.
## Removed 0 SNPs whose alleles did not match --merge-alleles (1185038 SNPs remain).
## Writing summary statistics for 1217311 SNPs (1185038 with nonmissing beta) to /mnt/lustre/groups/ukbiobank/sumstats/munged/DEPR01.sumstats.gz.
## 
## Metadata:
## Mean chi^2 = 1.534
## Lambda GC = 1.419
## Max chi^2 = 79.045
## 597 Genome-wide significant SNPs (some may have been removed by filtering).
## 
## Conversion finished at Wed Feb 14 12:45:03 2018
## Total time elapsed: 2.0m:19.39s

Then, I modified the sumstats to remove the rows with missing values.

Show code

module add general/R/3.5.0
R

library(data.table)

# Read in the LDSC munged sumstats using zcat to unzip the file
sumstats<-data.frame(fread('zcat /mnt/lustre/groups/ukbiobank/sumstats/munged/DEPR01.sumstats.gz'))

# Remove rows containing NA values
sumstats<-sumstats[complete.cases(sumstats),]

# Save the reformatted sumstats and compress
write.table(sumstats, '/users/k1806347/brc_scratch/Data/GWAS_sumstats/DEPR01.sumstats.noNA', col.names=T, row.names=F,quote=F)

q()
n

gzip /users/k1806347/brc_scratch/Data/GWAS_sumstats/DEPR01.sumstats.noNA

2.1.2 TWAS analysis

Run TWAS

# Run analysis for each chromomsome and each panel
for chr in $(seq 1 22); do
  for weights in Adrenal_Gland Brain_Amygdala Brain_Anterior_cingulate_cortex_BA24 Brain_Caudate_basal_ganglia Brain_Cerebellar_Hemisphere Brain_Cerebellum Brain_Cortex Brain_Frontal_Cortex_BA9 Brain_Hippocampus Brain_Hypothalamus Brain_Nucleus_accumbens_basal_ganglia Brain_Putamen_basal_ganglia Brain_Substantia_nigra CMC.BRAIN.RNASEQ CMC.BRAIN.RNASEQ_SPLICING NTR.BLOOD.RNAARR Pituitary Thyroid Whole_Blood YFS.BLOOD.RNAARR; do
    qsub -cwd /mnt/lustre/users/k1894478/scripts/Rscript_correct.sh /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/fusion_twas-master/FUSION.assoc_test.R \
      --sumstats /users/k1806347/brc_scratch/Data/GWAS_sumstats/DEPR01.sumstats.noNA.gz \
      --weights /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/${weights}/${weights}.pos \
      --weights_dir /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/${weights} \
      --ref_ld_chr /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/LDREF/1000G.EUR. \
      --out /mnt/lustre/users/k1894478/output_correct/wray_output/test.${weights}.chr${chr} \
      --chr ${chr} \
      --coloc_P 4.432625e-06 \
      --GWASN 480359
  done
done

# Check each chromosome finished
for weights in Adrenal_Gland Brain_Amygdala Brain_Anterior_cingulate_cortex_BA24 Brain_Caudate_basal_ganglia Brain_Cerebellar_Hemisphere Brain_Cerebellum Brain_Cortex Brain_Frontal_Cortex_BA9 Brain_Hippocampus Brain_Hypothalamus Brain_Nucleus_accumbens_basal_ganglia Brain_Putamen_basal_ganglia Brain_Substantia_nigra CMC.BRAIN.RNASEQ CMC.BRAIN.RNASEQ_SPLICING NTR.BLOOD.RNAARR Pituitary Thyroid Whole_Blood YFS.BLOOD.RNAARR; do
echo $weights
ls /mnt/lustre/users/k1894478/output_correct/wray_output/test.${weights}.chr* | wc -l  #this tells you how many files there are with the name test.X.chrX
done

# To combine per chromosome results file, without duplicating the header
for weights in Adrenal_Gland Brain_Amygdala Brain_Anterior_cingulate_cortex_BA24 Brain_Caudate_basal_ganglia Brain_Cerebellar_Hemisphere Brain_Cerebellum Brain_Cortex Brain_Frontal_Cortex_BA9 Brain_Hippocampus Brain_Hypothalamus Brain_Nucleus_accumbens_basal_ganglia Brain_Putamen_basal_ganglia Brain_Substantia_nigra CMC.BRAIN.RNASEQ CMC.BRAIN.RNASEQ_SPLICING NTR.BLOOD.RNAARR Pituitary Thyroid Whole_Blood YFS.BLOOD.RNAARR; do
head -n 1 /mnt/lustre/users/k1894478/output_correct/wray_output/test.${weights}.chr1 > /mnt/lustre/users/k1894478/output_correct/wray_output/test.${weights}.GW      
tail -n +2 -q /mnt/lustre/users/k1894478/output_correct/wray_output/test.${weights}.chr* >> /mnt/lustre/users/k1894478/output_correct/wray_output/test.${weights}.GW    
done

# Create file containing results for all tissues
awk '
    FNR==1 && NR!=1 { while (/TWAS.P/) getline; }
    1 {print}
' /mnt/lustre/users/k1894478/output_correct/wray_output/test.*.GW >/mnt/lustre/users/k1894478/output_correct/wray_output/AllTissues.GW


# Check the .GW files which were created
ls *.GW

# Delete the per chromosome files
for chr in $(seq 1 22); do
  rm /mnt/lustre/users/k1894478/output_correct/wray_output/test.*.chr${chr}
done

rm /mnt/lustre/users/k1894478/output_correct/wray_output/test.*.chr6.MHC

2.2 PsychENCODE SNP-weights


2.2.1 GWAS summary statistics preparation

The PsychENCODE SNP-weights are not restricted to HapMap3 variants, so we need to use unrestricted GWAS summary statistics also. To achieve this I use the FOCUS software munge script.

Show code

# Edit BP column name
zcat /mnt/lustre/groups/ukbiobank/sumstats/cleaned/DEPR01.gz | sed -e 's/ORIGBP/BP/g' > /users/k1806347/brc_scratch/Data/GWAS_sumstats/Lorenza/DEPR01_BP

# Munge
/users/k1806347/brc_scratch/Software/focus.sh munge /users/k1806347/brc_scratch/Data/GWAS_sumstats/Lorenza/DEPR01_BP --output /users/k1806347/brc_scratch/Data/GWAS_sumstats/Lorenza/DEPR01.focus

# Delete temporary file
rm /users/k1806347/brc_scratch/Data/GWAS_sumstats/Lorenza/DEPR01_BP

Show munge log file

## ===================================
##               FOCUS v0.6.10            
## ===================================
## focus munge
##  /users/k1806347/brc_scratch/Data/GWAS_sumstats/Lorenza/DEPR01_BP
##  --output /users/k1806347/brc_scratch/Data/GWAS_sumstats/Lorenza/DEPR01.focus
## 
## Starting log...
## [2019-11-14 10:54:16 - INFO] Interpreting column names as follows:
## [2019-11-14 10:54:16 - INFO] SNP: Variant ID (e.g., rs number)
## [2019-11-14 10:54:16 - INFO] CHR: Chromsome
## [2019-11-14 10:54:16 - INFO] BP: Base position
## [2019-11-14 10:54:16 - INFO] A1: Allele 1, interpreted as ref allele for signed sumstat
## [2019-11-14 10:54:16 - INFO] A2: Allele 2, interpreted as non-ref allele for signed sumstat
## [2019-11-14 10:54:16 - INFO] P: p-Value
## [2019-11-14 10:54:16 - INFO] INFO: INFO score (imputation quality; higher --> better imputation)
## [2019-11-14 10:54:16 - INFO] OR: Odds ratio (1 --> no effect; above 1 --> A1 is risk increasing)
## [2019-11-14 10:54:16 - INFO] N: Sample size
## [2019-11-14 10:54:16 - INFO] Reading sumstats from /users/k1806347/brc_scratch/Data/GWAS_sumstats/Lorenza/DEPR01_BP into memory 5000000 SNPs at a time
## [2019-11-14 10:54:24 - INFO] Reading SNP chunk 1
## [2019-11-14 10:54:44 - INFO] Reading SNP chunk 2
## [2019-11-14 10:54:52 - INFO] Reading SNP chunk 3
## [2019-11-14 10:54:52 - INFO] Done reading SNP chunks
## [2019-11-14 10:54:58 - INFO] Read 10155339 SNPs from --sumstats file
## [2019-11-14 10:54:58 - INFO] Removed 0 SNPs with missing values
## [2019-11-14 10:54:58 - INFO] Removed 2561651 SNPs with INFO <= 0.9
## [2019-11-14 10:54:58 - INFO] Removed 0 SNPs with MAF <= 0.01
## [2019-11-14 10:54:58 - INFO] Removed 0 SNPs with out-of-bounds p-values
## [2019-11-14 10:54:58 - INFO] Removed 1656695 variants that were not SNPs or were strand-ambiguous
## [2019-11-14 10:54:58 - INFO] 5936993 SNPs remain
## [2019-11-14 10:55:04 - INFO] Removed 0 SNPs with duplicated rs numbers (5936993 SNPs remain).
## [2019-11-14 10:55:06 - INFO] Removed 188 SNPs with N < 307422.6666666667 (5936805 SNPs remain)
## [2019-11-14 10:56:30 - INFO] Median value of OR was 1.0, which seems sensible.
## [2019-11-14 10:56:31 - INFO] Writing summary statistics for 5936805 SNPs (5936805 with nonmissing beta) to /users/k1806347/brc_scratch/Data/GWAS_sumstats/Lorenza/DEPR01.focus.sumstats.gz.
## [2019-11-14 10:57:53 - INFO] METADATA - Mean chi^2 = 1.492
## [2019-11-14 10:57:54 - INFO] METADATA - Lambda GC = 1.383
## [2019-11-14 10:57:54 - INFO] METADATA - Max chi^2 = 79.045
## [2019-11-14 10:57:54 - INFO] METADATA - 2960 Genome-wide significant SNPs (some may have been removed by filtering)
## [2019-11-14 10:57:54 - INFO] Conversion finished

2.2.2 TWAS analysis

Run TWAS

for chr in $(seq 1 22); do
  sbatch -p brc,shared --mem=20G /users/k1806347/brc_scratch/Software/Rscript.sh /scratch/groups/biomarkers-brc-mh/TWAS_resource/FUSION/fusion_twas-master/FUSION.assoc_test.R \
    --sumstats /users/k1806347/brc_scratch/Data/GWAS_sumstats/Lorenza/DEPR01.focus.sumstats.gz \
    --weights /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights.pos \
    --weights_dir /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights \
    --ref_ld_chr /scratch/groups/biomarkers-brc-mh/Reference_data/1KG_Phase3/PLINK/EUR/EUR_phase3.MAF_001.chr \
    --out /users/k1806347/brc_scratch/Analyses/Lorenza/PsychENCODE/MDD_TWAS_PsychENCODE.chr${chr} \
    --chr ${chr} \
    --coloc_P 4.432625e-06 \
    --GWASN 480359
done

Format to match FUSION panel results

library(data.table)

psychENCODE<-NULL
for(i in 1:22){
    if(i == 6){
        tmp1<-fread(paste0('/users/k1806347/brc_scratch/Analyses/Lorenza/PsychENCODE/MDD_TWAS_PsychENCODE.chr',i))
        tmp2<-fread(paste0('/users/k1806347/brc_scratch/Analyses/Lorenza/PsychENCODE/MDD_TWAS_PsychENCODE.chr',i,'.MHC'))
        tmp<-rbind(tmp1,tmp2)
    } else {
        tmp<-fread(paste0('/users/k1806347/brc_scratch/Analyses/Lorenza/PsychENCODE/MDD_TWAS_PsychENCODE.chr',i))
    }
    
    psychENCODE<-rbind(psychENCODE, tmp)
}

col_order<-names(psychENCODE)

psychENCODE$PANEL<-as.character(psychENCODE$PANEL)
psychENCODE$PANEL<-'PsychENCODE'

library(biomaRt)
ensembl = useEnsembl(biomart="ensembl", dataset="hsapiens_gene_ensembl", GRCh=37)
listAttributes(ensembl)
Genes<-getBM(attributes=c('ensembl_gene_id','external_gene_name'), mart = ensembl)

psychENCODE<-merge(psychENCODE, Genes, by.x='ID', by.y='ensembl_gene_id')
psychENCODE$ID<-psychENCODE$external_gene_name
psychENCODE$external_gene_name<-NULL

psychENCODE<-psychENCODE[,col_order, with=F]

write.table(psychENCODE, '/users/k1806347/brc_scratch/Analyses/Lorenza/PsychENCODE/MDD_TWAS_PsychENCODE.GW', col.names=T, row.names=F, quote=F)

2.3 Combine results across FUSION and PsychENCODE panels

Format to match FUSION panel results

library(data.table)

psych<-fread('/users/k1806347/brc_scratch/Analyses/Lorenza/PsychENCODE/MDD_TWAS_PsychENCODE.GW')
fusion<-fread('/users/k1806347/brc_scratch/Analyses/Lorenza/AllTissues.GW')

all<-rbind(psych,fusion)

# Write out full results
write.table(all, '/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues.txt', row.names=F, col.names=T, quote=F)

# Write out transcriptome-wide significant results
write.table(all[which(all$TWAS.P < 1.368572e-06),], '/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_TWSig.txt', row.names=F, col.names=T, quote=F)

dim(all[which(all$TWAS.P < 1.368572e-06),]) # 176 hits
length(unique(all[which(all$TWAS.P < 1.368572e-06),]$ID)) # 94 unique genes

# Check how much PsychENCODE adds
dim(fusion[which(fusion$TWAS.P < 1.368572e-06),]) # 154 hits
length(unique(fusion[which(fusion$TWAS.P < 1.368572e-06),]$ID)) # 84 unique genes

3 Post-TWAS


3.1 Create Manahattan-style plots

Show code

# Manhattan plot based on permutation significance
/users/k1806347/brc_scratch/Software/Rscript_singularity.sh /scratch/groups/biomarkers-brc-mh/TWAS_resource/FUSION/Scripts/Git/opain/TWAS-plotter/TWAS-plotter.V1.0.r \
--twas /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues.txt \
--sig_p 1.368572e-06 \
--output /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_Manhattan \
--width 3500 \
--height 2500

#Manhattan plot for high confidence associations
/users/k1806347/brc_scratch/Software/Rscript_singularity.sh /scratch/groups/biomarkers-brc-mh/TWAS_resource/FUSION/Scripts/Git/opain/TWAS-plotter/TWAS-plotter.V1.0.r \
--twas /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues.txt \
--sig_p 3.685926e-08 \
--output /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_HighConf_Manhattan \
--width 3500 \
--height 2500

Show Manhattan plots

MDD TWAS Manhattan Plot with transcriptome-wide signficance

MDD TWAS Manhattan Plot with transcriptome-wide signficance


MDD TWAS Manhattan Plot with high-confidence threshold

MDD TWAS Manhattan Plot with high-confidence threshold


3.2 Conditional analysis

Run post_process.R script

# Change directory to location of glist-hg19 file
cd /users/k1806347/brc_scratch/Data/Gene_Locations

mkdir -p /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/Conditional

for chr in $(seq 1 22); do

  status=$(awk -v var="${chr}" '$4 == var {print "Present";exit;}' /users/k1806347/brc_scratch/Analyses/Lorenza/PsychENCODE/post-TWAS/MDD_TWAS_AllTissues_TWSig.txt )
  
  if [ "$status" == "Present" ]; then
    sbatch -p brc,shared --mem 25G -n 1 /users/k1806347/brc_scratch/Software/Rscript_singularity.sh /scratch/groups/biomarkers-brc-mh/TWAS_resource/FUSION/fusion_twas-master/FUSION.post_process.R \
      --input /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_TWSig.txt \
      --sumstats /users/k1806347/brc_scratch/Data/GWAS_sumstats/Lorenza/DEPR01.focus.sumstats.gz \
      --report \
      --ref_ld_chr /scratch/groups/biomarkers-brc-mh/Reference_data/1KG_Phase3/PLINK/EUR/EUR_phase3.MAF_001.chr \
      --out /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/Conditional/test.cond.chr${chr} \
      --chr ${chr} \
      --plot \
      --plot_legend all \
      --save_loci \
      --locus_win 500000
  fi

done

3.3 Process TWAS results

Clean the TWAS results

###
# Clean file PANEL names 
###

rm(list=ls())
library(data.table)
twas_sign <- fread("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_TWSig.txt")
twas <- fread("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues.txt")

twas_sign$BEST.GWAS.P<-2*pnorm(-abs(twas_sign$BEST.GWAS.Z))
sum(twas_sign$BEST.GWAS.P > 5e-8) # 63
sum(twas_sign$BEST.GWAS.P < 5e-8) # 113

str(twas_sign)
str(twas)

#clean the PANEL names of the output df containing results on all tested features
twas$PANEL_clean<-gsub('_',' ',twas$PANEL)
twas$PANEL_clean<-gsub('CMC.BRAIN.RNASEQ','CMC DLPFC',twas$PANEL_clean)
twas$PANEL_clean<-gsub('SPLICING','Splicing',twas$PANEL_clean)
twas$PANEL_clean<-gsub('NTR.BLOOD.RNAARR','NTR Blood',twas$PANEL_clean)
twas$PANEL_clean<-gsub('YFS.BLOOD.RNAARR','YFS Blood',twas$PANEL_clean)
twas$PANEL_clean[!grepl('CMC|NTR|YFS|PsychENCODE', twas$PANEL)]<-paste0('GTEx ',twas$PANEL_clean[!grepl('CMC|NTR|YFS|PsychENCODE', twas$PANEL)])
#to add gtex to each of the snp weights which don't have CMC NTR or YFS in front
twas$PANEL_clean<-gsub('Brain', '', twas$PANEL_clean)
twas$PANEL_clean <- gsub('Anterior cingulate cortex', 'ACC', twas$PANEL_clean)
twas$PANEL_clean <- gsub('basal ganglia', '', twas$PANEL_clean)
twas$PANEL_clean <- gsub('BA9', '', twas$PANEL_clean)
twas$PANEL_clean <- gsub('BA24', '', twas$PANEL_clean)
twas$PANEL_clean <- gsub('  ', ' ', twas$PANEL_clean)

# Shorten panel name to plot easily
twas$PANEL_clean_short<-substr(twas$PANEL_clean, start = 1, stop = 25)  #start the name at the first character and stop at the 25th
twas$PANEL_clean_short[nchar(twas$PANEL_clean) > 25]<-paste0(twas$PANEL_clean_short[nchar(twas$PANEL_clean) > 25], "...")

#do the same for the output file with sign features only
twas_sign$PANEL_clean<-gsub('_',' ',twas_sign$PANEL)
twas_sign$PANEL_clean<-gsub('CMC.BRAIN.RNASEQ','CMC DLPFC',twas_sign$PANEL_clean)
twas_sign$PANEL_clean<-gsub('SPLICING','Splicing',twas_sign$PANEL_clean)
twas_sign$PANEL_clean<-gsub('NTR.BLOOD.RNAARR','NTR Blood',twas_sign$PANEL_clean)
twas_sign$PANEL_clean<-gsub('YFS.BLOOD.RNAARR','YFS Blood',twas_sign$PANEL_clean)
twas_sign$PANEL_clean[!grepl('CMC|NTR|YFS|PsychENCODE', twas_sign$PANEL)]<-paste0('GTEx ',twas_sign$PANEL_clean[!grepl('CMC|NTR|YFS|PsychENCODE', twas_sign$PANEL)])
#to add gtex to each of the snp weights which don't have CMC NTR or YFS in front
twas_sign$PANEL_clean<-gsub('Brain', '', twas_sign$PANEL_clean)
twas_sign$PANEL_clean <- gsub('Anterior cingulate cortex', 'ACC', twas_sign$PANEL_clean)
twas_sign$PANEL_clean <- gsub('basal ganglia', '', twas_sign$PANEL_clean)
twas_sign$PANEL_clean <- gsub('BA9', '', twas_sign$PANEL_clean)
twas_sign$PANEL_clean <- gsub('BA24', '', twas_sign$PANEL_clean)
twas_sign$PANEL_clean <- gsub('  ', ' ', twas_sign$PANEL_clean)

# Shorten panel name to plot easily
twas_sign$PANEL_clean_short<-substr(twas_sign$PANEL_clean, start = 1, stop = 25)  #start the name at the first character and stop at the 25th
twas_sign$PANEL_clean_short[nchar(twas_sign$PANEL_clean) > 25]<-paste0(twas_sign$PANEL_clean_short[nchar(twas_sign$PANEL_clean) > 25], "...")

#check the variables
str(twas)
str(twas_sign)

###
# Deal with missingness and subset for the relevant cols only
###

##TWAS df
#exclude missings
twas<-twas[!is.na(twas$TWAS.Z),]
twas<-twas[!is.na(twas$TWAS.P),]

#subset columns needed 
twas_sub <- twas[,c('FILE', 'ID','PANEL', 'PANEL_clean_short','PANEL_clean','CHR','P0', 'P1', 'TWAS.Z', 'TWAS.P', 'COLOC.PP0', 'COLOC.PP1', 'COLOC.PP2', 'COLOC.PP3', 'COLOC.PP4')]
str(twas_sub)

##TWAS sign df
#exclude missings
twas_sign<-twas_sign[!is.na(twas_sign$TWAS.Z),]
twas_sign<-twas_sign[!is.na(twas_sign$TWAS.P),]

#subset columns needed 
twas_sign_sub <- twas_sign[,c('FILE', 'ID','PANEL', 'PANEL_clean_short','PANEL_clean','CHR','P0', 'P1', 'TWAS.Z', 'TWAS.P', 'COLOC.PP0', 'COLOC.PP1', 'COLOC.PP2', 'COLOC.PP3', 'COLOC.PP4')]
str(twas_sign_sub)

###
# Update positions
###

# Rationale: the positions in the output files created by FUSION are rounded, thus not completely accurate. 
# Therefore, we need to update the positions (P0 and P1) based on the pos files in Rosalind. This needs to be done on Putty though. A new file will be saved and reopened here. 

setwd('/mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/')

weights<-c('Adrenal_Gland', 'Brain_Amygdala', 'Brain_Anterior_cingulate_cortex_BA24', 'Brain_Caudate_basal_ganglia', 'Brain_Cerebellar_Hemisphere', 'Brain_Cerebellum', 'Brain_Cortex', 'Brain_Frontal_Cortex_BA9', 'Brain_Hippocampus', 'Brain_Hypothalamus', 'Brain_Nucleus_accumbens_basal_ganglia', 'Brain_Putamen_basal_ganglia', 'Brain_Substantia_nigra', 'CMC.BRAIN.RNASEQ', 'CMC.BRAIN.RNASEQ_SPLICING', 'NTR.BLOOD.RNAARR', 'Pituitary', 'Thyroid', 'Whole_Blood', 'YFS.BLOOD.RNAARR')

#Get all pos files within the SNP-weight sets and bind them 
FUSION_pos<-NULL
for(i in weights){
FUSION_pos_temp<-read.table(paste(i, '/',i, '.pos',sep=''), header=T, stringsAsFactors=F)   #repeating i twice with / in the middle is to get one folder further 
FUSION_pos<-rbind(FUSION_pos, FUSION_pos_temp)
}

PsychENCODE_pos<-read.table('/scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights.pos', header=T, stringsAsFactors=F)
PsychENCODE_pos$PANEL<-'PsychENCODE'

# Combine pos files
FUSION_pos<-rbind(FUSION_pos, PsychENCODE_pos)

write.table(FUSION_pos,'/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/MDD_TWAS.pos', col.names=T, row.names=F, quote=F)

str(FUSION_pos)   #97733 observations of 7 variables (PANEL, WGT, ID, CHR, P0, P1, N)

###
# Merge the pos file with the twas_sub and twas_sign_sub df
###

#the pos file and the output file do not have the same columns with the same information. We therefore need to slightly modify the TWAS columns 
twas_sub$tmp<-gsub('/mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/','',twas_sub$FILE)
twas_sub$tmp<-gsub('/scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/','',twas_sub$tmp)
#to delete the full pathway of the file and just keep the important information 
twas_sub$PANEL<-sub('/.*','', twas_sub$tmp)
twas_sub$Feature<-gsub('.*/','',twas_sub$tmp)
twas_sub$WGT<-paste0(twas_sub$PANEL, '/', twas_sub$Feature)
twas_sub$PANEL<-NULL
twas_sub$tmp<-NULL
twas_sub$Feature<-NULL

twas_sub[order(twas_sub$WGT), ]
FUSION_pos[order(FUSION_pos$WGT), ]

#merge
twas_sub_correct <- merge(twas_sub, FUSION_pos, by="WGT")

#check
head(twas_sub_correct)

#clean
twas_sub_correct$ID.y<-NULL
colnames(twas_sub_correct)
names(twas_sub_correct)[3]<-'ID'   #to change the name  of IDx to ID
head(twas_sub_correct)
  
#repeat everything for the twas_sign_sub file
twas_sign_sub$tmp<-gsub('/mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/','',twas_sign_sub$FILE)
twas_sign_sub$tmp<-gsub('/scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/','',twas_sign_sub$tmp)

#to delete the full pathway of the file and just keep the important information 
twas_sign_sub$PANEL<-sub('/.*','', twas_sign_sub$tmp)
twas_sign_sub$Feature<-gsub('.*/','',twas_sign_sub$tmp)
twas_sign_sub$WGT<-paste0(twas_sign_sub$PANEL, '/', twas_sign_sub$Feature)
twas_sign_sub$PANEL<-NULL
twas_sign_sub$tmp<-NULL
twas_sign_sub$Feature<-NULL

# twas_sign_sub[order(twas_sign_sub$WGT), ]

#merge
twas_sign_sub_correct <- merge(twas_sign_sub, FUSION_pos, by="WGT")

#check
head(twas_sign_sub_correct)

#clean
twas_sign_sub_correct$ID.y<-NULL
colnames(twas_sign_sub_correct)
names(twas_sign_sub_correct)[3]<-'ID'   #to change the name  of IDx to ID
 
head(twas_sign_sub_correct)
dim(twas_sign_sub_correct)
dim(twas_sub_correct)

###
# Clean output files for future scripts
###

#clean both output files to have clean outputs to use in future scripts

#twas sign sub correct df
colnames(twas_sign_sub_correct)

names(twas_sign_sub_correct)[6] <- "CHR"
twas_sign_sub_correct$CHR.y <- NULL
colnames(twas_sign_sub_correct)
names(twas_sign_sub_correct)[17] <- "P0" #turn POy into P0 - nb P0y is the one withh the more accurate positions
names(twas_sign_sub_correct)[18] <- "P1" 

twas_sign_sub_correct$P0.x <- NULL
twas_sign_sub_correct$P1.x <- NULL


colnames(twas_sign_sub_correct)
twas_sign_sub_correct$N <- NULL
str(twas_sign_sub_correct)

#change the variable types for those which are wrong 

#turn PO and P1 into numerical variables
twas_sign_sub_correct$P0 <- as.numeric(as.character(twas_sign_sub_correct$P0))
twas_sign_sub_correct$P1 <- as.numeric(as.character(twas_sign_sub_correct$P1))

str(twas_sign_sub_correct)

#twas_sub correct df
colnames(twas_sub_correct)

names(twas_sub_correct)[6]<- "CHR"
names(twas_sub_correct)[18]<- "P0"
names(twas_sub_correct)[19]<- "P1"
twas_sub_correct$CHR.y <- NULL
twas_sub_correct$P0.x <- NULL
twas_sub_correct$P1.x <- NULL

colnames(twas_sub_correct)
twas_sub_correct$N <- NULL

str(twas_sub_correct)

#change variable type for PO and P1
twas_sub_correct$P0 <- as.numeric(as.character(twas_sub_correct$P0))
twas_sub_correct$P1 <- as.numeric(as.character(twas_sub_correct$P1))

#save 
write.table(twas_sub_correct, file = "/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_CLEAN.txt", sep = " ", col.names = T, row.names = F)
write.table(twas_sign_sub_correct, file = "/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_TWSig_CLEAN.txt", sep = " ", col.names = T, row.names=F)

q()
n

Create a table with the transcriptome-wide significant findings

rm(list=ls())
library(data.table)

twas_sign <- fread("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_TWSig_CLEAN.txt")

str(twas_sign)
twas_sign$CHR <- as.numeric(as.character(twas_sign$CHR))
twas_sign$P0 <- as.numeric(as.character(twas_sign$P0))
twas_sign$P1 <- as.numeric(as.character(twas_sign$P1))

twas_sign <- twas_sign[order(twas_sign$CHR, twas_sign$P0), ]

twas_sign$Location <- paste0('chr',twas_sign$CHR,':',twas_sign$P0,'-',twas_sign$P1) 

colnames(twas_sign)

library(dplyr)
library(tibble)
twas_sign <- as_data_frame(twas_sign)

col_order <- c("Location", "ID", "PANEL_clean_short", "TWAS.Z", "TWAS.P")

twas_sign_final <- twas_sign[, col_order]

write.csv(twas_sign_final, "/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_TWSig_CLEAN.brief.csv", row.names=F)

twas_sign_final

Show transcriptome-wide significant table

Transcriptome-wide significant associations with Major Depression
Location ID PANEL_clean_short TWAS.Z TWAS.P
chr1:8412457-8877702 RERE GTEx Whole Blood -5.095707 3.47e-07
chr1:8412457-8877702 RERE YFS Blood -5.310078 1.10e-07
chr1:8484705-8494898 RP5-1115A15.1 GTEx Thyroid -5.175240 2.28e-07
chr1:8484705-8494898 RP5-1115A15.1 GTEx Whole Blood -4.866386 1.14e-06
chr1:36884051-36884179 SNORA63 GTEx Nucleus accumbens 4.848870 1.24e-06
chr1:71861623-72748417 NEGR1 GTEx Caudate 5.780100 7.47e-09
chr1:71861623-72748417 NEGR1 GTEx Putamen 5.548510 2.88e-08
chr1:71861623-72748417 NEGR1 GTEx Whole Blood 8.760622 1.94e-18
chr1:72767155-72767512 RPL31P12 GTEx Cerebellar Hemispher… -7.785520 6.94e-15
chr1:72767155-72767512 RPL31P12 GTEx Cerebellum -7.708820 1.27e-14
chr1:72767155-72767512 RPL31P12 PsychENCODE -7.742756 9.73e-15
chr1:175873898-175889649 RP11-318C24.2 GTEx Thyroid -5.027510 4.97e-07
chr1:175913966-176176370 RFWD2 CMC DLPFC Splicing -4.958690 7.10e-07
chr1:175913966-176176370 RFWD2 CMC DLPFC Splicing 5.039850 4.66e-07
chr1:175913966-176176370 RFWD2 CMC DLPFC Splicing -5.005960 5.56e-07
chr1:181452685-181775921 CACNA1E CMC DLPFC Splicing -4.989390 6.06e-07
chr1:197473878-197744623 DENND1B CMC DLPFC 4.848374 1.24e-06
chr1:197473878-197744623 DENND1B CMC DLPFC Splicing -5.421950 5.90e-08
chr1:197473878-197744623 DENND1B CMC DLPFC Splicing 5.018050 5.22e-07
chr2:58386377-58468515 FANCL CMC DLPFC -5.183180 2.18e-07
chr2:58386377-58468515 FANCL CMC DLPFC Splicing 4.897476 9.71e-07
chr2:197831741-198175897 ANKRD44 YFS Blood -5.690140 1.27e-08
chr2:198254508-198299815 SF3B1 GTEx Hypothalamus 5.214900 1.84e-07
chr3:44481261-44561226 ZNF445 CMC DLPFC -5.103280 3.34e-07
chr4:41937137-41962589 TMEM33 PsychENCODE 4.837418 1.32e-06
chr4:41983713-41988476 DCAF4L1 GTEx Thyroid -5.128000 2.93e-07
chr4:41990758-41991254 RP11-814H16.2 GTEx Cerebellar Hemispher… 5.009600 5.45e-07
chr4:41992489-42092474 SLC30A9 GTEx Amygdala -5.253400 1.49e-07
chr4:41992489-42092474 SLC30A9 GTEx ACC -5.001690 5.68e-07
chr4:41992489-42092474 SLC30A9 GTEx Caudate -4.854800 1.21e-06
chr4:41992489-42092474 SLC30A9 GTEx Cortex -5.774530 7.72e-09
chr4:41992489-42092474 SLC30A9 GTEx Hypothalamus -5.085140 3.67e-07
chr4:41992489-42092474 SLC30A9 GTEx Nucleus accumbens -5.602700 2.11e-08
chr4:41992489-42092474 SLC30A9 PsychENCODE -5.259200 1.45e-07
chr5:87564712-87732502 TMEM161B-AS1 PsychENCODE 6.091010 1.12e-09
chr5:87564888-87732502 TMEM161B-AS1 GTEx Adrenal Gland 5.360090 8.32e-08
chr5:87564888-87732502 TMEM161B-AS1 GTEx Amygdala 6.118500 9.45e-10
chr5:87564888-87732502 TMEM161B-AS1 GTEx ACC 6.445500 1.15e-10
chr5:87564888-87732502 TMEM161B-AS1 GTEx Caudate 6.282167 3.34e-10
chr5:87564888-87732502 TMEM161B-AS1 GTEx Cerebellar Hemispher… 6.011700 1.84e-09
chr5:87564888-87732502 TMEM161B-AS1 GTEx Cerebellum 6.053050 1.42e-09
chr5:87564888-87732502 TMEM161B-AS1 GTEx Cortex 6.021420 1.73e-09
chr5:87564888-87732502 TMEM161B-AS1 GTEx Frontal Cortex 6.720000 1.82e-11
chr5:87564888-87732502 TMEM161B-AS1 GTEx Hypothalamus 5.875800 4.21e-09
chr5:87564888-87732502 TMEM161B-AS1 GTEx Nucleus accumbens 6.010490 1.85e-09
chr5:87564888-87732502 TMEM161B-AS1 GTEx Putamen 6.372050 1.87e-10
chr5:87564888-87732502 TMEM161B-AS1 GTEx Substantia nigra 6.057270 1.38e-09
chr5:87564888-87732502 TMEM161B-AS1 GTEx Pituitary 6.048500 1.46e-09
chr5:87564888-87732502 TMEM161B-AS1 GTEx Thyroid 5.889760 3.87e-09
chr5:87564888-87732502 TMEM161B-AS1 GTEx Whole Blood 5.526440 3.27e-08
chr5:87729709-87794514 CTC-498M16.4 GTEx Substantia nigra 5.403610 6.53e-08
chr5:87988462-87989789 CTC-467M3.3 GTEx ACC -5.813700 6.11e-09
chr5:87988462-87989789 CTC-467M3.3 GTEx Cerebellar Hemispher… -5.861000 4.60e-09
chr5:87988462-87989789 CTC-467M3.3 GTEx Cortex -6.510990 7.47e-11
chr5:87988462-87989789 CTC-467M3.3 GTEx Frontal Cortex -7.091600 1.33e-12
chr5:87988462-87989789 CTC-467M3.3 PsychENCODE -6.097890 1.07e-09
chr5:140024947-140027370 NDUFA2 CMC DLPFC 5.190020 2.10e-07
chr5:140201222-140203811 PCDHA5 GTEx Thyroid -5.402970 6.55e-08
chr5:140220907-140223351 PCDHA8 GTEx Cerebellar Hemispher… -4.980100 6.36e-07
chr6:26188921-26189323 HIST1H4D NTR Blood -4.987600 6.11e-07
chr6:26365386-26378540 BTN3A2 NTR Blood 5.326600 1.00e-07
chr6:26365387-26378546 BTN3A2 GTEx Cerebellar Hemispher… 5.188200 2.12e-07
chr6:26365387-26378546 BTN3A2 GTEx Hippocampus 4.963000 6.96e-07
chr6:26365387-26378546 BTN3A2 GTEx Pituitary 5.898930 3.66e-09
chr6:26365387-26378546 BTN3A2 GTEx Thyroid 5.481600 4.22e-08
chr6:26365387-26378546 BTN3A2 GTEx Whole Blood 5.086960 3.64e-07
chr6:26538633-26546482 HMGN4 GTEx Cerebellum 5.395400 6.84e-08
chr6:27215480-27224250 PRSS16 GTEx Cerebellar Hemispher… -4.891200 1.00e-06
chr6:27215480-27224250 PRSS16 GTEx Cerebellum -4.947900 7.50e-07
chr6:27215480-27224250 PRSS16 GTEx Frontal Cortex -5.045000 4.54e-07
chr6:27215480-27224250 PRSS16 GTEx Pituitary -5.916080 3.30e-09
chr6:27215480-27224250 PRSS16 GTEx Whole Blood -5.335920 9.51e-08
chr6:27325604-27339304 ZNF204P GTEx Adrenal Gland -5.032700 4.84e-07
chr6:27371789-27374743 RP1-153G14.4 GTEx Hippocampus 5.354000 8.60e-08
chr6:27418522-27440897 ZNF184 GTEx Caudate -6.325200 2.53e-10
chr6:27418522-27440897 ZNF184 GTEx Hypothalamus -4.952200 7.34e-07
chr6:27840926-27841289 HIST1H4L NTR Blood 4.870800 1.11e-06
chr6:28058932-28061442 ZSCAN12P1 PsychENCODE 6.268010 3.66e-10
chr6:28058932-28061442 ZSCAN12P1 GTEx Whole Blood -4.936930 7.94e-07
chr6:28083406-28084329 RP1-265C24.5 GTEx Hippocampus 5.532000 3.16e-08
chr6:28092338-28097860 ZSCAN16 YFS Blood -6.109000 1.00e-09
chr6:28192664-28201260 ZSCAN9 GTEx Cerebellum -5.307800 1.11e-07
chr6:28192664-28201260 ZSCAN9 GTEx Hippocampus -6.017000 1.77e-09
chr6:28192664-28201260 ZSCAN9 GTEx Pituitary -6.159020 7.32e-10
chr6:28227098-28228736 NKAPL PsychENCODE 5.002860 5.65e-07
chr6:28234788-28245974 RP5-874C20.3 GTEx Adrenal Gland 5.094600 3.49e-07
chr6:28234788-28245974 RP5-874C20.3 GTEx Cerebellum 5.062800 4.13e-07
chr6:28234788-28245974 RP5-874C20.3 GTEx Hippocampus 5.198000 2.01e-07
chr6:28234788-28245974 RP5-874C20.3 GTEx Putamen 5.739000 9.52e-09
chr6:28234788-28245974 RP5-874C20.3 GTEx Thyroid 5.338400 9.38e-08
chr6:28234788-28245974 RP5-874C20.3 GTEx Whole Blood 5.662330 1.49e-08
chr6:28249314-28270326 PGBD1 GTEx Cerebellar Hemispher… -6.313100 2.74e-10
chr6:28292470-28324048 ZSCAN31 GTEx Amygdala -5.084150 3.69e-07
chr6:28317691-28336947 ZKSCAN3 GTEx Amygdala 4.949900 7.43e-07
chr6:28317691-28336947 ZKSCAN3 GTEx Hippocampus 4.951000 7.37e-07
chr6:28317691-28336947 ZKSCAN3 GTEx Thyroid 6.093300 1.11e-09
chr6:28399707-28411279 ZSCAN23 GTEx Hypothalamus -5.777500 7.58e-09
chr6:28399707-28411279 ZSCAN23 GTEx Putamen -4.894000 9.90e-07
chr6:28399707-28411279 ZSCAN23 GTEx Pituitary -4.953290 7.30e-07
chr6:30644166-30655672 PPP1R18 GTEx Adrenal Gland 4.910200 9.10e-07
chr6:30695485-30710682 FLOT1 CMC DLPFC Splicing -5.299700 1.16e-07
chr6:30695485-30710682 FLOT1 CMC DLPFC Splicing -5.067100 4.04e-07
chr6:30695485-30710682 FLOT1 CMC DLPFC Splicing 4.936600 7.95e-07
chr6:30695486-30710510 FLOT1 GTEx Cerebellum -5.299000 1.16e-07
chr6:30695486-30710510 FLOT1 GTEx Pituitary -5.253270 1.49e-07
chr6:30695486-30710510 FLOT1 GTEx Thyroid -5.557400 2.74e-08
chr6:30881982-30894236 VARS2 GTEx Cortex 5.922000 3.18e-09
chr6:30881982-30894236 VARS2 GTEx Whole Blood 6.323130 2.56e-10
chr6:31255287-31256741 WASF5P GTEx Pituitary -5.156240 2.52e-07
chr6:31368479-31445283 HCP5 GTEx Thyroid 6.400800 1.55e-10
chr6:31462658-31478901 MICB GTEx Thyroid -5.557000 2.74e-08
chr6:31606805-31620482 BAG6 CMC DLPFC Splicing -5.580000 2.40e-08
chr6:31694815-31698357 DDAH2 GTEx Frontal Cortex 5.409500 6.32e-08
chr6:31694816-31698039 DDAH2 CMC DLPFC 5.344500 9.07e-08
chr6:99817347-99842082 COQ3 CMC DLPFC Splicing 5.146560 2.65e-07
chr6:105404922-105531207 LIN28B CMC DLPFC -5.232050 1.68e-07
chr6:105404923-105531207 LIN28B PsychENCODE -5.105689 3.30e-07
chr6:105584224-105617820 BVES-AS1 GTEx Amygdala -5.578300 2.43e-08
chr7:12250867-12282993 TMEM106B GTEx Adrenal Gland 5.505026 3.69e-08
chr7:12250867-12282993 TMEM106B PsychENCODE -5.790690 7.01e-09
chr7:12250867-12282993 TMEM106B GTEx Whole Blood 5.531000 3.18e-08
chr7:12250867-12276886 TMEM106B YFS Blood 5.373600 7.72e-08
chr7:24836158-25021253 OSBPL3 GTEx Pituitary -5.622890 1.88e-08
chr8:52232136-52722005 PXDNL CMC DLPFC 5.887460 3.92e-09
chr8:61297147-61429354 RP11-163N6.2 GTEx Thyroid -5.336530 9.47e-08
chr9:126605315-126605965 PIGFP2 PsychENCODE -5.305600 1.12e-07
chr11:57067112-57092426 TNKS1BP1 GTEx Adrenal Gland 4.922610 8.54e-07
chr11:57405497-57420263 AP000662.4 GTEx Thyroid -4.980256 6.35e-07
chr11:57424488-57429340 CLP1 GTEx Whole Blood 5.195860 2.04e-07
chr11:61535973-61560274 TMEM258 PsychENCODE 5.021730 5.12e-07
chr11:113280318-113346111 DRD2 GTEx Frontal Cortex -5.073787 3.90e-07
chr13:53602875-53626196 OLFM4 CMC DLPFC 5.091290 3.56e-07
chr14:42057064-42074059 CTD-2298J14.2 GTEx Thyroid -5.678860 1.36e-08
chr14:42076773-42373752 LRFN5 GTEx Cerebellar Hemispher… 5.423400 5.85e-08
chr14:42076773-42373752 LRFN5 GTEx Cerebellum 5.597540 2.17e-08
chr14:59951161-59971429 JKAMP GTEx Thyroid -5.125100 2.97e-07
chr14:59971779-60043549 CCDC175 GTEx Thyroid -5.478850 4.28e-08
chr14:60062693-60337557 RTN1 CMC DLPFC Splicing -4.874920 1.09e-06
chr14:60062695-60337684 RTN1 GTEx Thyroid -5.348450 8.87e-08
chr14:64319682-64693151 SYNE2 NTR Blood 5.609528 2.03e-08
chr14:64550950-64770377 ESR2 GTEx Pituitary -5.982300 2.20e-09
chr14:64550950-64770377 ESR2 GTEx Whole Blood -5.655371 1.56e-08
chr14:75120140-75179818 AREL1 PsychENCODE -5.015110 5.30e-07
chr14:75319736-75330537 PROX2 GTEx Thyroid -5.758100 8.51e-09
chr14:75348593-75370450 DLST CMC DLPFC 4.981400 6.31e-07
chr14:75348594-75370448 DLST PsychENCODE 5.089700 3.59e-07
chr14:75370656-75389188 RPS6KL1 CMC DLPFC Splicing -5.023810 5.07e-07
chr14:75370657-75390099 RPS6KL1 PsychENCODE -4.952550 7.32e-07
chr14:103878456-103879098 RP11-600F24.2 PsychENCODE 5.185660 2.15e-07
chr14:103985996-103989448 CKB YFS Blood 5.346000 8.99e-08
chr14:103995508-104003410 TRMT61A CMC DLPFC 5.051300 4.39e-07
chr14:103995521-104003410 TRMT61A GTEx Whole Blood 4.977593 6.44e-07
chr14:104019758-104028214 RP11-894P9.2 GTEx Thyroid -5.462560 4.69e-08
chr14:104153913-104154464 RP11-73M18.6 PsychENCODE 5.031320 4.87e-07
chr14:104160897-104161507 RP11-73M18.7 PsychENCODE 4.856130 1.20e-06
chr14:104162690-104163500 RP11-73M18.8 GTEx Amygdala 5.142000 2.72e-07
chr14:104177607-104179149 AL049840.1 GTEx Cerebellum 5.029540 4.92e-07
chr14:104177607-104179149 AL049840.1 GTEx Cortex 5.143620 2.69e-07
chr14:104179904-104180441 RP11-73M18.9 GTEx Cortex 4.977330 6.45e-07
chr14:104179904-104180586 RP11-73M18.9 PsychENCODE 4.830100 1.36e-06
chr16:72146056-72210777 PMFBP1 PsychENCODE -5.160620 2.46e-07
chr17:27400528-27507430 MYO18A GTEx Adrenal Gland -5.128570 2.92e-07
chr17:27401933-27405875 TIAF1 GTEx Adrenal Gland -5.361200 8.27e-08
chr17:65520597-65521538 CTD-2653B5.1 PsychENCODE 5.105730 3.30e-07
chr18:52385091-52562747 RAB27B PsychENCODE 5.012900 5.36e-07
chr18:52495707-52562747 RAB27B CMC DLPFC Splicing 4.843190 1.28e-06
chr20:47835831-47860614 DDX27 CMC DLPFC 4.836260 1.32e-06
chr22:41165634-41215403 SLC25A17 GTEx Nucleus accumbens 5.076990 3.83e-07
chr22:41165634-41215403 SLC25A17 GTEx Thyroid 4.896100 9.78e-07
chr22:41253088-41351450 XPNPEP3 GTEx Frontal Cortex 4.951000 7.38e-07
chr22:41258260-41363888 XPNPEP3 CMC DLPFC 5.110000 3.21e-07
chr22:41487790-41576081 EP300 GTEx Cerebellum 5.493900 3.93e-08
chr22:41487790-41576081 EP300 YFS Blood 5.059100 4.21e-07
chr22:41641614-41682216 RANGAP1 CMC DLPFC Splicing 5.240100 1.61e-07
chr22:41641615-41682255 RANGAP1 PsychENCODE -5.575273 2.47e-08
chr22:41697526-41756151 ZC3H7B GTEx Cerebellum 5.729100 1.01e-08

3.4 Plot TWAS results

Create QQ-plot and histogram of p-values

####
#QQplot
###

#load file with all hits - not just sign, ones
twas_sub_correct <- read.table("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_CLEAN.txt", header=T, stringsAsFactors = F)

ggd.qqplot = function(pvector, main=NULL, ...) {
  o = -log10(sort(pvector,decreasing=F))
  e = -log10( 1:length(o)/length(o) )
  plot(e,o,pch=19,cex=1, main=main, ...,
       xlab=expression(Expected~~-log[10](italic(p))),
       ylab=expression(Observed~~-log[10](italic(p))),
       xlim=c(0,max(e)), ylim=c(0,max(o)))
  lines(e,e,col="red")
}

pvalues <- twas_sub_correct$TWAS.P

# Add a title
png("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_QQplot.png",width = 2000, height = 2000, units = "px", res=300)
ggd.qqplot(pvalues, "QQ-plot of TWAS p-values")
dev.off() 

###
# Histogram of p-values
###

library(ggplot2)

## HISTOGRAM OF P-VALUES
png("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_pValHist.png",width = 2000, height = 2000, units = "px", res=300)
hist(twas_sub_correct$TWAS.P,
     main = "Histogram of TWAS p-values",  
     xlab ="P-values", 
     ylab = "Frequency")
dev.off()

Show plots

MDD TWAS QQ-plot

MDD TWAS QQ-plot

As shown below in the QQ-plot, our p-values were smaller than expected, indicating the presence of multiple significant associations. Inflation is present, but this expected due to the polygenicity of Major Depression and the the correlation between predicted expression of genes.


MDD TWAS P-value histogram

MDD TWAS P-value histogram

As shown in the histogram of p-values, our p-values followed a normal distribution as evidenced in the bottom of the graph where a similar amount of p-values is present. Additionally, a peak in correspondence to very small p-values is present at the top of the graph, indicating the presence of signal for our alternative hypothesis.

Create heatmaps for shared and unique associations

# Given the high number of hits we identified (N=177), from 91 unique genes, a single heatmap representing all of such genes cannot be created. Therefore, we depicted our results in two heatmaps: 1) heatmap of genes differentially expressed across multiple SNP-weight sets & 2) heatmap of genes differentially across a single SNP-weight

rm(list=ls())
library(data.table)
library(ggplot2)
library(cowplot)

#load data
twas <- fread("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_CLEAN.txt")
head(twas)

# Extract only certain columns
twas_sub <- twas[,c('ID','PANEL_clean_short','CHR','P0','P1','TWAS.Z', 'TWAS.P')]
str(twas_sub)
str(twas)

#filter for sign. gene IDs only 
sign_feat<-twas_sub[twas_sub$TWAS.P < 1.368572e-06,'ID']  #to get a vector with the gene IDs of the significant features
str(sign_feat)  #find 176 features as supposed to - genes are repeated though --> you need single gene IDs

sign_genes<-unique(sign_feat)  #to identify unique gene IDs
str(sign_genes)  #94 gene IDs as expected

twas_sub[order(twas_sub$ID), ]
sign_genes[order(sign_genes$ID), ]

twas_sub <- twas_sub[(twas_sub$ID %in% sign_genes$ID), ]
str(twas_sub)  #611 observations where each observation corresponds to an ID in the sign-feat vector

#prepare a vector of gene IDs which are duplicated
duplicates_df<-sign_feat[duplicated(sign_feat)] 
duplicates <- duplicates_df$ID

# The following code is necessary to depict results from the CMC DLPFC splicing panel 
# Since in RNA-seq splicing multiple transcripts of the same gene are generally tested and we can depict just one in the heatmap, we need to pick the most significant one. This is done below. 

### 
# RETAIN THE MOST SIGN. FEATURE FROM THE CMC BRAIN SPLICING RESULTS
###

twas_sub <- twas_sub[order(twas_sub$TWAS.P), ] #we order by p-value to make sure that the most significant 
#CMC DLPFC feature for a given gene is kept and that its duplicates (which are less sign.) are excluded
head(twas_sub)
tail(twas_sub)

library(dplyr)
twas_sub  <- twas_sub %>% distinct(ID, PANEL_clean_short, .keep_all = T)  #to get rid of rows which contain duplicates based on the ID and PANEL cols 
#in our case, this is just for duplicates in the cmc brain splicing weights with the same gene id

twas_sub_temp <- twas_sub[order(twas_sub$ID), ] #to check that it worked 
#there should be just one of the same gene id from brain seq splicing weights
#this is the case, with the mmost sign. one being kept. 
#NB 43 gene IDs from the same snp weight were gotten rid of in this df for a total of 568 features instead of 611 

####
# Heatmap of genes differentially expressed across multiple SNP-weight sets
####
###
# make a list of features significant in multiple tissues
###

#order files  
twas_sub2<-twas_sub[order(twas_sub$ID),] 
duplicates<-sort(duplicates, decreasing = FALSE)   

#filter the twas_sub datatable by the duplicates vector to obtain a dt with features expressed across diff. tissues only (i.e. no unique features)
twas_sub2<-twas_sub[(twas_sub$ID %in% duplicates), ] #283 obs.
str(twas_sub2)

# Sort the data.frame by CHR and P0 
twas_sub2<-twas_sub2[order(twas_sub2$CHR,twas_sub2$P0),]

# Make ID a factor for plotting where unique gene IDs are the levels/categories of such factor 
twas_sub2$ID<-factor(twas_sub2$ID, levels=unique(twas_sub2$ID))
str(twas_sub2) #there are 36 levels (i.e. 36 unique genes differentially expressed across multiple weights)

#create a vector with all TWAS.Z values
TWAS.Z <- twas_sub2$TWAS.Z

twas_sub2_unique<-twas_sub2[!duplicated(twas_sub2$ID),]
vline_1<-min(which(twas_sub2_unique$CHR == 6 & twas_sub2_unique$P0 > 26e6 & twas_sub2_unique$P1 < 34e6))
vline_2<-max(which(twas_sub2_unique$CHR == 6 & twas_sub2_unique$P0 > 26e6 & twas_sub2_unique$P1 < 34e6))

#create the heatmap
png("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS.TWAS_Z_heatmap.shared.png",width = 3500, height = 1750, units = "px", res=300)

ggplot(data = twas_sub2, aes(x = ID, y = PANEL_clean_short)) +
  #genes as x axis, panel as y axis  
  theme_bw()    +    #saying that there will be grid lines
  geom_tile(aes(fill = TWAS.Z), colour = 'black') +
  scale_fill_gradientn(colours=c("dodgerblue2","white","red"), na.value = 'white',name = "Z-score") +
  theme(axis.text.x = element_text(angle = 45, hjust = 1),plot.title = element_text(hjust = 0.5)) +
  geom_text(aes(label=round(TWAS.Z,1)), color="black", size=3) +
  labs(title="Genes differentially expressed across multiple SNP-weight sets",  x ="Gene ID", y = "SNP-weight sets") +
  geom_vline(xintercept = vline_1-0.5, size=1) +
  geom_vline(xintercept = vline_2+0.5, size=1)

#title and labels shown for the x and y axes
dev.off()

# Note significant features presented a z-score > 4.83 or < -4.83.  

#### 
# Heatmap of genes differentially expressed in one SNP-weight 
####

#create a dt with the duplicates removed (!), so that we obtain only unique features
twas_unique<-twas_sub[(!twas_sub$ID %in% duplicates), ]  
str(twas_unique)   #we get 285 features from differentially expressed genes uniquely differentially expressed in one tissue

# Sort the data.frame by CHR and P0
twas_unique<-twas_unique[order(twas_unique$CHR,twas_unique$P0),]  #it's important to order by both
#if you order by pos only, the chr11 stuff will come first!

# Make ID a factor for plotting where unique gene IDs are the levels/categories of such factor 
twas_unique$ID<-factor(twas_unique$ID, levels=unique(twas_unique$ID))
str(twas_unique)

#create a vector with all TWAS.Z values
TWAS.Z <- twas_unique$TWAS.Z

twas_unique_unique<-twas_unique[!duplicated(twas_unique$ID),]
vline_1<-min(which(twas_unique_unique$CHR == 6 & twas_unique_unique$P0 > 26e6 & twas_unique_unique$P1 < 34e6))
vline_2<-max(which(twas_unique_unique$CHR == 6 & twas_unique_unique$P0 > 26e6 & twas_unique_unique$P1 < 34e6))

#create the heatmap
png("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS.TWAS_Z_heatmap.unique.png",width = 4650, height = 1750, units = "px", res=300)

ggplot(data = twas_unique, aes(x = ID, y = PANEL_clean_short)) +
  theme_bw()    +    
  geom_tile(aes(fill = TWAS.Z), colour = 'black') +
  scale_fill_gradientn(colours=c("dodgerblue2","white","red"), na.value = 'white',name = "Z-score") +
  theme(axis.text.x = element_text(angle = 45, hjust = 1),plot.title = element_text(hjust = 0.5)) +
  geom_text(aes(label=round(TWAS.Z,1)), color="black", size=3) +
  labs(title="Genes differentially expressed in single SNP-weight sets",  x ="Gene ID", y = "SNP-weight sets") +
  geom_vline(xintercept = vline_1-0.5, size=1) +
  geom_vline(xintercept = vline_2+0.5, size=1)

dev.off()

# Note significant features presented a z-score > 4.83 or < -4.83.  

Create heatmaps for tissue groups

# Heatmaps for groups of tissues were made to show the overlap across SNP-weight panels. 

rm(list=ls())
library(data.table)
library(ggplot2)
library(cowplot)

###
# Load and prepare data
###

#load
twas <- fread("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_CLEAN.txt")

#subset columns needed 
twas_sub <- twas[,c('ID','PANEL', 'PANEL_clean_short', 'CHR','P0', 'P1', 'TWAS.Z', 'TWAS.P')]
str(twas_sub)

#turn CHR and P0 into numerical variables 
twas_sub$CHR <- as.numeric(as.character(twas_sub$CHR))
twas_sub$P0 <- as.numeric(as.character(twas_sub$P0))
str(twas_sub)

###
# Keep only the most sign. feature from the CMC brain splicing results
###
twas_sub2 <- twas_sub[order(twas_sub$TWAS.P), ]
head(twas_sub2)
tail(twas_sub2)

library(dplyr)
twas_sub  <- twas_sub2 %>% distinct(ID, PANEL, .keep_all = T)


###
# Create df for groups of tissues
###

#order by CHR and P0 first
twas2 <- twas_sub[order(twas_sub$CHR,twas_sub$P0),]
twas_sub <- twas2


#create df
twas_brain.df <- twas_sub[twas_sub$PANEL %in% c("Brain_Amygdala", "Brain_Anterior_cingulate_cortex_BA24", "Brain_Caudate_basal_ganglia", "Brain_Cerebellar_Hemisphere", "Brain_Cerebellum", "Brain_Cortex", "Brain_Frontal_Cortex_BA9", "Brain_Hippocampus", "Brain_Hypothalamus", "Brain_Nucleus_accumbens_basal_ganglia", "Brain_Putamen_basal_ganglia", "Brain_Substantia_nigra", "CMC.BRAIN.RNASEQ", "CMC.BRAIN.RNASEQ_SPLICING","PsychENCODE"), ]
twas_blood.df <- twas_sub[twas_sub$PANEL %in% c("Whole_Blood", "NTR.BLOOD.RNAARR", "YFS.BLOOD.RNAARR"), ]
twas_HPA.df <- twas_sub[twas_sub$PANEL %in% c("Brain_Hypothalamus", "Pituitary", "Adrenal_Gland"), ]
twas_HPT.df <- twas_sub[twas_sub$PANEL %in% c("Brain_Hypothalamus", "Pituitary","Thyroid"), ]

###
#filter for gene IDs significant in a given group of tissues only 
###

#get sign. gene ID per group of tissues
sign_feat_brain<-twas_brain.df[twas_brain.df$TWAS.P < 1.368572e-06,]$ID  #to get a vector with the gene IDs of the significant features
#101 features are sign. within brain snp weight sets
str(sign_feat_brain)
sign_feat_brain <- unique(sign_feat_brain)  #111 unique genes differentially expressed in brain snp weights


sign_feat_blood<-twas_blood.df[twas_blood.df$TWAS.P < 1.368572e-06,]$ID 
str(sign_feat_blood) #26
sign_feat_blood <- unique(sign_feat_blood)#23


sign_feat_HPA<-twas_HPA.df[twas_HPA.df$TWAS.P < 1.368572e-06,]$ID  #to get a vector with the gene IDs of the significant features
str(sign_feat_HPA) #28
sign_feat_HPA <- unique(sign_feat_HPA)  #22


sign_feat_HPT<-twas_HPT.df[twas_HPT.df$TWAS.P < 1.368572e-06,]$ID  #to get a vector with the gene IDs of the significant features
str(sign_feat_HPT) #41
sign_feat_HPT <- unique(sign_feat_HPT)  #34

#filter
twas_brain.df <- twas_brain.df[(twas_brain.df$ID %in% sign_feat_brain), ]
#320 obs.
twas_blood.df <- twas_blood.df[(twas_blood.df$ID %in% sign_feat_blood), ] #32
twas_HPA.df <- twas_HPA.df[(twas_HPA.df$ID %in% sign_feat_HPA), ] #32
twas_HPT.df <- twas_HPT.df[(twas_HPT.df$ID %in% sign_feat_HPT), ] #51 features with the gene ID within the vector sign feat...

#create vectors with the z scores of the features within specific tissues
TWAS.Z.brain <- twas_brain.df$TWAS.Z
TWAS.Z.blood <- twas_blood.df$TWAS.Z
TWAS.Z.HPA <- twas_HPA.df$TWAS.Z
TWAS.Z.HPT <- twas_HPT.df$TWAS.Z

# Make ID a factor for plotting
twas_brain.df$ID<-factor(twas_brain.df$ID, levels = unique(twas_brain.df$ID))
twas_blood.df$ID<-factor(twas_blood.df$ID, levels = unique(twas_blood.df$ID))
twas_HPA.df$ID<-factor(twas_HPA.df$ID, levels = unique(twas_HPA.df$ID))
twas_HPT.df$ID<-factor(twas_HPT.df$ID, levels = unique(twas_HPT.df$ID))

#####
# Heatmap for brain SNP-weight sets
#####

twas_brain.df_unique<-twas_brain.df[!duplicated(twas_brain.df$ID),]
vline_1<-min(which(twas_brain.df_unique$CHR == 6 & twas_brain.df_unique$P0 > 26e6 & twas_brain.df_unique$P1 < 34e6))
vline_2<-max(which(twas_brain.df_unique$CHR == 6 & twas_brain.df_unique$P0 > 26e6 & twas_brain.df_unique$P1 < 34e6))

#Plot brain SNP weights
png("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS.TWAS_Z_heatmap_brain.png",width = 5100, height = 1400, units = "px", res=300)

ggplot(data = twas_brain.df, aes(x = ID, y = PANEL_clean_short)) +
  theme_bw()    +   
  geom_tile(aes(fill = TWAS.Z.brain), colour = 'black') +
  scale_fill_gradientn(colours=c("dodgerblue2","white","red"), na.value = 'white',name = "Z-score") +
  theme(axis.text.x = element_text(angle = 45, hjust = 1),plot.title = element_text(hjust = 0.5)) +
  geom_text(aes(label=round(TWAS.Z.brain,1)), color="black", size=3) +
  labs(title="Genes differentially expressed in brain SNP-weight sets",  x ="Gene ID", y = "SNP-weight sets") +
  geom_vline(xintercept = vline_1-0.5, size=1) +
  geom_vline(xintercept = vline_2+0.5, size=1)

dev.off()

# Note significant features presented a z-score > 4.83 or < -4.83.  

#####
# Plot for blood SNP-weight sets
#####

twas_blood.df_unique<-twas_blood.df[!duplicated(twas_blood.df$ID),]
vline_1<-min(which(twas_blood.df_unique$CHR == 6 & twas_blood.df_unique$P0 > 26e6 & twas_blood.df_unique$P1 < 34e6))
vline_2<-max(which(twas_blood.df_unique$CHR == 6 & twas_blood.df_unique$P0 > 26e6 & twas_blood.df_unique$P1 < 34e6))

#Plot blood findings
png("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS.TWAS_Z_heatmap_blood.png",width = 2400, height = 800, units = "px", res=300)

ggplot(data = twas_blood.df, aes(x = ID, y = PANEL_clean_short)) +
  theme_bw()    +   
  geom_tile(aes(fill = TWAS.Z.blood), colour = 'black') +
  scale_fill_gradientn(colours=c("dodgerblue2","white","red"), na.value = 'white',name = "Z-score") +
  theme(axis.text.x = element_text(angle = 45, hjust = 1),plot.title = element_text(hjust = 0.5)) +
  geom_text(aes(label=round(TWAS.Z.blood,1)), color="black", size=3) +
  labs(title="Genes differentially expressed in blood SNP-weight sets",  x ="Gene ID", y = "SNP-weight sets") +
  geom_vline(xintercept = vline_1-0.5, size=1) +
  geom_vline(xintercept = vline_2+0.5, size=1)
dev.off()

# Note significant features presented a z-score > 4.83 or < -4.83.  

#####
# Plot for HPA axis SNP-weight sets
#####

twas_HPA.df_unique<-twas_HPA.df[!duplicated(twas_HPA.df$ID),]
vline_1<-min(which(twas_HPA.df_unique$CHR == 6 & twas_HPA.df_unique$P0 > 26e6 & twas_HPA.df_unique$P1 < 34e6))
vline_2<-max(which(twas_HPA.df_unique$CHR == 6 & twas_HPA.df_unique$P0 > 26e6 & twas_HPA.df_unique$P1 < 34e6))

#Plot HPA axis findings
png("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS.TWAS_Z_heatmap_HPA.png",width = 2400, height = 800, units = "px", res=300)

ggplot(data = twas_HPA.df, aes(x = ID, y = PANEL_clean_short)) +
  theme_bw()    +   
  geom_tile(aes(fill = TWAS.Z.HPA), colour = 'black') +
  scale_fill_gradientn(colours=c("dodgerblue2","white","red"), na.value = 'white',name = "Z-score") +
  theme(axis.text.x = element_text(angle = 45, hjust = 1),plot.title = element_text(hjust = 0.5)) +
  geom_text(aes(label=round(TWAS.Z.HPA,1)), color="black", size=3) +
  labs(title="Genes differentially expressed in HPA axis SNP-weight sets",  x ="Gene ID", y = "SNP-weight sets") +
  geom_vline(xintercept = vline_1-0.5, size=1) +
  geom_vline(xintercept = vline_2+0.5, size=1)
dev.off()

# Note significant features presented a z-score > 4.83 or < -4.83.  

#####
# Plot for HPT axis SNP-weight sets
#####

twas_HPT.df_unique<-twas_HPT.df[!duplicated(twas_HPT.df$ID),]
vline_1<-min(which(twas_HPT.df_unique$CHR == 6 & twas_HPT.df_unique$P0 > 26e6 & twas_HPT.df_unique$P1 < 34e6))
vline_2<-max(which(twas_HPT.df_unique$CHR == 6 & twas_HPT.df_unique$P0 > 26e6 & twas_HPT.df_unique$P1 < 34e6))

#Plot HPT axis findings
png("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS.TWAS_Z_heatmap_HPT.png",width = 3000, height = 800, units = "px", res=300)
ggplot(data = twas_HPT.df, aes(x = ID, y = PANEL_clean_short)) +
  theme_bw()    +   
  geom_tile(aes(fill = TWAS.Z.HPT), colour = 'black') +
  scale_fill_gradientn(colours=c("dodgerblue2","white","red"), na.value = 'white',name = "Z-score") +
  theme(axis.text.x = element_text(angle = 45, hjust = 1),plot.title = element_text(hjust = 0.5)) +
  geom_text(aes(label=round(TWAS.Z.HPT,1)), color="black", size=3) +
  labs(title="Genes differentially expressed in HPT axis SNP-weight sets",  x ="Gene ID", y = "SNP-weight sets") +
  geom_vline(xintercept = vline_1-0.5, size=1) +
  geom_vline(xintercept = vline_2+0.5, size=1)
dev.off()

# Note significant features presented a z-score > 4.83 or < -4.83.  

Show plots

MDD TWAS Heatmap Shared

MDD TWAS Heatmap Shared


MDD TWAS Heatmap Unique

MDD TWAS Heatmap Unique


MDD TWAS Heatmap Brain ***

MDD TWAS Heatmap Blood

MDD TWAS Heatmap Blood


MDD TWAS Heatmap HPA

MDD TWAS Heatmap HPA


MDD TWAS Heatmap HPT

MDD TWAS Heatmap HPT



3.5 Process colocalisation results

Colocalisation identified whether TWAS and GWAS associations result from the same or distinct causal SNP.

Organise coloc results

###
# Create a table with colocalisation results for all significant features
###
rm(list=ls())
library(data.table)
twas_sign <- fread("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_TWSig_CLEAN.txt")

library(tibble)
twas_sign <- as_data_frame(twas_sign)
colnames(twas_sign)

twas_sign$Location<-paste0('chr',twas_sign$CHR,':',twas_sign$P0,'-',twas_sign$P1)   

#transform variables into numeric and then order by them
str(twas_sign)
as.numeric(as.character(twas_sign$CHR))
as.numeric(as.character(twas_sign$P0))
twas_sign_ordered <- twas_sign[order(twas_sign$CHR, twas_sign$P0), ]

col_order <- c("Location", "ID", "PANEL_clean_short", "TWAS.Z", "TWAS.P", "COLOC.PP0", "COLOC.PP1", "COLOC.PP2", "COLOC.PP3", "COLOC.PP4")
twas_sign_ordered <- twas_sign_ordered[, col_order]
twas_sign_ordered

###
#Create a couple of additional columns specifying whether the feature is colocalised or not
###

#to specify coloc pp4 > 0.8 (see gusev et al (2019) Nat Genet on epithelial ovarian cancer)
twas_sign_ordered$High_PP4_0.8 <- NULL
twas_sign_ordered$High_PP4_0.8 <- ifelse(twas_sign_ordered$COLOC.PP4 > 0.8, "Yes", "No")
sum(twas_sign_ordered$High_PP4_0.8 == "Yes")  #97 features present a PP4 greater than 0.8

#to specify coloc pp3 < 0.2 
twas_sign_ordered$Low_PP3_0.2 <- NULL
twas_sign_ordered$Low_PP3_0.2 <- ifelse(twas_sign_ordered$COLOC.PP3 < 0.2, "Yes", "No")
sum(twas_sign_ordered$Low_PP3_0.2 == "Yes") #140 features present a PP3 smaller than 0.2

#specify whether both conditions are satisfied (NB PP4 > 0.8 is much more of a stringent threshold)
twas_sign_ordered$Colocalised <- NULL
twas_sign_ordered$Colocalised <- ifelse(twas_sign_ordered$High_PP4_0.8 == "Yes" & twas_sign_ordered$Low_PP3_0.2 == "Yes", "Yes", "No")
sum(twas_sign_ordered$Colocalised == "Yes") #97 features are colocalised

#get the number of unique genes which were colocalised
colocalised_df <- twas_sign_ordered[twas_sign_ordered$Colocalised == "Yes", ] #as expected, dim = 97, 13
colocalised_vector <- colocalised_df$ID 
unique_genes_colocalised <- unique(colocalised_vector) #57 unique genes which were colocalised


###
# Clean and Save 
###
col_order2 <- c("Location", "ID", "PANEL_clean_short", "TWAS.Z", "TWAS.P", "COLOC.PP0", "COLOC.PP1", "COLOC.PP2", "COLOC.PP3", "COLOC.PP4", "Low_PP3_0.2", "High_PP4_0.8", "Colocalised")
twas_sign_ordered <- twas_sign_ordered[, col_order2]
twas_sign_ordered

write.csv(twas_sign_ordered, "/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_colocalisation.csv", row.names = F)

q()
n

Show colocalisation table

MDD TWAS Colocalisation Results
Location ID PANEL_clean_short TWAS.Z TWAS.P COLOC.PP0 COLOC.PP1 COLOC.PP2 COLOC.PP3 COLOC.PP4 Low_PP3_0.2 High_PP4_0.8 Colocalised
chr1:8412457-8877702 RERE GTEx Whole Blood -5.095707 3.47e-07 0.000 0.001 0.000 0.006 0.993 Yes Yes Yes
chr1:8412457-8877702 RERE YFS Blood -5.310078 1.10e-07 0.000 0.001 0.000 0.006 0.993 Yes Yes Yes
chr1:8484705-8494898 RP5-1115A15.1 GTEx Thyroid -5.175240 2.28e-07 0.000 0.001 0.000 0.004 0.995 Yes Yes Yes
chr1:8484705-8494898 RP5-1115A15.1 GTEx Whole Blood -4.866386 1.14e-06 0.012 0.001 0.088 0.008 0.891 Yes Yes Yes
chr1:36884051-36884179 SNORA63 GTEx Nucleus accumbens 4.848870 1.24e-06 0.067 0.006 0.257 0.023 0.647 Yes No No
chr1:71861623-72748417 NEGR1 GTEx Caudate 5.780100 7.47e-09 0.000 0.000 0.284 0.036 0.681 Yes No No
chr1:71861623-72748417 NEGR1 GTEx Putamen 5.548510 2.88e-08 0.000 0.000 0.018 0.014 0.968 Yes Yes Yes
chr1:71861623-72748417 NEGR1 GTEx Whole Blood 8.760622 1.94e-18 0.000 0.000 0.000 0.007 0.993 Yes Yes Yes
chr1:72767155-72767512 RPL31P12 GTEx Cerebellar Hemispher… -7.785520 6.94e-15 0.000 0.000 0.000 0.010 0.990 Yes Yes Yes
chr1:72767155-72767512 RPL31P12 GTEx Cerebellum -7.708820 1.27e-14 0.000 0.000 0.000 0.006 0.994 Yes Yes Yes
chr1:72767155-72767512 RPL31P12 PsychENCODE -7.742756 9.73e-15 0.000 0.000 0.000 0.007 0.993 Yes Yes Yes
chr1:175873898-175889649 RP11-318C24.2 GTEx Thyroid -5.027510 4.97e-07 0.004 0.007 0.012 0.018 0.959 Yes Yes Yes
chr1:175913966-176176370 RFWD2 CMC DLPFC Splicing -4.958690 7.10e-07 0.000 0.008 0.000 0.021 0.971 Yes Yes Yes
chr1:175913966-176176370 RFWD2 CMC DLPFC Splicing 5.039850 4.66e-07 0.000 0.007 0.000 0.020 0.973 Yes Yes Yes
chr1:175913966-176176370 RFWD2 CMC DLPFC Splicing -5.005960 5.56e-07 0.000 0.007 0.000 0.019 0.973 Yes Yes Yes
chr1:181452685-181775921 CACNA1E CMC DLPFC Splicing -4.989390 6.06e-07 0.000 0.151 0.000 0.420 0.429 No No No
chr1:197473878-197744623 DENND1B CMC DLPFC 4.848374 1.24e-06 0.000 0.001 0.000 0.011 0.988 Yes Yes Yes
chr1:197473878-197744623 DENND1B CMC DLPFC Splicing -5.421950 5.90e-08 0.000 0.001 0.000 0.010 0.989 Yes Yes Yes
chr1:197473878-197744623 DENND1B CMC DLPFC Splicing 5.018050 5.22e-07 0.000 0.001 0.000 0.010 0.989 Yes Yes Yes
chr2:58386377-58468515 FANCL CMC DLPFC -5.183180 2.18e-07 0.001 0.000 0.056 0.027 0.916 Yes Yes Yes
chr2:58386377-58468515 FANCL CMC DLPFC Splicing 4.897476 9.71e-07 0.000 0.001 0.007 0.104 0.888 Yes Yes Yes
chr2:197831741-198175897 ANKRD44 YFS Blood -5.690140 1.27e-08 0.062 0.023 0.168 0.061 0.686 Yes No No
chr2:198254508-198299815 SF3B1 GTEx Hypothalamus 5.214900 1.84e-07 0.071 0.015 0.319 0.068 0.526 Yes No No
chr3:44481261-44561226 ZNF445 CMC DLPFC -5.103280 3.34e-07 0.000 0.087 0.002 0.601 0.310 No No No
chr4:41937137-41962589 TMEM33 PsychENCODE 4.837418 1.32e-06 0.000 0.001 0.000 0.074 0.925 Yes Yes Yes
chr4:41983713-41988476 DCAF4L1 GTEx Thyroid -5.128000 2.93e-07 0.003 0.001 0.291 0.091 0.615 Yes No No
chr4:41990758-41991254 RP11-814H16.2 GTEx Cerebellar Hemispher… 5.009600 5.45e-07 0.005 0.000 0.561 0.055 0.378 Yes No No
chr4:41992489-42092474 SLC30A9 GTEx Amygdala -5.253400 1.49e-07 0.004 0.001 0.476 0.070 0.450 Yes No No
chr4:41992489-42092474 SLC30A9 GTEx ACC -5.001690 5.68e-07 0.003 0.001 0.399 0.101 0.496 Yes No No
chr4:41992489-42092474 SLC30A9 GTEx Caudate -4.854800 1.21e-06 0.003 0.001 0.388 0.086 0.521 Yes No No
chr4:41992489-42092474 SLC30A9 GTEx Cortex -5.774530 7.72e-09 0.003 0.001 0.340 0.113 0.543 Yes No No
chr4:41992489-42092474 SLC30A9 GTEx Hypothalamus -5.085140 3.67e-07 0.000 0.000 0.016 0.039 0.944 Yes Yes Yes
chr4:41992489-42092474 SLC30A9 GTEx Nucleus accumbens -5.602700 2.11e-08 0.001 0.001 0.072 0.119 0.808 Yes Yes Yes
chr4:41992489-42092474 SLC30A9 PsychENCODE -5.259200 1.45e-07 0.000 0.000 0.000 0.026 0.974 Yes Yes Yes
chr5:87564712-87732502 TMEM161B-AS1 PsychENCODE 6.091010 1.12e-09 0.000 0.000 0.000 0.117 0.883 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx Adrenal Gland 5.360090 8.32e-08 0.000 0.000 0.000 0.086 0.914 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx Amygdala 6.118500 9.45e-10 0.000 0.000 0.004 0.058 0.938 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx ACC 6.445500 1.15e-10 0.000 0.000 0.000 0.056 0.944 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx Caudate 6.282167 3.34e-10 0.000 0.000 0.000 0.062 0.938 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx Cerebellar Hemispher… 6.011700 1.84e-09 0.000 0.000 0.000 0.062 0.938 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx Cerebellum 6.053050 1.42e-09 0.000 0.000 0.000 0.052 0.948 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx Cortex 6.021420 1.73e-09 0.000 0.000 0.000 0.070 0.930 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx Frontal Cortex 6.720000 1.82e-11 0.000 0.000 0.000 0.086 0.914 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx Hypothalamus 5.875800 4.21e-09 0.000 0.000 0.000 0.060 0.940 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx Nucleus accumbens 6.010490 1.85e-09 0.000 0.000 0.000 0.059 0.941 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx Putamen 6.372050 1.87e-10 0.000 0.000 0.000 0.054 0.946 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx Substantia nigra 6.057270 1.38e-09 0.000 0.000 0.009 0.054 0.937 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx Pituitary 6.048500 1.46e-09 0.000 0.000 0.000 0.050 0.950 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx Thyroid 5.889760 3.87e-09 0.000 0.000 0.000 0.079 0.920 Yes Yes Yes
chr5:87564888-87732502 TMEM161B-AS1 GTEx Whole Blood 5.526440 3.27e-08 0.000 0.000 0.000 0.048 0.952 Yes Yes Yes
chr5:87729709-87794514 CTC-498M16.4 GTEx Substantia nigra 5.403610 6.53e-08 0.000 0.000 0.391 0.037 0.572 Yes No No
chr5:87988462-87989789 CTC-467M3.3 GTEx ACC -5.813700 6.11e-09 0.000 0.000 0.631 0.053 0.317 Yes No No
chr5:87988462-87989789 CTC-467M3.3 GTEx Cerebellar Hemispher… -5.861000 4.60e-09 0.000 0.000 0.056 0.051 0.893 Yes Yes Yes
chr5:87988462-87989789 CTC-467M3.3 GTEx Cortex -6.510990 7.47e-11 0.000 0.000 0.091 0.040 0.870 Yes Yes Yes
chr5:87988462-87989789 CTC-467M3.3 GTEx Frontal Cortex -7.091600 1.33e-12 0.000 0.000 0.114 0.035 0.850 Yes Yes Yes
chr5:87988462-87989789 CTC-467M3.3 PsychENCODE -6.097890 1.07e-09 0.000 0.000 0.035 0.251 0.715 No No No
chr5:140024947-140027370 NDUFA2 CMC DLPFC 5.190020 2.10e-07 0.104 0.037 0.170 0.060 0.629 Yes No No
chr5:140201222-140203811 PCDHA5 GTEx Thyroid -5.402970 6.55e-08 0.055 0.028 0.090 0.046 0.781 Yes No No
chr5:140220907-140223351 PCDHA8 GTEx Cerebellar Hemispher… -4.980100 6.36e-07 0.001 0.032 0.001 0.051 0.915 Yes Yes Yes
chr6:26188921-26189323 HIST1H4D NTR Blood -4.987600 6.11e-07 0.000 0.000 0.309 0.059 0.632 Yes No No
chr6:26365386-26378540 BTN3A2 NTR Blood 5.326600 1.00e-07 0.000 0.000 0.000 0.562 0.438 No No No
chr6:26365387-26378546 BTN3A2 GTEx Cerebellar Hemispher… 5.188200 2.12e-07 0.000 0.000 0.000 0.505 0.495 No No No
chr6:26365387-26378546 BTN3A2 GTEx Hippocampus 4.963000 6.96e-07 0.000 0.000 0.000 0.506 0.494 No No No
chr6:26365387-26378546 BTN3A2 GTEx Pituitary 5.898930 3.66e-09 0.000 0.000 0.000 0.501 0.499 No No No
chr6:26365387-26378546 BTN3A2 GTEx Thyroid 5.481600 4.22e-08 0.000 0.000 0.000 0.507 0.492 No No No
chr6:26365387-26378546 BTN3A2 GTEx Whole Blood 5.086960 3.64e-07 0.000 0.000 0.000 0.543 0.457 No No No
chr6:26538633-26546482 HMGN4 GTEx Cerebellum 5.395400 6.84e-08 0.000 0.000 0.404 0.299 0.297 No No No
chr6:27215480-27224250 PRSS16 GTEx Cerebellar Hemispher… -4.891200 1.00e-06 0.000 0.000 0.096 0.322 0.582 No No No
chr6:27215480-27224250 PRSS16 GTEx Cerebellum -4.947900 7.50e-07 0.000 0.001 0.000 0.962 0.037 No No No
chr6:27215480-27224250 PRSS16 GTEx Frontal Cortex -5.045000 4.54e-07 0.000 0.000 0.366 0.056 0.577 Yes No No
chr6:27215480-27224250 PRSS16 GTEx Pituitary -5.916080 3.30e-09 0.000 0.000 0.044 0.035 0.921 Yes Yes Yes
chr6:27215480-27224250 PRSS16 GTEx Whole Blood -5.335920 9.51e-08 0.000 0.001 0.047 0.474 0.479 No No No
chr6:27325604-27339304 ZNF204P GTEx Adrenal Gland -5.032700 4.84e-07 0.000 0.000 0.547 0.211 0.242 No No No
chr6:27371789-27374743 RP1-153G14.4 GTEx Hippocampus 5.354000 8.60e-08 0.000 0.000 0.676 0.142 0.182 Yes No No
chr6:27418522-27440897 ZNF184 GTEx Caudate -6.325200 2.53e-10 0.000 0.000 0.231 0.114 0.655 Yes No No
chr6:27418522-27440897 ZNF184 GTEx Hypothalamus -4.952200 7.34e-07 0.000 0.000 0.174 0.185 0.641 Yes No No
chr6:27840926-27841289 HIST1H4L NTR Blood 4.870800 1.11e-06 0.000 0.000 0.001 0.162 0.838 Yes Yes Yes
chr6:28058932-28061442 ZSCAN12P1 PsychENCODE 6.268010 3.66e-10 0.000 0.000 0.056 0.626 0.318 No No No
chr6:28058932-28061442 ZSCAN12P1 GTEx Whole Blood -4.936930 7.94e-07 0.000 0.000 0.388 0.365 0.247 No No No
chr6:28083406-28084329 RP1-265C24.5 GTEx Hippocampus 5.532000 3.16e-08 0.000 0.000 0.009 0.143 0.847 Yes Yes Yes
chr6:28092338-28097860 ZSCAN16 YFS Blood -6.109000 1.00e-09 0.000 0.000 0.013 0.054 0.933 Yes Yes Yes
chr6:28192664-28201260 ZSCAN9 GTEx Cerebellum -5.307800 1.11e-07 0.000 0.000 0.238 0.147 0.615 Yes No No
chr6:28192664-28201260 ZSCAN9 GTEx Hippocampus -6.017000 1.77e-09 0.000 0.000 0.080 0.053 0.866 Yes Yes Yes
chr6:28192664-28201260 ZSCAN9 GTEx Pituitary -6.159020 7.32e-10 0.000 0.000 0.169 0.191 0.640 Yes No No
chr6:28227098-28228736 NKAPL PsychENCODE 5.002860 5.65e-07 0.000 0.000 0.627 0.332 0.041 No No No
chr6:28234788-28245974 RP5-874C20.3 GTEx Adrenal Gland 5.094600 3.49e-07 0.000 0.000 0.031 0.146 0.822 Yes Yes Yes
chr6:28234788-28245974 RP5-874C20.3 GTEx Cerebellum 5.062800 4.13e-07 0.000 0.000 0.000 0.756 0.244 No No No
chr6:28234788-28245974 RP5-874C20.3 GTEx Hippocampus 5.198000 2.01e-07 0.000 0.000 0.172 0.174 0.654 Yes No No
chr6:28234788-28245974 RP5-874C20.3 GTEx Putamen 5.739000 9.52e-09 0.000 0.000 0.018 0.051 0.931 Yes Yes Yes
chr6:28234788-28245974 RP5-874C20.3 GTEx Thyroid 5.338400 9.38e-08 0.000 0.000 0.000 0.858 0.141 No No No
chr6:28234788-28245974 RP5-874C20.3 GTEx Whole Blood 5.662330 1.49e-08 0.000 0.000 0.288 0.107 0.604 Yes No No
chr6:28249314-28270326 PGBD1 GTEx Cerebellar Hemispher… -6.313100 2.74e-10 0.000 0.000 0.032 0.017 0.950 Yes Yes Yes
chr6:28292470-28324048 ZSCAN31 GTEx Amygdala -5.084150 3.69e-07 0.000 0.000 0.381 0.404 0.214 No No No
chr6:28317691-28336947 ZKSCAN3 GTEx Amygdala 4.949900 7.43e-07 0.000 0.000 0.777 0.111 0.111 Yes No No
chr6:28317691-28336947 ZKSCAN3 GTEx Hippocampus 4.951000 7.37e-07 0.000 0.000 0.389 0.273 0.338 No No No
chr6:28317691-28336947 ZKSCAN3 GTEx Thyroid 6.093300 1.11e-09 0.000 0.000 0.000 0.086 0.914 Yes Yes Yes
chr6:28399707-28411279 ZSCAN23 GTEx Hypothalamus -5.777500 7.58e-09 0.000 0.000 0.062 0.179 0.758 Yes No No
chr6:28399707-28411279 ZSCAN23 GTEx Putamen -4.894000 9.90e-07 0.000 0.000 0.239 0.226 0.535 No No No
chr6:28399707-28411279 ZSCAN23 GTEx Pituitary -4.953290 7.30e-07 0.000 0.000 0.002 0.275 0.723 No No No
chr6:30644166-30655672 PPP1R18 GTEx Adrenal Gland 4.910200 9.10e-07 0.106 0.007 0.130 0.007 0.750 Yes No No
chr6:30695485-30710682 FLOT1 CMC DLPFC Splicing -5.299700 1.16e-07 0.000 0.001 0.000 0.000 0.999 Yes Yes Yes
chr6:30695485-30710682 FLOT1 CMC DLPFC Splicing -5.067100 4.04e-07 0.000 0.001 0.000 0.000 0.999 Yes Yes Yes
chr6:30695485-30710682 FLOT1 CMC DLPFC Splicing 4.936600 7.95e-07 0.000 0.001 0.000 0.000 0.999 Yes Yes Yes
chr6:30695486-30710510 FLOT1 GTEx Cerebellum -5.299000 1.16e-07 0.010 0.001 0.012 0.000 0.976 Yes Yes Yes
chr6:30695486-30710510 FLOT1 GTEx Pituitary -5.253270 1.49e-07 0.016 0.001 0.020 0.000 0.963 Yes Yes Yes
chr6:30695486-30710510 FLOT1 GTEx Thyroid -5.557400 2.74e-08 0.000 0.001 0.000 0.000 0.999 Yes Yes Yes
chr6:30881982-30894236 VARS2 GTEx Cortex 5.922000 3.18e-09 0.105 0.004 0.158 0.005 0.727 Yes No No
chr6:30881982-30894236 VARS2 GTEx Whole Blood 6.323130 2.56e-10 0.005 0.001 0.007 0.000 0.986 Yes Yes Yes
chr6:31255287-31256741 WASF5P GTEx Pituitary -5.156240 2.52e-07 0.000 0.046 0.000 0.091 0.862 Yes Yes Yes
chr6:31368479-31445283 HCP5 GTEx Thyroid 6.400800 1.55e-10 0.000 0.008 0.000 0.015 0.976 Yes Yes Yes
chr6:31462658-31478901 MICB GTEx Thyroid -5.557000 2.74e-08 0.000 0.047 0.000 0.094 0.859 Yes Yes Yes
chr6:31606805-31620482 BAG6 CMC DLPFC Splicing -5.580000 2.40e-08 0.008 0.408 0.006 0.319 0.259 No No No
chr6:31694815-31698357 DDAH2 GTEx Frontal Cortex 5.409500 6.32e-08 0.331 0.042 0.258 0.033 0.336 Yes No No
chr6:31694816-31698039 DDAH2 CMC DLPFC 5.344500 9.07e-08 0.000 0.051 0.000 0.039 0.909 Yes Yes Yes
chr6:99817347-99842082 COQ3 CMC DLPFC Splicing 5.146560 2.65e-07 0.324 0.015 0.598 0.029 0.034 Yes No No
chr6:105404922-105531207 LIN28B CMC DLPFC -5.232050 1.68e-07 0.000 0.001 0.000 0.008 0.990 Yes Yes Yes
chr6:105404923-105531207 LIN28B PsychENCODE -5.105689 3.30e-07 0.000 0.005 0.000 0.052 0.943 Yes Yes Yes
chr6:105584224-105617820 BVES-AS1 GTEx Amygdala -5.578300 2.43e-08 0.061 0.007 0.373 0.045 0.514 Yes No No
chr7:12250867-12282993 TMEM106B GTEx Adrenal Gland 5.505026 3.69e-08 0.000 0.001 0.003 0.009 0.987 Yes Yes Yes
chr7:12250867-12282993 TMEM106B PsychENCODE -5.790690 7.01e-09 0.000 0.001 0.000 0.054 0.945 Yes Yes Yes
chr7:12250867-12282993 TMEM106B GTEx Whole Blood 5.531000 3.18e-08 0.000 0.001 0.000 0.008 0.991 Yes Yes Yes
chr7:12250867-12276886 TMEM106B YFS Blood 5.373600 7.72e-08 0.000 0.001 0.000 0.007 0.993 Yes Yes Yes
chr7:24836158-25021253 OSBPL3 GTEx Pituitary -5.622890 1.88e-08 0.090 0.040 0.062 0.027 0.780 Yes No No
chr8:52232136-52722005 PXDNL CMC DLPFC 5.887460 3.92e-09 0.090 0.019 0.318 0.065 0.508 Yes No No
chr8:61297147-61429354 RP11-163N6.2 GTEx Thyroid -5.336530 9.47e-08 0.084 0.162 0.118 0.228 0.408 No No No
chr9:126605315-126605965 PIGFP2 PsychENCODE -5.305600 1.12e-07 0.017 0.004 0.603 0.126 0.250 Yes No No
chr11:57067112-57092426 TNKS1BP1 GTEx Adrenal Gland 4.922610 8.54e-07 0.080 0.025 0.107 0.032 0.756 Yes No No
chr11:57405497-57420263 AP000662.4 GTEx Thyroid -4.980256 6.35e-07 0.000 0.136 0.000 0.255 0.610 No No No
chr11:57424488-57429340 CLP1 GTEx Whole Blood 5.195860 2.04e-07 0.001 0.008 0.002 0.015 0.974 Yes Yes Yes
chr11:61535973-61560274 TMEM258 PsychENCODE 5.021730 5.12e-07 0.000 0.049 0.000 0.041 0.910 Yes Yes Yes
chr11:113280318-113346111 DRD2 GTEx Frontal Cortex -5.073787 3.90e-07 0.366 0.032 0.515 0.045 0.042 Yes No No
chr13:53602875-53626196 OLFM4 CMC DLPFC 5.091290 3.56e-07 0.000 0.000 0.865 0.089 0.046 Yes No No
chr14:42057064-42074059 CTD-2298J14.2 GTEx Thyroid -5.678860 1.36e-08 0.000 0.000 0.000 0.022 0.978 Yes Yes Yes
chr14:42076773-42373752 LRFN5 GTEx Cerebellar Hemispher… 5.423400 5.85e-08 0.000 0.000 0.000 0.029 0.971 Yes Yes Yes
chr14:42076773-42373752 LRFN5 GTEx Cerebellum 5.597540 2.17e-08 0.000 0.000 0.000 0.041 0.959 Yes Yes Yes
chr14:59951161-59971429 JKAMP GTEx Thyroid -5.125100 2.97e-07 0.001 0.004 0.004 0.022 0.969 Yes Yes Yes
chr14:59971779-60043549 CCDC175 GTEx Thyroid -5.478850 4.28e-08 0.000 0.004 0.000 0.018 0.979 Yes Yes Yes
chr14:60062693-60337557 RTN1 CMC DLPFC Splicing -4.874920 1.09e-06 0.001 0.006 0.007 0.033 0.953 Yes Yes Yes
chr14:60062695-60337684 RTN1 GTEx Thyroid -5.348450 8.87e-08 0.000 0.003 0.000 0.016 0.981 Yes Yes Yes
chr14:64319682-64693151 SYNE2 NTR Blood 5.609528 2.03e-08 0.000 0.000 0.000 0.016 0.984 Yes Yes Yes
chr14:64550950-64770377 ESR2 GTEx Pituitary -5.982300 2.20e-09 0.000 0.000 0.113 0.026 0.860 Yes Yes Yes
chr14:64550950-64770377 ESR2 GTEx Whole Blood -5.655371 1.56e-08 0.000 0.000 0.000 0.014 0.986 Yes Yes Yes
chr14:75120140-75179818 AREL1 PsychENCODE -5.015110 5.30e-07 0.000 0.002 0.000 0.216 0.782 No No No
chr14:75319736-75330537 PROX2 GTEx Thyroid -5.758100 8.51e-09 0.000 0.000 0.017 0.020 0.962 Yes Yes Yes
chr14:75348593-75370450 DLST CMC DLPFC 4.981400 6.31e-07 0.000 0.001 0.000 0.047 0.952 Yes Yes Yes
chr14:75348594-75370448 DLST PsychENCODE 5.089700 3.59e-07 0.000 0.000 0.000 0.023 0.977 Yes Yes Yes
chr14:75370656-75389188 RPS6KL1 CMC DLPFC Splicing -5.023810 5.07e-07 0.003 0.001 0.205 0.082 0.708 Yes No No
chr14:75370657-75390099 RPS6KL1 PsychENCODE -4.952550 7.32e-07 0.002 0.000 0.176 0.031 0.791 Yes No No
chr14:103878456-103879098 RP11-600F24.2 PsychENCODE 5.185660 2.15e-07 0.007 0.002 0.552 0.202 0.238 No No No
chr14:103985996-103989448 CKB YFS Blood 5.346000 8.99e-08 0.000 0.001 0.000 0.005 0.995 Yes Yes Yes
chr14:103995508-104003410 TRMT61A CMC DLPFC 5.051300 4.39e-07 0.001 0.004 0.004 0.030 0.961 Yes Yes Yes
chr14:103995521-104003410 TRMT61A GTEx Whole Blood 4.977593 6.44e-07 0.006 0.010 0.049 0.081 0.854 Yes Yes Yes
chr14:104019758-104028214 RP11-894P9.2 GTEx Thyroid -5.462560 4.69e-08 0.000 0.001 0.000 0.005 0.994 Yes Yes Yes
chr14:104153913-104154464 RP11-73M18.6 PsychENCODE 5.031320 4.87e-07 0.000 0.005 0.001 0.413 0.581 No No No
chr14:104160897-104161507 RP11-73M18.7 PsychENCODE 4.856130 1.20e-06 0.000 0.006 0.000 0.513 0.480 No No No
chr14:104162690-104163500 RP11-73M18.8 GTEx Amygdala 5.142000 2.72e-07 0.010 0.002 0.082 0.019 0.887 Yes Yes Yes
chr14:104177607-104179149 AL049840.1 GTEx Cerebellum 5.029540 4.92e-07 0.001 0.003 0.008 0.026 0.962 Yes Yes Yes
chr14:104177607-104179149 AL049840.1 GTEx Cortex 5.143620 2.69e-07 0.001 0.002 0.007 0.012 0.979 Yes Yes Yes
chr14:104179904-104180441 RP11-73M18.9 GTEx Cortex 4.977330 6.45e-07 0.000 0.002 0.001 0.013 0.984 Yes Yes Yes
chr14:104179904-104180586 RP11-73M18.9 PsychENCODE 4.830100 1.36e-06 0.001 0.005 0.049 0.425 0.520 No No No
chr16:72146056-72210777 PMFBP1 PsychENCODE -5.160620 2.46e-07 0.013 0.005 0.174 0.069 0.738 Yes No No
chr17:27400528-27507430 MYO18A GTEx Adrenal Gland -5.128570 2.92e-07 0.002 0.040 0.001 0.019 0.937 Yes Yes Yes
chr17:27401933-27405875 TIAF1 GTEx Adrenal Gland -5.361200 8.27e-08 0.016 0.111 0.008 0.055 0.810 Yes Yes Yes
chr17:65520597-65521538 CTD-2653B5.1 PsychENCODE 5.105730 3.30e-07 0.000 0.441 0.000 0.028 0.531 Yes No No
chr18:52385091-52562747 RAB27B PsychENCODE 5.012900 5.36e-07 0.000 0.015 0.000 0.328 0.657 No No No
chr18:52495707-52562747 RAB27B CMC DLPFC Splicing 4.843190 1.28e-06 0.000 0.016 0.000 0.038 0.945 Yes Yes Yes
chr20:47835831-47860614 DDX27 CMC DLPFC 4.836260 1.32e-06 0.003 0.067 0.001 0.029 0.900 Yes Yes Yes
chr22:41165634-41215403 SLC25A17 GTEx Nucleus accumbens 5.076990 3.83e-07 0.007 0.001 0.547 0.097 0.348 Yes No No
chr22:41165634-41215403 SLC25A17 GTEx Thyroid 4.896100 9.78e-07 0.000 0.008 0.020 0.671 0.301 No No No
chr22:41253088-41351450 XPNPEP3 GTEx Frontal Cortex 4.951000 7.38e-07 0.009 0.001 0.731 0.091 0.168 Yes No No
chr22:41258260-41363888 XPNPEP3 CMC DLPFC 5.110000 3.21e-07 0.000 0.004 0.005 0.358 0.632 No No No
chr22:41487790-41576081 EP300 GTEx Cerebellum 5.493900 3.93e-08 0.001 0.001 0.061 0.049 0.888 Yes Yes Yes
chr22:41487790-41576081 EP300 YFS Blood 5.059100 4.21e-07 0.000 0.012 0.000 0.955 0.033 No No No
chr22:41641614-41682216 RANGAP1 CMC DLPFC Splicing 5.240100 1.61e-07 0.010 0.000 0.814 0.028 0.147 Yes No No
chr22:41641615-41682255 RANGAP1 PsychENCODE -5.575273 2.47e-08 0.000 0.004 0.000 0.705 0.290 No No No
chr22:41697526-41756151 ZC3H7B GTEx Cerebellum 5.729100 1.01e-08 0.001 0.000 0.105 0.031 0.862 Yes Yes Yes


140 of the 176 significant features presented a low posterior probability of TWAS and GWAS associations resulting from distinct causal SNPs. This is a good index of colocalisation, but PP4, should also be considered due to the possibility of other models besides PP3 and PP4 to be the most probable. When considering features with high PP4 (> 0.8), 97 of the 140 features with low PP3 also presented a high probability of GWAS and TWAS associations resulting from the same causal SNP. Therefore, based on both criteria applied, we considered 97 features as colocalised.


3.6 Process conditional analysis results

Organise coloc results

# Read in the report files
library(data.table)
setwd("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/Conditional")

# Read in the clean TWAS results
twas_sign <- fread("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_TWSig_CLEAN.txt")
twas_sign$PANEL_clean<-gsub(' $','',twas_sign$PANEL_clean)

# Read in all jointly significant associations
temp = list.files(pattern=glob2rx("*chr*.report"))
report<-do.call(rbind, lapply(temp, function(x) read.table(x, header=T,stringsAsFactors=F)))
report$JOINT.ID<-NA
report$MARGIN.ID<-NA
report$JOINT.N<-NA
report$MARGIN.N<-NA
report$loc<-gsub('.*loc_','',report$FILE)
joint_res<-NULL
margin_res<-NULL

# Insert names of jointly significant genes
for(i in unique(report$CHR)){
  joint_i<-read.table(paste0('test.cond.chr',i,'.joint_included.dat'), header=T,stringsAsFactors=F)
  margin_i<-read.table(paste0('test.cond.chr',i,'.joint_dropped.dat'), header=T,stringsAsFactors=F)
  
  joint_i$path<-gsub('/[^/]+$','',joint_i$FILE)
    joint_i$path<-gsub('/[^/]+$','',joint_i$path)
    joint_i$WGT<-NA
    for(j in 1:dim(joint_i)[1]){
      joint_i$WGT[j]<-gsub(paste0(joint_i$path[j],'/'),'',joint_i$FILE[j])
  }

  if(dim(margin_i)[1] > 0){
    margin_i$path<-gsub('/[^/]+$','',margin_i$FILE)
    margin_i$path<-gsub('/[^/]+$','',margin_i$path)
    margin_i$WGT<-NA
    for(j in 1:dim(margin_i)[1]){
      margin_i$WGT[j]<-gsub(paste0(margin_i$path[j],'/'),'',margin_i$FILE[j])
    }
  }

  temp = list.files(pattern=glob2rx(paste0("*chr",i,".loc*.genes")))

  for(k in 1:length(temp)){
    loc_k<-read.table(paste0('test.cond.chr',i,'.loc_',k,'.genes'), header=T, stringsAsFactors=F)
    
    loc_k$path<-gsub('/[^/]+$','',loc_k$FILE)
    loc_k$path<-gsub('/[^/]+$','',loc_k$path)
    loc_k$WGT<-NA
    for(j in 1:dim(loc_k)[1]){
      loc_k$WGT[j]<-gsub(paste0(loc_k$path[j],'/'),'',loc_k$FILE[j])
    }

    loc_k$P0<-NULL
    loc_k$P1<-NULL
    
    loc_k<-merge(loc_k, twas_sign[,c('P0','P1','WGT','PANEL_clean')], by='WGT')
    
    loc_k_joint<-loc_k[(loc_k$WGT %in% joint_i$WGT),]
    joint_res<-rbind(joint_res,loc_k_joint)
        
    if(dim(margin_i)[1] > 0){
      loc_k_margin<-loc_k[(loc_k$WGT %in% margin_i$WGT),]
      margin_res<-rbind(margin_res,loc_k_margin)
    }
    
    g_list<-NULL
    for(g in unique(loc_k_joint$ID)){
      g_list<-c(g_list,paste0(g, " (",paste(loc_k_joint$PANEL_clean[loc_k_joint$ID == g], collapse=', '),")"))
    }
    report[report$CHR == i & report$loc == k,]$JOINT.ID<-paste(g_list,collapse=', ')

    if(dim(loc_k_margin)[1] > 0){
      g_list<-NULL
      for(g in unique(loc_k_margin$ID)){
        g_list<-c(g_list,paste0(g, " (",paste(unique(loc_k_margin$PANEL_clean[loc_k_margin$ID == g]), collapse=', '),")"))
      }
      report[report$CHR == i & report$loc == k,]$MARGIN.ID<-paste(g_list,collapse=', ')
    } else {
      report[report$CHR == i & report$loc == k,]$MARGIN.ID<-'-'
    }
    
    report[report$CHR == i & report$loc == k,]$JOINT.N<-dim(loc_k_joint)[1]
    report[report$CHR == i & report$loc == k,]$MARGIN.N<-dim(loc_k_margin)[1]
  }
}

report$LOCUS<-paste0(report$CHR,':',report$P0,':',report$P1)
report$BP<-paste0(report$P0,'-',report$P1)
report$VAR.EXP<-paste0(report$VAR.EXP*100,'%')

report<-report[,c('CHR','P0','P1','BP','LOCUS',"JOINT.N",'MARGIN.N','BEST.TWAS.P','BEST.SNP.P','VAR.EXP','JOINT.ID','MARGIN.ID')]

report<-report[order(report$CHR, report$P0),]

# Save full conditional results table
write.csv(report[,c("CHR","BP","JOINT.ID","MARGIN.ID","BEST.TWAS.P","BEST.SNP.P","VAR.EXP")],'/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/Conditional/MDD_TWAS_Conditional_table_full.csv', row.names=F, quote=T)

# Save brief conditional results table
write.csv(report[,c('CHR','BP','JOINT.ID','MARGIN.N','BEST.TWAS.P','BEST.SNP.P','VAR.EXP')],'/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/Conditional/MDD_TWAS_Conditional_table_brief.csv', row.names=F, quote=T)

# Combine gene results for marginal and joint genes
joint_res$Type<-'Joint'
margin_res$Type<-'Marginal'

gene_res<-rbind(joint_res, margin_res)

# Check number of indepenent associations
dim(joint_res) # 50

# Check number of independent associations without genome-wide significant snp
dim(joint_res[2*pnorm(-abs(joint_res$BEST.GWAS.Z)) > 5e-8,]) # 25

# Check number of independent associations with genome-wide significant snp but an r2 with predicted expression <0.1
dim(joint_res[2*pnorm(-abs(joint_res$BEST.GWAS.Z)) < 5e-8 & joint_res$TOP.SNP.COR^2 < 0.1,]) # 2

# Check number of independent novel associations
dim(joint_res[(2*pnorm(-abs(joint_res$BEST.GWAS.Z)) < 5e-8 & joint_res$TOP.SNP.COR^2 < 0.1) | 2*pnorm(-abs(joint_res$BEST.GWAS.Z)) > 5e-8,]) # 27

# Check number of novel associations
dim(gene_res[(2*pnorm(-abs(gene_res$BEST.GWAS.Z)) < 5e-8 & gene_res$TOP.SNP.COR^2 < 0.1) | 2*pnorm(-abs(gene_res$BEST.GWAS.Z)) > 5e-8,]) # 68

gene_res$Novel<-'No'
gene_res$Novel[(2*pnorm(-abs(gene_res$BEST.GWAS.Z)) < 5e-8 & gene_res$TOP.SNP.COR^2 < 0.1) | 2*pnorm(-abs(gene_res$BEST.GWAS.Z)) > 5e-8]<-'Yes'

gene_res$BP<-paste0(gene_res$P0,'-',gene_res$P1)
gene_res$BEST.GWAS.P<-2*pnorm(-abs(gene_res$BEST.GWAS.Z))

gene_res<-gene_res[order(gene_res$CHR, gene_res$P0),]

gene_res$Colocalised<-F
gene_res$Colocalised[gene_res$COLOC.PP4 >0.8]<-T

# Check number of independent novel associations which colocalise for joint genes
joint_res$Colocalised<-F
joint_res$Colocalised[joint_res$COLOC.PP4 >0.8]<-T

dim(joint_res[(2*pnorm(-abs(joint_res$BEST.GWAS.Z)) < 5e-8 & joint_res$TOP.SNP.COR^2 < 0.1 & joint_res$Colocalised == T) | (2*pnorm(-abs(joint_res$BEST.GWAS.Z)) > 5e-8 & joint_res$Colocalised == T),]) # 12

# Check number of novel associations which colocalise
dim(gene_res[(2*pnorm(-abs(gene_res$BEST.GWAS.Z)) < 5e-8 & gene_res$TOP.SNP.COR^2 < 0.1 & gene_res$Colocalised == T) | (2*pnorm(-abs(gene_res$BEST.GWAS.Z)) > 5e-8 & gene_res$Colocalised == T),]) # 45

gene_res<-gene_res[,c('CHR','BP','ID','PANEL_clean','WGT','TWAS.P','BEST.GWAS.P','TOP.SNP.COR','Type','Novel','COLOC.PP3','COLOC.PP4','Colocalised')]

# Save table showing whether gene associations are novel
write.csv(gene_res,'/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/Conditional/MDD_TWAS_Conditional_table_novelty.csv', row.names=F, quote=T)

Show full conditional analysis table

MDD TWAS Full Conditional Results
CHR BP Jointly sign. Features (SNP-weight set) Marginally sign. Features (SNP-weight set) Top TWAS p-value Top GWAS p-value Variance Explained
1 7413452-9875347 RERE (YFS Blood) RP5-1115A15.1 (GTEx Thyroid, GTEx Whole Blood), RERE (GTEx Whole Blood) 1.10e-07 3.18e-08 100%
1 35885799-37876701 SNORA63 (GTEx Nucleus accumbens) - 1.24e-06 6.27e-08 69.3%
1 71753372-73766162 NEGR1 (GTEx Whole Blood) NEGR1 (GTEx Caudate, GTEx Putamen), RPL31P12 (GTEx Cerebellar Hemisphere, GTEx Cerebellum, PsychENCODE) 1.94e-18 4.54e-15 97.8%
1 174891875-177103690 RFWD2 (CMC DLPFC Splicing) RFWD2 (CMC DLPFC Splicing), RP11-318C24.2 (GTEx Thyroid) 4.66e-07 2.30e-07 90%
1 180725304-182724241 CACNA1E (CMC DLPFC Splicing) - 6.06e-07 1.08e-07 64%
1 196478918-198741422 DENND1B (CMC DLPFC Splicing) DENND1B (CMC DLPFC Splicing, CMC DLPFC) 5.90e-08 3.11e-08 92.6%
2 57388379-59467945 FANCL (CMC DLPFC Splicing, CMC DLPFC) - 2.18e-07 4.68e-09 85%
2 196832647-199295649 ANKRD44 (YFS Blood) SF3B1 (GTEx Hypothalamus) 1.27e-08 3.52e-07 82.8%
3 43487406-45561063 ZNF445 (CMC DLPFC) EP300 (GTEx Cerebellum, YFS Blood), XPNPEP3 (GTEx Frontal Cortex, CMC DLPFC), SLC25A17 (GTEx Nucleus accumbens, GTEx Thyroid), RANGAP1 (CMC DLPFC Splicing, PsychENCODE) 3.34e-07 6.34e-08 74.7%
4 40937584-43090938 SLC30A9 (GTEx Cortex), TMEM33 (PsychENCODE) SLC30A9 (GTEx Amygdala, GTEx ACC, GTEx Caudate, GTEx Hypothalamus, GTEx Nucleus accumbens, PsychENCODE), RP11-814H16.2 (GTEx Cerebellar Hemisphere), DCAF4L1 (GTEx Thyroid) 7.72e-09 3.59e-09 92.3%
5 86565927-88989352 TMEM161B-AS1 (GTEx Caudate, PsychENCODE), CTC-467M3.3 (GTEx Frontal Cortex), CTC-498M16.4 (GTEx Substantia nigra) TMEM161B-AS1 (GTEx Adrenal Gland, GTEx Amygdala, GTEx ACC, GTEx Cerebellar Hemisphere, GTEx Cerebellum, GTEx Cortex, GTEx Frontal Cortex, GTEx Hypothalamus, GTEx Nucleus accumbens, GTEx Putamen, GTEx Substantia nigra, GTEx Pituitary, GTEx Thyroid, GTEx Whole Blood), CTC-467M3.3 (GTEx ACC, GTEx Cerebellar Hemisphere, GTEx Cortex, PsychENCODE) 1.33e-12 1.07e-10 -2250%
5 139030460-141219083 PCDHA5 (GTEx Thyroid) PCDHA8 (GTEx Cerebellar Hemisphere), NDUFA2 (CMC DLPFC) 6.55e-08 1.37e-06 87.7%
6 25193720-29216321 ZNF184 (GTEx Caudate), PRSS16 (GTEx Cerebellar Hemisphere, GTEx Pituitary), ZSCAN9 (GTEx Cerebellum), ZSCAN23 (GTEx Hypothalamus), BTN3A2 (NTR Blood), ZSCAN12P1 (PsychENCODE) RP5-874C20.3 (GTEx Adrenal Gland, GTEx Cerebellum, GTEx Hippocampus, GTEx Putamen, GTEx Thyroid, GTEx Whole Blood), ZNF204P (GTEx Adrenal Gland), ZKSCAN3 (GTEx Amygdala, GTEx Hippocampus, GTEx Thyroid), ZSCAN31 (GTEx Amygdala), PGBD1 (GTEx Cerebellar Hemisphere), BTN3A2 (GTEx Cerebellar Hemisphere, GTEx Hippocampus, GTEx Pituitary, GTEx Thyroid, GTEx Whole Blood), PRSS16 (GTEx Cerebellum, GTEx Frontal Cortex, GTEx Whole Blood), HMGN4 (GTEx Cerebellum), ZSCAN9 (GTEx Hippocampus, GTEx Pituitary), RP1-265C24.5 (GTEx Hippocampus), RP1-153G14.4 (GTEx Hippocampus), ZNF184 (GTEx Hypothalamus), ZSCAN23 (GTEx Putamen, GTEx Pituitary), HIST1H4D (NTR Blood), HIST1H4L (NTR Blood), NKAPL (PsychENCODE), ZSCAN12P1 (GTEx Whole Blood), ZSCAN16 (YFS Blood) 2.53e-10 1.34e-10 100%
6 30577966-32580366 BAG6 (CMC DLPFC Splicing), MICB (GTEx Thyroid), HCP5 (GTEx Thyroid) PPP1R18 (GTEx Adrenal Gland), FLOT1 (GTEx Cerebellum, CMC DLPFC Splicing, GTEx Pituitary, GTEx Thyroid), VARS2 (GTEx Cortex, GTEx Whole Blood), DDAH2 (GTEx Frontal Cortex, CMC DLPFC), WASF5P (GTEx Pituitary) 1.55e-10 3.95e-08 86%
6 98832858-100829135 COQ3 (CMC DLPFC Splicing) - 2.65e-07 9.09e-08 35.1%
6 104405706-106583999 BVES-AS1 (GTEx Amygdala) LIN28B (CMC DLPFC, PsychENCODE) 2.43e-08 9.50e-08 92.9%
7 11252396-13282905 TMEM106B (PsychENCODE) TMEM106B (GTEx Adrenal Gland, GTEx Whole Blood, YFS Blood) 7.01e-09 2.55e-08 100%
7 24021857-26019767 OSBPL3 (GTEx Pituitary) - 1.88e-08 6.49e-07 77.7%
8 51238261-53720740 PXDNL (CMC DLPFC) - 3.92e-09 1.34e-07 83.8%
8 60435234-62428932 RP11-163N6.2 (GTEx Thyroid) - 9.47e-08 5.25e-07 89.8%
9 125606617-127604411 PIGFP2 (PsychENCODE) - 1.12e-07 2.73e-08 63.8%
11 56092913-58422547 TNKS1BP1 (GTEx Adrenal Gland), CLP1 (GTEx Whole Blood) AP000662.4 (GTEx Thyroid) 2.04e-07 1.47e-07 95.2%
11 60540194-62557903 TMEM258 (PsychENCODE) - 5.12e-07 4.26e-07 83.9%
11 112346414-114345882 DRD2 (GTEx Frontal Cortex) - 3.90e-07 4.90e-07 0.414%
13 52652520-54625616 OLFM4 (CMC DLPFC) - 3.56e-07 6.06e-19 29.9%
14 41077086-43073683 CTD-2298J14.2 (GTEx Thyroid) LRFN5 (GTEx Cerebellar Hemisphere, GTEx Cerebellum) 1.36e-08 2.57e-09 88.1%
14 58952573-61334943 CCDC175 (GTEx Thyroid) RTN1 (CMC DLPFC Splicing, GTEx Thyroid), JKAMP (GTEx Thyroid) 4.28e-08 2.18e-07 82.3%
14 63322572-65770213 ESR2 (GTEx Pituitary) SYNE2 (NTR Blood), ESR2 (GTEx Whole Blood) 2.20e-09 7.60e-10 80%
14 74120633-76388050 PROX2 (GTEx Thyroid) RPS6KL1 (CMC DLPFC Splicing, PsychENCODE), DLST (CMC DLPFC, PsychENCODE), AREL1 (PsychENCODE) 8.51e-09 6.71e-09 93.5%
14 102878783-105180229 RP11-894P9.2 (GTEx Thyroid) RP11-73M18.8 (GTEx Amygdala), AL049840.1 (GTEx Cerebellum, GTEx Cortex), RP11-73M18.9 (GTEx Cortex, PsychENCODE), TRMT61A (CMC DLPFC, GTEx Whole Blood), RP11-600F24.2 (PsychENCODE), RP11-73M18.7 (PsychENCODE), RP11-73M18.6 (PsychENCODE), CKB (YFS Blood) 4.69e-08 3.05e-09 84.6%
16 71147494-73210261 PMFBP1 (PsychENCODE) RP11-73M18.8 (GTEx Amygdala), AL049840.1 (GTEx Cerebellum, GTEx Cortex), RP11-73M18.9 (GTEx Cortex, PsychENCODE), TRMT61A (CMC DLPFC, GTEx Whole Blood), RP11-600F24.2 (PsychENCODE), RP11-73M18.7 (PsychENCODE), RP11-73M18.6 (PsychENCODE), CKB (YFS Blood) 2.46e-07 3.35e-08 76.3%
17 26406423-28478661 TIAF1 (GTEx Adrenal Gland) MYO18A (GTEx Adrenal Gland) 8.27e-08 8.51e-09 58.5%
17 64524284-66521332 CTD-2653B5.1 (PsychENCODE) - 3.30e-07 5.39e-06 25.8%
18 51385406-53561919 RAB27B (PsychENCODE) RAB27B (CMC DLPFC Splicing) 5.36e-07 3.62e-11 14.6%
20 46838019-48853908 DDX27 (CMC DLPFC) SF3B1 (GTEx Hypothalamus) 1.32e-06 3.54e-06 91%
22 40218102-42697216 ZC3H7B (GTEx Cerebellum) EP300 (GTEx Cerebellum, YFS Blood), XPNPEP3 (GTEx Frontal Cortex, CMC DLPFC), SLC25A17 (GTEx Nucleus accumbens, GTEx Thyroid), RANGAP1 (CMC DLPFC Splicing, PsychENCODE) 1.01e-08 7.56e-09 95.5%

Show brief conditional analysis table

MDD TWAS Brief Conditional Results
CHR BP Jointly sign. Features (SNP-weight set) N Marginal Top TWAS p-value Top GWAS p-value Variance Explained
1 7413452-9875347 RERE (YFS Blood) 3 1.10e-07 3.18e-08 100%
1 35885799-37876701 SNORA63 (GTEx Nucleus accumbens) 0 1.24e-06 6.27e-08 69.3%
1 71753372-73766162 NEGR1 (GTEx Whole Blood) 5 1.94e-18 4.54e-15 97.8%
1 174891875-177103690 RFWD2 (CMC DLPFC Splicing) 3 4.66e-07 2.30e-07 90%
1 180725304-182724241 CACNA1E (CMC DLPFC Splicing) 0 6.06e-07 1.08e-07 64%
1 196478918-198741422 DENND1B (CMC DLPFC Splicing) 2 5.90e-08 3.11e-08 92.6%
2 57388379-59467945 FANCL (CMC DLPFC Splicing, CMC DLPFC) 0 2.18e-07 4.68e-09 85%
2 196832647-199295649 ANKRD44 (YFS Blood) 1 1.27e-08 3.52e-07 82.8%
3 43487406-45561063 ZNF445 (CMC DLPFC) 8 3.34e-07 6.34e-08 74.7%
4 40937584-43090938 SLC30A9 (GTEx Cortex), TMEM33 (PsychENCODE) 8 7.72e-09 3.59e-09 92.3%
5 86565927-88989352 TMEM161B-AS1 (GTEx Caudate, PsychENCODE), CTC-467M3.3 (GTEx Frontal Cortex), CTC-498M16.4 (GTEx Substantia nigra) 18 1.33e-12 1.07e-10 -2250%
5 139030460-141219083 PCDHA5 (GTEx Thyroid) 2 6.55e-08 1.37e-06 87.7%
6 25193720-29216321 ZNF184 (GTEx Caudate), PRSS16 (GTEx Cerebellar Hemisphere, GTEx Pituitary), ZSCAN9 (GTEx Cerebellum), ZSCAN23 (GTEx Hypothalamus), BTN3A2 (NTR Blood), ZSCAN12P1 (PsychENCODE) 33 2.53e-10 1.34e-10 100%
6 30577966-32580366 BAG6 (CMC DLPFC Splicing), MICB (GTEx Thyroid), HCP5 (GTEx Thyroid) 12 1.55e-10 3.95e-08 86%
6 98832858-100829135 COQ3 (CMC DLPFC Splicing) 0 2.65e-07 9.09e-08 35.1%
6 104405706-106583999 BVES-AS1 (GTEx Amygdala) 2 2.43e-08 9.50e-08 92.9%
7 11252396-13282905 TMEM106B (PsychENCODE) 3 7.01e-09 2.55e-08 100%
7 24021857-26019767 OSBPL3 (GTEx Pituitary) 0 1.88e-08 6.49e-07 77.7%
8 51238261-53720740 PXDNL (CMC DLPFC) 0 3.92e-09 1.34e-07 83.8%
8 60435234-62428932 RP11-163N6.2 (GTEx Thyroid) 0 9.47e-08 5.25e-07 89.8%
9 125606617-127604411 PIGFP2 (PsychENCODE) 0 1.12e-07 2.73e-08 63.8%
11 56092913-58422547 TNKS1BP1 (GTEx Adrenal Gland), CLP1 (GTEx Whole Blood) 1 2.04e-07 1.47e-07 95.2%
11 60540194-62557903 TMEM258 (PsychENCODE) 0 5.12e-07 4.26e-07 83.9%
11 112346414-114345882 DRD2 (GTEx Frontal Cortex) 0 3.90e-07 4.90e-07 0.414%
13 52652520-54625616 OLFM4 (CMC DLPFC) 0 3.56e-07 6.06e-19 29.9%
14 41077086-43073683 CTD-2298J14.2 (GTEx Thyroid) 2 1.36e-08 2.57e-09 88.1%
14 58952573-61334943 CCDC175 (GTEx Thyroid) 3 4.28e-08 2.18e-07 82.3%
14 63322572-65770213 ESR2 (GTEx Pituitary) 2 2.20e-09 7.60e-10 80%
14 74120633-76388050 PROX2 (GTEx Thyroid) 5 8.51e-09 6.71e-09 93.5%
14 102878783-105180229 RP11-894P9.2 (GTEx Thyroid) 11 4.69e-08 3.05e-09 84.6%
16 71147494-73210261 PMFBP1 (PsychENCODE) 11 2.46e-07 3.35e-08 76.3%
17 26406423-28478661 TIAF1 (GTEx Adrenal Gland) 1 8.27e-08 8.51e-09 58.5%
17 64524284-66521332 CTD-2653B5.1 (PsychENCODE) 0 3.30e-07 5.39e-06 25.8%
18 51385406-53561919 RAB27B (PsychENCODE) 1 5.36e-07 3.62e-11 14.6%
20 46838019-48853908 DDX27 (CMC DLPFC) 1 1.32e-06 3.54e-06 91%
22 40218102-42697216 ZC3H7B (GTEx Cerebellum) 8 1.01e-08 7.56e-09 95.5%

Show novelty table

MDD TWAS Results Novelty
CHR BP ID PANEL WGT TWAS.P BEST.GWAS.P TOP.SNP.COR TYPE NOVEL NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA NA
YFS.BLOOD.RNAARR/YFS.RERE.wgt.RDat YFS.BLOOD.RNAARR /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/YFS.BLOOD.RNAARR/YFS.BLOOD.RNAARR/YFS.RERE.wgt.RDat RERE 1 0.08894 rs301819 5.510 rs301806 0.153527 -13.99 5.18200 521 4 lasso 0.157000 0.00e+00 -5.310078 1.10e-07 0.000 0.001 0.000 0.006 0.993 TRUE -0.97 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/YFS.BLOOD.RNAARR 8412457 8877702 YFS Blood Joint No 8412457-8877702 3.588337e-08 TRUE
Whole_Blood/Whole_Blood.ENSG00000142599.13.wgt.RDat Whole_Blood /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood/Whole_Blood/Whole_Blood.ENSG00000142599.13.wgt.RDat RERE 1 0.24580 rs301819 5.510 rs301806 0.175000 -8.47 5.18200 376 4 lasso 0.173923 3.89e-17 -5.095707 3.47e-07 0.000 0.001 0.000 0.006 0.993 FALSE -0.98 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood 8412457 8877702 GTEx Whole Blood Marginal No 8412457-8877702 3.588337e-08 TRUE
Thyroid/Thyroid.ENSG00000232912.1.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000232912.1.wgt.RDat RP5-1115A15.1 1 0.11740 rs301819 5.510 rs301805 0.087900 -6.47 5.36500 306 4 lasso 0.100301 6.06e-11 -5.175240 2.28e-07 0.000 0.001 0.000 0.004 0.995 FALSE -0.94 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 8484705 8494898 GTEx Thyroid Marginal No 8484705-8494898 3.588337e-08 TRUE
Whole_Blood/Whole_Blood.ENSG00000232912.1.wgt.RDat Whole_Blood /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood/Whole_Blood/Whole_Blood.ENSG00000232912.1.wgt.RDat RP5-1115A15.1 1 0.05580 rs301819 5.510 rs301805 -0.002120 -3.68 5.36500 306 306 blup 0.006669 6.35e-02 -4.866386 1.14e-06 0.012 0.001 0.088 0.008 0.891 FALSE -0.75 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood 8484705 8494898 GTEx Whole Blood Marginal No 8484705-8494898 3.588337e-08 TRUE
Brain_Nucleus_accumbens_basal_ganglia/Brain_Nucleus_accumbens_basal_ganglia.ENSG00000201448.1.wgt.RDat Brain_Nucleus_accumbens_basal_ganglia /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Nucleus_accumbens_basal_ganglia/Brain_Nucleus_accumbens_basal_ganglia/Brain_Nucleus_accumbens_basal_ganglia.ENSG00000201448.1.wgt.RDat SNORA63 1 0.19900 rs1002656 5.380 rs7544015 -0.007660 3.62 3.19800 371 371 blup 0.006930 1.71e-01 4.848870 1.24e-06 0.067 0.006 0.257 0.023 0.647 TRUE 0.64 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Nucleus_accumbens_basal_ganglia 36884051 36884179 GTEx Nucleus accumbens Joint Yes 36884051-36884179 7.448584e-08 FALSE
Whole_Blood/Whole_Blood.ENSG00000172260.9.wgt.RDat Whole_Blood /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood/Whole_Blood/Whole_Blood.ENSG00000172260.9.wgt.RDat NEGR1 1 0.13050 rs7531118 -7.810 rs11209948 0.069200 -5.78 -7.60100 319 15 enet 0.112708 2.29e-11 8.760622 1.94e-18 0.000 0.000 0.000 0.007 0.993 TRUE -0.82 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood 71861623 72748417 GTEx Whole Blood Joint No 71861623-72748417 5.718799e-15 TRUE
Brain_Caudate_basal_ganglia/Brain_Caudate_basal_ganglia.ENSG00000172260.9.wgt.RDat Brain_Caudate_basal_ganglia /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Caudate_basal_ganglia/Brain_Caudate_basal_ganglia/Brain_Caudate_basal_ganglia.ENSG00000172260.9.wgt.RDat NEGR1 1 0.16780 rs7531118 -7.810 rs12759396 0.001590 -3.72 -6.11000 319 319 blup 0.055669 2.64e-03 5.780100 7.47e-09 0.000 0.000 0.284 0.036 0.681 FALSE -0.69 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Caudate_basal_ganglia 71861623 72748417 GTEx Caudate Marginal No 71861623-72748417 5.718799e-15 FALSE
Brain_Putamen_basal_ganglia/Brain_Putamen_basal_ganglia.ENSG00000172260.9.wgt.RDat Brain_Putamen_basal_ganglia /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Putamen_basal_ganglia/Brain_Putamen_basal_ganglia/Brain_Putamen_basal_ganglia.ENSG00000172260.9.wgt.RDat NEGR1 1 0.30300 rs7531118 -7.810 rs2012697 0.194919 -4.83 -7.51000 318 20 enet 0.251490 1.44e-08 5.548510 2.88e-08 0.000 0.000 0.018 0.014 0.968 FALSE -0.82 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Putamen_basal_ganglia 71861623 72748417 GTEx Putamen Marginal No 71861623-72748417 5.718799e-15 TRUE
Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000227207.2.wgt.RDat Brain_Cerebellar_Hemisphere /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000227207.2.wgt.RDat RPL31P12 1 0.46500 rs7531118 -7.810 rs11209948 0.524000 8.05 -7.60100 321 6 lasso 0.522525 1.56e-21 -7.785520 6.94e-15 0.000 0.000 0.000 0.010 0.990 FALSE 0.99 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere 72767155 72767512 GTEx Cerebellar Hemisphere Marginal No 72767155-72767512 5.718799e-15 TRUE
Brain_Cerebellum/Brain_Cerebellum.ENSG00000227207.2.wgt.RDat Brain_Cerebellum /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum/Brain_Cerebellum/Brain_Cerebellum.ENSG00000227207.2.wgt.RDat RPL31P12 1 0.63030 rs7531118 -7.810 rs2568958 0.567000 9.31 -7.74100 321 3 lasso 0.544830 8.24e-28 -7.708820 1.27e-14 0.000 0.000 0.000 0.006 0.994 FALSE 1.00 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum 72767155 72767512 GTEx Cerebellum Marginal No 72767155-72767512 5.718799e-15 TRUE
PEC_TWAS_weights/ENSG00000227207.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000227207.wgt.RDat RPL31P12 1 0.17714 rs1432639 -7.839 rs2568960 0.225000 17.46 -7.76900 1184 10 enet 0.227000 0.00e+00 -7.742756 9.73e-15 0.000 0.000 0.000 0.007 0.993 FALSE 0.99 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 72767155 72767512 PsychENCODE Marginal No 72767155-72767512 4.541485e-15 TRUE
Thyroid/Thyroid.ENSG00000227740.1.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000227740.1.wgt.RDat RP11-318C24.2 1 0.04890 rs10913112 -5.170 rs6680839 0.037700 -4.51 4.60700 394 3 lasso 0.041100 2.73e-05 -5.027510 4.97e-07 0.004 0.007 0.012 0.018 0.959 FALSE 0.88 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 175873898 175889649 GTEx Thyroid Marginal Yes 175873898-175889649 2.340940e-07 TRUE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr1:176085817:176104146:clu_42334.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr1:176085817:176104146:clu_42334.wgt.RDat RFWD2 1 0.13900 rs10913112 -5.170 rs10436856 0.231000 -10.23 -5.01400 366 3 lasso 0.253891 4.06e-30 5.039850 4.66e-07 0.000 0.007 0.000 0.020 0.973 TRUE -0.86 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 175913966 176176370 CMC DLPFC Splicing Joint Yes 175913966-176176370 2.340940e-07 TRUE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr1:176085817:176102983:clu_42334.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr1:176085817:176102983:clu_42334.wgt.RDat RFWD2 1 0.13430 rs10913112 -5.170 rs10753117 0.209000 9.69 -4.72600 365 4 lasso 0.210674 1.10e-24 -4.958690 7.10e-07 0.000 0.008 0.000 0.021 0.971 FALSE 0.93 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 175913966 176176370 CMC DLPFC Splicing Marginal Yes 175913966-176176370 2.340940e-07 TRUE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr1:176103036:176104146:clu_42334.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr1:176103036:176104146:clu_42334.wgt.RDat RFWD2 1 0.12220 rs10913112 -5.170 rs10436856 0.168000 9.29 -5.01400 356 4 lasso 0.214117 4.15e-25 -5.005960 5.56e-07 0.000 0.007 0.000 0.019 0.973 FALSE 0.84 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 175913966 176176370 CMC DLPFC Splicing Marginal Yes 175913966-176176370 2.340940e-07 TRUE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr1:181724533:181725092:clu_42439.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr1:181724533:181725092:clu_42439.wgt.RDat CACNA1E 1 0.11150 rs2332571 5.310 rs4652678 0.083800 -6.59 3.70200 490 4 lasso 0.086921 1.48e-10 -4.989390 6.06e-07 0.000 0.151 0.000 0.420 0.429 TRUE -0.52 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 181452685 181775921 CMC DLPFC Splicing Joint Yes 181452685-181775921 1.096252e-07 FALSE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr1:197684204:197704716:clu_42580.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr1:197684204:197704716:clu_42580.wgt.RDat DENND1B 1 0.15900 rs16841842 -5.350 rs17641524 0.180000 9.05 -5.29200 338 6 lasso 0.172047 4.55e-20 -5.421950 5.90e-08 0.000 0.001 0.000 0.010 0.989 TRUE 0.90 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 197473878 197744623 CMC DLPFC Splicing Joint Yes 197473878-197744623 8.795423e-08 TRUE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr1:197684204:197741998:clu_42580.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr1:197684204:197741998:clu_42580.wgt.RDat DENND1B 1 0.10260 rs16841842 -5.350 rs16841904 0.153000 -8.49 -5.21100 354 8 lasso 0.144111 7.46e-17 5.018050 5.22e-07 0.000 0.001 0.000 0.010 0.989 FALSE -0.89 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 197473878 197744623 CMC DLPFC Splicing Marginal Yes 197473878-197744623 8.795423e-08 TRUE
CMC.BRAIN.RNASEQ/CMC.DENND1B.wgt.RDat CMC.BRAIN.RNASEQ /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ/CMC.BRAIN.RNASEQ/CMC.DENND1B.wgt.RDat DENND1B 1 0.07270 rs16841842 -5.350 rs16841842 0.050100 -5.76 -5.34600 417 417 blup 0.055662 2.33e-07 4.848374 1.24e-06 0.000 0.001 0.000 0.011 0.988 FALSE -0.78 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ 197473878 197744623 CMC DLPFC Marginal Yes 197473878-197744623 8.795423e-08 TRUE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr2:58388773:58390001:clu_36265.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr2:58388773:58390001:clu_36265.wgt.RDat FANCL 2 0.06710 rs11682175 5.860 rs10172295 0.033604 4.78 4.38500 347 347 blup 0.040895 1.07e-05 4.897476 9.71e-07 0.000 0.001 0.007 0.104 0.888 TRUE 0.52 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 58386377 58468515 CMC DLPFC Splicing Joint No 58386377-58468515 4.628672e-09 TRUE
CMC.BRAIN.RNASEQ/CMC.FANCL.wgt.RDat CMC.BRAIN.RNASEQ /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ/CMC.BRAIN.RNASEQ/CMC.FANCL.wgt.RDat FANCL 2 0.06110 rs11682175 5.860 rs11682175 0.008634 -3.97 5.85800 387 387 blup 0.029378 1.48e-04 -5.183180 2.18e-07 0.001 0.000 0.056 0.027 0.916 TRUE -0.64 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ 58386377 58468515 CMC DLPFC Joint No 58386377-58468515 4.628672e-09 TRUE
YFS.BLOOD.RNAARR/YFS.ANKRD44.wgt.RDat YFS.BLOOD.RNAARR /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/YFS.BLOOD.RNAARR/YFS.BLOOD.RNAARR/YFS.ANKRD44.wgt.RDat ANKRD44 2 0.02219 rs10931791 4.940 rs2256931 -0.000728 -3.70 1.89600 416 416 blup 0.008445 6.29e-04 -5.690140 1.27e-08 0.062 0.023 0.168 0.061 0.686 TRUE -0.60 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/YFS.BLOOD.RNAARR 197831741 198175897 YFS Blood Joint Yes 197831741-198175897 7.812257e-07 FALSE
Brain_Hypothalamus/Brain_Hypothalamus.ENSG00000115524.11.wgt.RDat Brain_Hypothalamus /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hypothalamus/Brain_Hypothalamus/Brain_Hypothalamus.ENSG00000115524.11.wgt.RDat SF3B1 2 0.18700 rs7557203 5.030 rs700655 0.021790 3.90 4.26100 328 328 blup 0.064130 4.90e-03 5.214900 1.84e-07 0.071 0.015 0.319 0.068 0.526 FALSE 0.81 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hypothalamus 198254508 198299815 GTEx Hypothalamus Marginal Yes 198254508-198299815 4.904798e-07 FALSE
CMC.BRAIN.RNASEQ/CMC.ZNF445.wgt.RDat CMC.BRAIN.RNASEQ /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ/CMC.BRAIN.RNASEQ/CMC.ZNF445.wgt.RDat ZNF445 3 0.06220 rs11707582 5.330 rs7616113 0.035714 -5.55 3.61700 353 353 blup 0.060170 7.65e-08 -5.103280 3.34e-07 0.000 0.087 0.002 0.601 0.310 TRUE -0.66 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ 44481261 44561226 CMC DLPFC Joint Yes 44481261-44561226 9.821277e-08 FALSE
PEC_TWAS_weights/ENSG00000109133.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000109133.wgt.RDat TMEM33 4 0.09793 rs13146152 -5.590 rs9990708 0.031300 -7.50 -5.28500 1527 14 enet 0.054006 7.05e-18 4.837418 1.32e-06 0.000 0.001 0.000 0.074 0.925 TRUE -0.42 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 41937137 41962589 PsychENCODE Joint No 41937137-41962589 2.270696e-08 TRUE
Thyroid/Thyroid.ENSG00000182308.5.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000182308.5.wgt.RDat DCAF4L1 4 0.06810 rs16854051 -5.900 rs4861156 0.044500 4.39 -5.12800 423 1 lasso 0.032600 1.73e-04 -5.128000 2.93e-07 0.003 0.001 0.291 0.091 0.615 FALSE 0.64 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 41983713 41988476 GTEx Thyroid Marginal No 41983713-41988476 3.635016e-09 FALSE
Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000272862.1.wgt.RDat Brain_Cerebellar_Hemisphere /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000272862.1.wgt.RDat RP11-814H16.2 4 0.16500 rs16854051 -5.900 rs6848386 0.035484 -3.58 -4.79600 424 5 lasso 0.044330 1.08e-02 5.009600 5.45e-07 0.005 0.000 0.561 0.055 0.378 FALSE -0.74 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere 41990758 41991254 GTEx Cerebellar Hemisphere Marginal No 41990758-41991254 3.635016e-09 FALSE
Brain_Cortex/Brain_Cortex.ENSG00000014824.9.wgt.RDat Brain_Cortex /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cortex/Brain_Cortex/Brain_Cortex.ENSG00000014824.9.wgt.RDat SLC30A9 4 0.27030 rs16854051 -5.900 rs4377621 0.016520 3.94 -4.91100 424 424 blup 0.063090 1.92e-03 -5.774530 7.72e-09 0.003 0.001 0.340 0.113 0.543 TRUE 0.73 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cortex 41992489 42092474 GTEx Cortex Joint No 41992489-42092474 3.635016e-09 FALSE
Brain_Amygdala/Brain_Amygdala.ENSG00000014824.9.wgt.RDat Brain_Amygdala /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Amygdala/Brain_Amygdala/Brain_Amygdala.ENSG00000014824.9.wgt.RDat SLC30A9 4 0.28400 rs16854051 -5.900 rs1507086 -0.011800 3.52 -4.45600 424 424 blup 0.064540 1.00e-02 -5.253400 1.49e-07 0.004 0.001 0.476 0.070 0.450 FALSE 0.79 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Amygdala 41992489 42092474 GTEx Amygdala Marginal No 41992489-42092474 3.635016e-09 FALSE
Brain_Anterior_cingulate_cortex_BA24/Brain_Anterior_cingulate_cortex_BA24.ENSG00000014824.9.wgt.RDat Brain_Anterior_cingulate_cortex_BA24 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Anterior_cingulate_cortex_BA24/Brain_Anterior_cingulate_cortex_BA24/Brain_Anterior_cingulate_cortex_BA24.ENSG00000014824.9.wgt.RDat SLC30A9 4 0.15160 rs16854051 -5.900 rs4377621 0.074069 3.86 -4.91100 424 424 blup 0.053870 8.95e-03 -5.001690 5.68e-07 0.003 0.001 0.399 0.101 0.496 FALSE 0.81 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Anterior_cingulate_cortex_BA24 41992489 42092474 GTEx ACC Marginal No 41992489-42092474 3.635016e-09 FALSE
Brain_Caudate_basal_ganglia/Brain_Caudate_basal_ganglia.ENSG00000014824.9.wgt.RDat Brain_Caudate_basal_ganglia /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Caudate_basal_ganglia/Brain_Caudate_basal_ganglia/Brain_Caudate_basal_ganglia.ENSG00000014824.9.wgt.RDat SLC30A9 4 0.14720 rs16854051 -5.900 rs1507086 0.018708 3.85 -4.45600 424 3 enet 0.013800 8.61e-02 -4.854800 1.21e-06 0.003 0.001 0.388 0.086 0.521 FALSE 0.78 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Caudate_basal_ganglia 41992489 42092474 GTEx Caudate Marginal No 41992489-42092474 3.635016e-09 FALSE
Brain_Hypothalamus/Brain_Hypothalamus.ENSG00000014824.9.wgt.RDat Brain_Hypothalamus /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hypothalamus/Brain_Hypothalamus/Brain_Hypothalamus.ENSG00000014824.9.wgt.RDat SLC30A9 4 0.27600 rs16854051 -5.900 rs4861163 0.113100 4.68 -5.13000 424 424 blup 0.146040 2.89e-05 -5.085140 3.67e-07 0.000 0.000 0.016 0.039 0.944 FALSE 0.83 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hypothalamus 41992489 42092474 GTEx Hypothalamus Marginal No 41992489-42092474 3.635016e-09 TRUE
Brain_Nucleus_accumbens_basal_ganglia/Brain_Nucleus_accumbens_basal_ganglia.ENSG00000014824.9.wgt.RDat Brain_Nucleus_accumbens_basal_ganglia /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Nucleus_accumbens_basal_ganglia/Brain_Nucleus_accumbens_basal_ganglia/Brain_Nucleus_accumbens_basal_ganglia.ENSG00000014824.9.wgt.RDat SLC30A9 4 0.24800 rs16854051 -5.900 rs1983138 0.071800 4.58 -4.88700 424 424 blup 0.080020 6.80e-04 -5.602700 2.11e-08 0.001 0.001 0.072 0.119 0.808 FALSE 0.82 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Nucleus_accumbens_basal_ganglia 41992489 42092474 GTEx Nucleus accumbens Marginal No 41992489-42092474 3.635016e-09 TRUE
PEC_TWAS_weights/ENSG00000014824.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000014824.wgt.RDat SLC30A9 4 0.28664 rs13146152 -5.590 rs4861157 0.122000 12.78 -5.55500 1626 43 enet 0.233893 0.00e+00 -5.259200 1.45e-07 0.000 0.000 0.000 0.026 0.974 FALSE 0.76 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 41992489 42092474 PsychENCODE Marginal No 41992489-42092474 2.270696e-08 TRUE
PEC_TWAS_weights/ENSG00000247828.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000247828.wgt.RDat TMEM161B-AS1 5 0.30403 rs27732 6.371 rs112055376 0.293000 19.82 6.03823 1178 1178 bslmm 0.303307 0.00e+00 6.091010 1.12e-09 0.000 0.000 0.000 0.117 0.883 TRUE 0.57 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 87564712 87732502 PsychENCODE Joint No 87564712-87732502 1.877996e-10 TRUE
Brain_Caudate_basal_ganglia/Brain_Caudate_basal_ganglia.ENSG00000247828.3.wgt.RDat Brain_Caudate_basal_ganglia /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Caudate_basal_ganglia/Brain_Caudate_basal_ganglia/Brain_Caudate_basal_ganglia.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.28690 rs10044618 6.390 rs780404 0.302955 6.60 6.02700 259 11 lasso 0.269805 1.80e-11 6.282167 3.34e-10 0.000 0.000 0.000 0.062 0.938 FALSE 0.67 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Caudate_basal_ganglia 87564888 87732502 GTEx Caudate Joint No 87564888-87732502 1.658858e-10 TRUE
Adrenal_Gland/Adrenal_Gland.ENSG00000247828.3.wgt.RDat Adrenal_Gland /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland/Adrenal_Gland/Adrenal_Gland.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.31160 rs10044618 6.390 rs415302 0.269660 7.18 5.49800 274 11 lasso 0.286037 1.76e-14 5.360090 8.32e-08 0.000 0.000 0.000 0.086 0.914 FALSE 0.52 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland 87564888 87732502 GTEx Adrenal Gland Marginal No 87564888-87732502 1.658858e-10 TRUE
Brain_Amygdala/Brain_Amygdala.ENSG00000247828.3.wgt.RDat Brain_Amygdala /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Amygdala/Brain_Amygdala/Brain_Amygdala.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.38600 rs10044618 6.390 rs780404 0.287340 5.49 6.02700 256 10 lasso 0.278270 9.13e-08 6.118500 9.45e-10 0.000 0.000 0.004 0.058 0.938 FALSE 0.58 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Amygdala 87564888 87732502 GTEx Amygdala Marginal No 87564888-87732502 1.658858e-10 TRUE
Brain_Anterior_cingulate_cortex_BA24/Brain_Anterior_cingulate_cortex_BA24.ENSG00000247828.3.wgt.RDat Brain_Anterior_cingulate_cortex_BA24 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Anterior_cingulate_cortex_BA24/Brain_Anterior_cingulate_cortex_BA24/Brain_Anterior_cingulate_cortex_BA24.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.37620 rs10044618 6.390 rs390856 0.306000 6.21 6.00300 256 9 lasso 0.317250 1.33e-10 6.445500 1.15e-10 0.000 0.000 0.000 0.056 0.944 FALSE 0.69 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Anterior_cingulate_cortex_BA24 87564888 87732502 GTEx ACC Marginal No 87564888-87732502 1.658858e-10 TRUE
Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000247828.3.wgt.RDat Brain_Cerebellar_Hemisphere /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.33450 rs10044618 6.390 rs780404 0.233104 6.00 6.02700 257 10 lasso 0.233430 7.93e-09 6.011700 1.84e-09 0.000 0.000 0.000 0.062 0.938 TRUE 0.61 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere 87564888 87732502 GTEx Cerebellar Hemisphere Marginal No 87564888-87732502 1.658858e-10 TRUE
Brain_Cerebellum/Brain_Cerebellum.ENSG00000247828.3.wgt.RDat Brain_Cerebellum /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum/Brain_Cerebellum/Brain_Cerebellum.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.36980 rs10044618 6.390 rs780404 0.320000 7.24 6.02700 263 4 lasso 0.323363 1.06e-14 6.053050 1.42e-09 0.000 0.000 0.000 0.052 0.948 FALSE 0.58 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum 87564888 87732502 GTEx Cerebellum Marginal No 87564888-87732502 1.658858e-10 TRUE
Brain_Cortex/Brain_Cortex.ENSG00000247828.3.wgt.RDat Brain_Cortex /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cortex/Brain_Cortex/Brain_Cortex.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.38200 rs10044618 6.390 rs11743103 0.319615 6.92 5.98300 258 11 lasso 0.337950 8.68e-14 6.021420 1.73e-09 0.000 0.000 0.000 0.070 0.930 FALSE 0.61 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cortex 87564888 87732502 GTEx Cortex Marginal No 87564888-87732502 1.658858e-10 TRUE
Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9.ENSG00000247828.3.wgt.RDat Brain_Frontal_Cortex_BA9 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.30390 rs10044618 6.390 rs780404 0.287968 6.15 6.02700 259 24 enet 0.295280 1.47e-10 6.720000 1.82e-11 0.000 0.000 0.000 0.086 0.914 FALSE 0.70 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Frontal_Cortex_BA9 87564888 87732502 GTEx Frontal Cortex Marginal No 87564888-87732502 1.658858e-10 TRUE
Brain_Hypothalamus/Brain_Hypothalamus.ENSG00000247828.3.wgt.RDat Brain_Hypothalamus /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hypothalamus/Brain_Hypothalamus/Brain_Hypothalamus.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.39800 rs10044618 6.390 rs780404 0.336574 6.07 6.02700 255 5 lasso 0.313540 2.17e-10 5.875800 4.21e-09 0.000 0.000 0.000 0.060 0.940 FALSE 0.57 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hypothalamus 87564888 87732502 GTEx Hypothalamus Marginal No 87564888-87732502 1.658858e-10 TRUE
Brain_Nucleus_accumbens_basal_ganglia/Brain_Nucleus_accumbens_basal_ganglia.ENSG00000247828.3.wgt.RDat Brain_Nucleus_accumbens_basal_ganglia /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Nucleus_accumbens_basal_ganglia/Brain_Nucleus_accumbens_basal_ganglia/Brain_Nucleus_accumbens_basal_ganglia.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.33100 rs10044618 6.390 rs780404 0.266183 6.16 6.02700 257 8 lasso 0.266900 2.21e-10 6.010490 1.85e-09 0.000 0.000 0.000 0.059 0.941 FALSE 0.61 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Nucleus_accumbens_basal_ganglia 87564888 87732502 GTEx Nucleus accumbens Marginal No 87564888-87732502 1.658858e-10 TRUE
Brain_Putamen_basal_ganglia/Brain_Putamen_basal_ganglia.ENSG00000247828.3.wgt.RDat Brain_Putamen_basal_ganglia /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Putamen_basal_ganglia/Brain_Putamen_basal_ganglia/Brain_Putamen_basal_ganglia.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.45800 rs10044618 6.390 rs780404 0.332685 6.08 6.02700 257 8 lasso 0.285111 1.14e-09 6.372050 1.87e-10 0.000 0.000 0.000 0.054 0.946 FALSE 0.65 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Putamen_basal_ganglia 87564888 87732502 GTEx Putamen Marginal No 87564888-87732502 1.658858e-10 TRUE
Brain_Substantia_nigra/Brain_Substantia_nigra.ENSG00000247828.3.wgt.RDat Brain_Substantia_nigra /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Substantia_nigra/Brain_Substantia_nigra/Brain_Substantia_nigra.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.46000 rs10044618 6.390 rs780404 0.333000 5.41 6.02700 256 6 lasso 0.323370 2.75e-08 6.057270 1.38e-09 0.000 0.000 0.009 0.054 0.937 FALSE 0.60 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Substantia_nigra 87564888 87732502 GTEx Substantia nigra Marginal No 87564888-87732502 1.658858e-10 TRUE
Pituitary/Pituitary.ENSG00000247828.3.wgt.RDat Pituitary /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary/Pituitary/Pituitary.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.42890 rs10044618 6.390 rs13172095 0.434966 8.35 6.05800 260 2 lasso 0.427610 1.30e-20 6.048500 1.46e-09 0.000 0.000 0.000 0.050 0.950 FALSE 0.58 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary 87564888 87732502 GTEx Pituitary Marginal No 87564888-87732502 1.658858e-10 TRUE
Thyroid/Thyroid.ENSG00000247828.3.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.20080 rs10044618 6.390 rs13172095 0.223000 9.66 6.05800 274 7 lasso 0.229150 2.09e-24 5.889760 3.87e-09 0.000 0.000 0.000 0.079 0.920 FALSE 0.61 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 87564888 87732502 GTEx Thyroid Marginal No 87564888-87732502 1.658858e-10 TRUE
Whole_Blood/Whole_Blood.ENSG00000247828.3.wgt.RDat Whole_Blood /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood/Whole_Blood/Whole_Blood.ENSG00000247828.3.wgt.RDat TMEM161B-AS1 5 0.12240 rs10044618 6.390 rs4916899 0.042902 5.54 6.01100 274 6 lasso 0.063570 5.72e-07 5.526440 3.27e-08 0.000 0.000 0.000 0.048 0.952 TRUE 0.53 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood 87564888 87732502 GTEx Whole Blood Marginal No 87564888-87732502 1.658858e-10 TRUE
Brain_Substantia_nigra/Brain_Substantia_nigra.ENSG00000271904.1.wgt.RDat Brain_Substantia_nigra /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Substantia_nigra/Brain_Substantia_nigra/Brain_Substantia_nigra.ENSG00000271904.1.wgt.RDat CTC-498M16.4 5 0.20700 rs10044618 6.390 rs10044618 0.005520 3.82 6.38700 255 255 blup 0.055980 2.02e-02 5.403610 6.53e-08 0.000 0.000 0.391 0.037 0.572 TRUE 0.82 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Substantia_nigra 87729709 87794514 GTEx Substantia nigra Joint No 87729709-87794514 1.658858e-10 FALSE
Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9.ENSG00000250377.1.wgt.RDat Brain_Frontal_Cortex_BA9 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9.ENSG00000250377.1.wgt.RDat CTC-467M3.3 5 0.18240 rs10044618 6.390 rs1081158 0.013998 -4.20 6.19200 267 267 blup 0.052300 7.53e-03 -7.091600 1.33e-12 0.000 0.000 0.114 0.035 0.850 TRUE -0.45 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Frontal_Cortex_BA9 87988462 87989789 GTEx Frontal Cortex Joint No 87988462-87989789 1.658858e-10 TRUE
Brain_Anterior_cingulate_cortex_BA24/Brain_Anterior_cingulate_cortex_BA24.ENSG00000250377.1.wgt.RDat Brain_Anterior_cingulate_cortex_BA24 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Anterior_cingulate_cortex_BA24/Brain_Anterior_cingulate_cortex_BA24/Brain_Anterior_cingulate_cortex_BA24.ENSG00000250377.1.wgt.RDat CTC-467M3.3 5 0.21470 rs10044618 6.390 rs2304607 0.019300 -3.67 5.78200 266 266 blup 0.113220 2.18e-04 -5.813700 6.11e-09 0.000 0.000 0.631 0.053 0.317 FALSE -0.67 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Anterior_cingulate_cortex_BA24 87988462 87989789 GTEx ACC Marginal No 87988462-87989789 1.658858e-10 FALSE
Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000250377.1.wgt.RDat Brain_Cerebellar_Hemisphere /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000250377.1.wgt.RDat CTC-467M3.3 5 0.12920 rs10044618 6.390 rs454214 0.019687 -4.57 6.22200 266 5 lasso 0.021460 5.68e-02 -5.861000 4.60e-09 0.000 0.000 0.056 0.051 0.893 FALSE -0.30 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere 87988462 87989789 GTEx Cerebellar Hemisphere Marginal Yes 87988462-87989789 1.658858e-10 TRUE
Brain_Cortex/Brain_Cortex.ENSG00000250377.1.wgt.RDat Brain_Cortex /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cortex/Brain_Cortex/Brain_Cortex.ENSG00000250377.1.wgt.RDat CTC-467M3.3 5 0.22120 rs10044618 6.390 rs34338 0.068029 -4.29 6.30000 267 21 enet 0.068860 1.23e-03 -6.510990 7.47e-11 0.000 0.000 0.091 0.040 0.870 FALSE -0.41 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cortex 87988462 87989789 GTEx Cortex Marginal No 87988462-87989789 1.658858e-10 TRUE
PEC_TWAS_weights/ENSG00000250377.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000250377.wgt.RDat CTC-467M3.3 5 0.02825 rs27732 6.371 rs7733438 0.006110 -5.04 5.77100 841 3 lasso 0.012112 3.61e-05 -6.097890 1.07e-09 0.000 0.000 0.035 0.251 0.715 FALSE -0.12 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 87988462 87989789 PsychENCODE Marginal Yes 87988462-87989789 1.877996e-10 FALSE
CMC.BRAIN.RNASEQ/CMC.NDUFA2.wgt.RDat CMC.BRAIN.RNASEQ /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ/CMC.BRAIN.RNASEQ/CMC.NDUFA2.wgt.RDat NDUFA2 5 0.01750 rs3806843 -4.830 rs12659980 0.007610 -3.56 -4.53300 343 343 bslmm 0.013400 7.81e-03 5.190020 2.10e-07 0.104 0.037 0.170 0.060 0.629 FALSE -0.86 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ 140024947 140027370 CMC DLPFC Marginal Yes 140024947-140027370 1.365331e-06 FALSE
Thyroid/Thyroid.ENSG00000204965.4.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000204965.4.wgt.RDat PCDHA5 5 0.06360 rs3806843 -4.830 rs2098058 0.004860 3.84 -4.61500 376 14 enet 0.022560 1.55e-03 -5.402970 6.55e-08 0.055 0.028 0.090 0.046 0.781 TRUE 0.66 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 140201222 140203811 GTEx Thyroid Joint Yes 140201222-140203811 1.365331e-06 FALSE
Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000204962.4.wgt.RDat Brain_Cerebellar_Hemisphere /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000204962.4.wgt.RDat PCDHA8 5 0.22650 rs3806843 -4.830 rs2563265 0.121994 5.37 -4.50500 372 372 blup 0.180230 5.33e-07 -4.980100 6.36e-07 0.001 0.032 0.001 0.051 0.915 FALSE 0.86 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere 140220907 140223351 GTEx Cerebellar Hemisphere Marginal Yes 140220907-140223351 1.365331e-06 TRUE
NTR.BLOOD.RNAARR/NTR.HIST1H4D.wgt.RDat NTR.BLOOD.RNAARR /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/NTR.BLOOD.RNAARR/NTR.BLOOD.RNAARR/NTR.HIST1H4D.wgt.RDat HIST1H4D 6 0.01730 rs3799380 -6.350 rs16891464 0.000459 -3.71 0.97800 634 634 bslmm 0.005940 3.75e-03 -4.987600 6.11e-07 0.000 0.000 0.309 0.059 0.632 FALSE 0.42 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/NTR.BLOOD.RNAARR 26188921 26189323 NTR Blood Marginal No 26188921-26189323 2.153149e-10 FALSE
NTR.BLOOD.RNAARR/NTR.BTN3A2.wgt.RDat NTR.BLOOD.RNAARR /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/NTR.BLOOD.RNAARR/NTR.BLOOD.RNAARR/NTR.BTN3A2.wgt.RDat BTN3A2 6 0.39320 rs3799380 -6.350 rs9379851 0.511828 -25.26 -5.44400 532 35 enet 0.517690 0.00e+00 5.326600 1.00e-07 0.000 0.000 0.000 0.562 0.438 FALSE -0.61 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/NTR.BLOOD.RNAARR 26365386 26378540 NTR Blood Joint No 26365386-26378540 2.153149e-10 FALSE
Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000186470.9.wgt.RDat Brain_Cerebellar_Hemisphere /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000186470.9.wgt.RDat BTN3A2 6 0.52900 rs3799380 -6.350 rs9366653 0.348070 -6.68 -5.40600 557 15 lasso 0.311590 9.83e-12 5.188200 2.12e-07 0.000 0.000 0.000 0.505 0.495 FALSE -0.61 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere 26365387 26378546 GTEx Cerebellar Hemisphere Marginal No 26365387-26378546 2.153149e-10 FALSE
Brain_Hippocampus/Brain_Hippocampus.ENSG00000186470.9.wgt.RDat Brain_Hippocampus /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hippocampus/Brain_Hippocampus/Brain_Hippocampus.ENSG00000186470.9.wgt.RDat BTN3A2 6 0.56000 rs3799380 -6.350 rs9366653 0.245340 -6.29 -5.40600 557 24 lasso 0.318160 8.38e-11 4.963000 6.96e-07 0.000 0.000 0.000 0.506 0.494 FALSE -0.62 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hippocampus 26365387 26378546 GTEx Hippocampus Marginal No 26365387-26378546 2.153149e-10 FALSE
Pituitary/Pituitary.ENSG00000186470.9.wgt.RDat Pituitary /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary/Pituitary/Pituitary.ENSG00000186470.9.wgt.RDat BTN3A2 6 0.56000 rs3799380 -6.350 rs9366653 0.421860 -8.20 -5.40600 555 21 lasso 0.427690 1.28e-20 5.898930 3.66e-09 0.000 0.000 0.000 0.501 0.499 FALSE -0.64 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary 26365387 26378546 GTEx Pituitary Marginal No 26365387-26378546 2.153149e-10 FALSE
Thyroid/Thyroid.ENSG00000186470.9.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000186470.9.wgt.RDat BTN3A2 6 0.73560 rs3799380 -6.350 rs9366653 0.563545 -15.23 -5.40600 557 40 enet 0.595520 0.00e+00 5.481600 4.22e-08 0.000 0.000 0.000 0.507 0.492 FALSE -0.61 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 26365387 26378546 GTEx Thyroid Marginal No 26365387-26378546 2.153149e-10 FALSE
Whole_Blood/Whole_Blood.ENSG00000186470.9.wgt.RDat Whole_Blood /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood/Whole_Blood/Whole_Blood.ENSG00000186470.9.wgt.RDat BTN3A2 6 0.64660 rs3799380 -6.350 rs9379851 0.500493 -14.04 -5.44400 557 35 enet 0.541880 0.00e+00 5.086960 3.64e-07 0.000 0.000 0.000 0.543 0.457 FALSE -0.61 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood 26365387 26378546 GTEx Whole Blood Marginal No 26365387-26378546 2.153149e-10 FALSE
Brain_Cerebellum/Brain_Cerebellum.ENSG00000182952.4.wgt.RDat Brain_Cerebellum /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum/Brain_Cerebellum/Brain_Cerebellum.ENSG00000182952.4.wgt.RDat HMGN4 6 0.17300 rs3799380 -6.350 rs9393729 0.020800 3.93 4.08200 486 486 blup 0.012600 8.82e-02 5.395400 6.84e-08 0.000 0.000 0.404 0.299 0.297 FALSE -0.32 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum 26538633 26546482 GTEx Cerebellum Marginal No 26538633-26546482 2.153149e-10 FALSE
Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000112812.11.wgt.RDat Brain_Cerebellar_Hemisphere /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000112812.11.wgt.RDat PRSS16 6 0.40500 rs6938943 -6.310 rs13219354 0.171270 5.12 -4.22300 339 19 enet 0.139750 1.13e-05 -4.891200 1.00e-06 0.000 0.000 0.096 0.322 0.582 FALSE 0.56 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere 27215480 27224250 GTEx Cerebellar Hemisphere Joint No 27215480-27224250 2.790355e-10 FALSE
Pituitary/Pituitary.ENSG00000112812.11.wgt.RDat Pituitary /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary/Pituitary/Pituitary.ENSG00000112812.11.wgt.RDat PRSS16 6 0.12900 rs6938943 -6.310 rs4713096 0.089290 4.21 -5.84100 340 6 lasso 0.073530 3.62e-04 -5.916080 3.30e-09 0.000 0.000 0.044 0.035 0.921 FALSE 0.30 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary 27215480 27224250 GTEx Pituitary Joint Yes 27215480-27224250 2.790355e-10 TRUE
Brain_Cerebellum/Brain_Cerebellum.ENSG00000112812.11.wgt.RDat Brain_Cerebellum /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum/Brain_Cerebellum/Brain_Cerebellum.ENSG00000112812.11.wgt.RDat PRSS16 6 0.34700 rs6938943 -6.310 rs13219354 0.193950 6.56 -4.22300 340 4 lasso 0.234300 1.39e-10 -4.947900 7.50e-07 0.000 0.001 0.000 0.962 0.037 FALSE 0.55 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum 27215480 27224250 GTEx Cerebellum Marginal No 27215480-27224250 2.790355e-10 FALSE
Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9.ENSG00000112812.11.wgt.RDat Brain_Frontal_Cortex_BA9 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9.ENSG00000112812.11.wgt.RDat PRSS16 6 0.18900 rs6938943 -6.310 rs9348772 0.046080 3.93 -3.08200 341 18 enet 0.055850 5.93e-03 -5.045000 4.54e-07 0.000 0.000 0.366 0.056 0.577 FALSE 0.48 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Frontal_Cortex_BA9 27215480 27224250 GTEx Frontal Cortex Marginal No 27215480-27224250 2.790355e-10 FALSE
Whole_Blood/Whole_Blood.ENSG00000112812.11.wgt.RDat Whole_Blood /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood/Whole_Blood/Whole_Blood.ENSG00000112812.11.wgt.RDat PRSS16 6 0.08520 rs6938943 -6.310 rs6913660 0.059488 5.11 -5.15500 342 4 lasso 0.043950 2.99e-05 -5.335920 9.51e-08 0.000 0.001 0.047 0.474 0.479 FALSE 0.47 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood 27215480 27224250 GTEx Whole Blood Marginal No 27215480-27224250 2.790355e-10 FALSE
Adrenal_Gland/Adrenal_Gland.ENSG00000204789.3.wgt.RDat Adrenal_Gland /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland/Adrenal_Gland/Adrenal_Gland.ENSG00000204789.3.wgt.RDat ZNF204P 6 0.14100 rs6938943 -6.310 rs201004 0.059999 4.34 -4.72200 395 7 lasso 0.050060 1.74e-03 -5.032700 4.84e-07 0.000 0.000 0.547 0.211 0.242 FALSE 0.60 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland 27325604 27339304 GTEx Adrenal Gland Marginal No 27325604-27339304 2.790355e-10 FALSE
Brain_Hippocampus/Brain_Hippocampus.ENSG00000271755.1.wgt.RDat Brain_Hippocampus /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hippocampus/Brain_Hippocampus/Brain_Hippocampus.ENSG00000271755.1.wgt.RDat RP1-153G14.4 6 0.15900 rs6938943 -6.310 rs10946940 0.040750 -3.92 -4.17000 410 410 blup 0.051320 9.89e-03 5.354000 8.60e-08 0.000 0.000 0.676 0.142 0.182 FALSE -0.28 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hippocampus 27371789 27374743 GTEx Hippocampus Marginal Yes 27371789-27374743 2.790355e-10 FALSE
Brain_Caudate_basal_ganglia/Brain_Caudate_basal_ganglia.ENSG00000096654.11.wgt.RDat Brain_Caudate_basal_ganglia /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Caudate_basal_ganglia/Brain_Caudate_basal_ganglia/Brain_Caudate_basal_ganglia.ENSG00000096654.11.wgt.RDat ZNF184 6 0.11600 rs6938943 -6.310 rs7509 0.072807 4.25 -4.56300 433 433 blup 0.080900 3.39e-04 -6.325200 2.53e-10 0.000 0.000 0.231 0.114 0.655 TRUE 0.53 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Caudate_basal_ganglia 27418522 27440897 GTEx Caudate Joint No 27418522-27440897 2.790355e-10 FALSE
Brain_Hypothalamus/Brain_Hypothalamus.ENSG00000096654.11.wgt.RDat Brain_Hypothalamus /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hypothalamus/Brain_Hypothalamus/Brain_Hypothalamus.ENSG00000096654.11.wgt.RDat ZNF184 6 0.27900 rs6938943 -6.310 rs13207082 0.140380 4.83 -5.23300 434 18 enet 0.139570 4.38e-05 -4.952200 7.34e-07 0.000 0.000 0.174 0.185 0.641 FALSE 0.66 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hypothalamus 27418522 27440897 GTEx Hypothalamus Marginal No 27418522-27440897 2.790355e-10 FALSE
NTR.BLOOD.RNAARR/NTR.HIST1H4L.wgt.RDat NTR.BLOOD.RNAARR /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/NTR.BLOOD.RNAARR/NTR.BLOOD.RNAARR/NTR.HIST1H4L.wgt.RDat HIST1H4L 6 0.02310 rs853676 -6.390 rs13218875 0.014479 -5.55 -5.43800 470 470 bslmm 0.013000 3.30e-05 4.870800 1.11e-06 0.000 0.000 0.001 0.162 0.838 FALSE -0.78 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/NTR.BLOOD.RNAARR 27840926 27841289 NTR Blood Marginal No 27840926-27841289 1.658858e-10 TRUE
PEC_TWAS_weights/ENSG00000219891.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000219891.wgt.RDat ZSCAN12P1 6 0.06139 rs6905391 -6.420 rs144436694 0.010266 4.94 4.09400 671 671 bslmm 0.030670 8.82e-11 6.268010 3.66e-10 0.000 0.000 0.056 0.626 0.318 FALSE -0.49 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 28058932 28061442 PsychENCODE Joint No 28058932-28061442 1.362743e-10 FALSE
Whole_Blood/Whole_Blood.ENSG00000219891.2.wgt.RDat Whole_Blood /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood/Whole_Blood/Whole_Blood.ENSG00000219891.2.wgt.RDat ZSCAN12P1 6 0.03660 rs853676 -6.390 rs1225591 0.012007 4.01 -4.93300 481 481 blup 0.013440 1.48e-02 -4.936930 7.94e-07 0.000 0.000 0.388 0.365 0.247 FALSE 0.64 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood 28058932 28061442 GTEx Whole Blood Marginal No 28058932-28061442 1.658858e-10 FALSE
Brain_Hippocampus/Brain_Hippocampus.ENSG00000219392.1.wgt.RDat Brain_Hippocampus /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hippocampus/Brain_Hippocampus/Brain_Hippocampus.ENSG00000219392.1.wgt.RDat RP1-265C24.5 6 0.21100 rs853676 -6.390 rs203888 0.141810 -5.09 -3.81500 476 33 enet 0.179240 2.42e-06 5.532000 3.16e-08 0.000 0.000 0.009 0.143 0.847 FALSE -0.73 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hippocampus 28083406 28084329 GTEx Hippocampus Marginal No 28083406-28084329 1.658858e-10 TRUE
YFS.BLOOD.RNAARR/YFS.ZSCAN16.wgt.RDat YFS.BLOOD.RNAARR /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/YFS.BLOOD.RNAARR/YFS.BLOOD.RNAARR/YFS.ZSCAN16.wgt.RDat ZSCAN16 6 0.01350 rs853676 -6.390 rs853685 0.005153 4.29 -6.29200 417 417 blup 0.014070 1.40e-05 -6.109000 1.00e-09 0.000 0.000 0.013 0.054 0.933 FALSE 0.80 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/YFS.BLOOD.RNAARR 28092338 28097860 YFS Blood Marginal No 28092338-28097860 1.658858e-10 TRUE
Brain_Cerebellum/Brain_Cerebellum.ENSG00000137185.7.wgt.RDat Brain_Cerebellum /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum/Brain_Cerebellum/Brain_Cerebellum.ENSG00000137185.7.wgt.RDat ZSCAN9 6 0.12000 rs853676 -6.390 rs13197574 0.032570 4.17 -5.61800 443 443 blup 0.040600 7.15e-03 -5.307800 1.11e-07 0.000 0.000 0.238 0.147 0.615 FALSE 0.73 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum 28192664 28201260 GTEx Cerebellum Joint No 28192664-28201260 1.658858e-10 FALSE
Brain_Hippocampus/Brain_Hippocampus.ENSG00000137185.7.wgt.RDat Brain_Hippocampus /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hippocampus/Brain_Hippocampus/Brain_Hippocampus.ENSG00000137185.7.wgt.RDat ZSCAN9 6 0.14200 rs853676 -6.390 rs17750424 0.082780 4.19 -5.43700 443 28 enet 0.103880 3.50e-04 -6.017000 1.77e-09 0.000 0.000 0.080 0.053 0.866 FALSE 0.65 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hippocampus 28192664 28201260 GTEx Hippocampus Marginal No 28192664-28201260 1.658858e-10 TRUE
Pituitary/Pituitary.ENSG00000137185.7.wgt.RDat Pituitary /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary/Pituitary/Pituitary.ENSG00000137185.7.wgt.RDat ZSCAN9 6 0.20000 rs853676 -6.390 rs13197574 0.039090 4.35 -5.61800 443 22 enet 0.062970 9.22e-04 -6.159020 7.32e-10 0.000 0.000 0.169 0.191 0.640 FALSE 0.70 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary 28192664 28201260 GTEx Pituitary Marginal No 28192664-28201260 1.658858e-10 FALSE
PEC_TWAS_weights/ENSG00000189134.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000189134.wgt.RDat NKAPL 6 0.02766 rs6905391 -6.420 rs112863641 0.008266 4.31 3.55700 621 621 bslmm 0.007610 8.74e-04 5.002860 5.65e-07 0.000 0.000 0.627 0.332 0.041 FALSE -0.45 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 28227098 28228736 PsychENCODE Marginal No 28227098-28228736 1.362743e-10 FALSE
Adrenal_Gland/Adrenal_Gland.ENSG00000197062.7.wgt.RDat Adrenal_Gland /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland/Adrenal_Gland/Adrenal_Gland.ENSG00000197062.7.wgt.RDat RP5-874C20.3 6 0.18070 rs853676 -6.390 rs1778508 0.040376 -4.63 -5.77400 426 426 blup 0.103630 8.80e-06 5.094600 3.49e-07 0.000 0.000 0.031 0.146 0.822 FALSE -0.72 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland 28234788 28245974 GTEx Adrenal Gland Marginal No 28234788-28245974 1.658858e-10 TRUE
Brain_Cerebellum/Brain_Cerebellum.ENSG00000197062.7.wgt.RDat Brain_Cerebellum /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum/Brain_Cerebellum/Brain_Cerebellum.ENSG00000197062.7.wgt.RDat RP5-874C20.3 6 0.47500 rs853676 -6.390 rs213237 0.240770 -6.61 -2.86200 425 425 blup 0.314800 2.75e-14 5.062800 4.13e-07 0.000 0.000 0.000 0.756 0.244 FALSE -0.80 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum 28234788 28245974 GTEx Cerebellum Marginal No 28234788-28245974 1.658858e-10 FALSE
Brain_Hippocampus/Brain_Hippocampus.ENSG00000197062.7.wgt.RDat Brain_Hippocampus /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hippocampus/Brain_Hippocampus/Brain_Hippocampus.ENSG00000197062.7.wgt.RDat RP5-874C20.3 6 0.27000 rs853676 -6.390 rs16894095 0.072900 -4.28 -2.29100 425 425 blup 0.114230 1.80e-04 5.198000 2.01e-07 0.000 0.000 0.172 0.174 0.654 FALSE -0.69 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hippocampus 28234788 28245974 GTEx Hippocampus Marginal No 28234788-28245974 1.658858e-10 FALSE
Brain_Putamen_basal_ganglia/Brain_Putamen_basal_ganglia.ENSG00000197062.7.wgt.RDat Brain_Putamen_basal_ganglia /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Putamen_basal_ganglia/Brain_Putamen_basal_ganglia/Brain_Putamen_basal_ganglia.ENSG00000197062.7.wgt.RDat RP5-874C20.3 6 0.33900 rs853676 -6.390 rs13408 0.035181 -4.74 -3.40000 425 13 enet 0.119100 1.31e-04 5.739000 9.52e-09 0.000 0.000 0.018 0.051 0.931 FALSE -0.84 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Putamen_basal_ganglia 28234788 28245974 GTEx Putamen Marginal No 28234788-28245974 1.658858e-10 TRUE
Thyroid/Thyroid.ENSG00000197062.7.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000197062.7.wgt.RDat RP5-874C20.3 6 0.22340 rs853676 -6.390 rs13408 0.220783 -9.47 -3.40000 426 10 lasso 0.281390 1.75e-30 5.338400 9.38e-08 0.000 0.000 0.000 0.858 0.141 FALSE -0.82 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 28234788 28245974 GTEx Thyroid Marginal No 28234788-28245974 1.658858e-10 FALSE
Whole_Blood/Whole_Blood.ENSG00000197062.7.wgt.RDat Whole_Blood /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood/Whole_Blood/Whole_Blood.ENSG00000197062.7.wgt.RDat RP5-874C20.3 6 0.04100 rs853676 -6.390 rs1778508 0.005820 -3.82 -5.77400 426 426 blup 0.008980 3.82e-02 5.662330 1.49e-08 0.000 0.000 0.288 0.107 0.604 FALSE -0.77 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood 28234788 28245974 GTEx Whole Blood Marginal No 28234788-28245974 1.658858e-10 FALSE
Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000137338.4.wgt.RDat Brain_Cerebellar_Hemisphere /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000137338.4.wgt.RDat PGBD1 6 0.17900 rs853676 -6.390 rs853685 0.067570 4.32 -6.29200 418 6 lasso 0.076220 1.12e-03 -6.313100 2.74e-10 0.000 0.000 0.032 0.017 0.950 TRUE 0.99 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere 28249314 28270326 GTEx Cerebellar Hemisphere Marginal No 28249314-28270326 1.658858e-10 TRUE
Brain_Amygdala/Brain_Amygdala.ENSG00000235109.3.wgt.RDat Brain_Amygdala /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Amygdala/Brain_Amygdala/Brain_Amygdala.ENSG00000235109.3.wgt.RDat ZSCAN31 6 0.26700 rs853676 -6.390 rs203876 0.155750 4.56 -5.03400 382 7 enet 0.146500 1.49e-04 -5.084150 3.69e-07 0.000 0.000 0.381 0.404 0.214 FALSE 0.57 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Amygdala 28292470 28324048 GTEx Amygdala Marginal No 28292470-28324048 1.658858e-10 FALSE
Brain_Amygdala/Brain_Amygdala.ENSG00000189298.9.wgt.RDat Brain_Amygdala /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Amygdala/Brain_Amygdala/Brain_Amygdala.ENSG00000189298.9.wgt.RDat ZKSCAN3 6 0.16200 rs853676 -6.390 rs1233708 0.060030 -3.63 -5.12500 383 383 blup 0.093000 2.37e-03 4.949900 7.43e-07 0.000 0.000 0.777 0.111 0.111 FALSE -0.51 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Amygdala 28317691 28336947 GTEx Amygdala Marginal No 28317691-28336947 1.658858e-10 FALSE
Brain_Hippocampus/Brain_Hippocampus.ENSG00000189298.9.wgt.RDat Brain_Hippocampus /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hippocampus/Brain_Hippocampus/Brain_Hippocampus.ENSG00000189298.9.wgt.RDat ZKSCAN3 6 0.17600 rs853676 -6.390 rs9393909 0.061440 -4.54 -5.08300 385 10 lasso 0.071750 2.71e-03 4.951000 7.37e-07 0.000 0.000 0.389 0.273 0.338 FALSE -0.74 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hippocampus 28317691 28336947 GTEx Hippocampus Marginal No 28317691-28336947 1.658858e-10 FALSE
Thyroid/Thyroid.ENSG00000189298.9.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000189298.9.wgt.RDat ZKSCAN3 6 0.13670 rs853676 -6.390 rs1233708 0.062905 -6.08 -5.12500 385 385 blup 0.102180 3.98e-11 6.093300 1.11e-09 0.000 0.000 0.000 0.086 0.914 FALSE -0.78 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 28317691 28336947 GTEx Thyroid Marginal No 28317691-28336947 1.658858e-10 TRUE
Brain_Hypothalamus/Brain_Hypothalamus.ENSG00000187987.5.wgt.RDat Brain_Hypothalamus /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hypothalamus/Brain_Hypothalamus/Brain_Hypothalamus.ENSG00000187987.5.wgt.RDat ZSCAN23 6 0.21000 rs853676 -6.390 rs1233708 0.130370 4.79 -5.12500 342 342 blup 0.135790 5.57e-05 -5.777500 7.58e-09 0.000 0.000 0.062 0.179 0.758 FALSE 0.74 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Hypothalamus 28399707 28411279 GTEx Hypothalamus Joint No 28399707-28411279 1.658858e-10 FALSE
Brain_Putamen_basal_ganglia/Brain_Putamen_basal_ganglia.ENSG00000187987.5.wgt.RDat Brain_Putamen_basal_ganglia /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Putamen_basal_ganglia/Brain_Putamen_basal_ganglia/Brain_Putamen_basal_ganglia.ENSG00000187987.5.wgt.RDat ZSCAN23 6 0.22900 rs853676 -6.390 rs9468317 0.101459 4.45 -5.08800 342 342 blup 0.140400 3.27e-05 -4.894000 9.90e-07 0.000 0.000 0.239 0.226 0.535 FALSE 0.70 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Putamen_basal_ganglia 28399707 28411279 GTEx Putamen Marginal No 28399707-28411279 1.658858e-10 FALSE
Pituitary/Pituitary.ENSG00000187987.5.wgt.RDat Pituitary /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary/Pituitary/Pituitary.ENSG00000187987.5.wgt.RDat ZSCAN23 6 0.22900 rs853676 -6.390 rs916403 0.134260 5.75 -3.46400 342 342 blup 0.179750 2.09e-08 -4.953290 7.30e-07 0.000 0.000 0.002 0.275 0.723 FALSE 0.72 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary 28399707 28411279 GTEx Pituitary Marginal No 28399707-28411279 1.658858e-10 FALSE
Adrenal_Gland/Adrenal_Gland.ENSG00000146112.7.wgt.RDat Adrenal_Gland /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland/Adrenal_Gland/Adrenal_Gland.ENSG00000146112.7.wgt.RDat PPP1R18 6 0.20040 rs3130557 -5.300 rs2233956 0.046697 -3.98 -2.22200 77 77 blup 0.077590 1.17e-04 4.910200 9.10e-07 0.106 0.007 0.130 0.007 0.750 FALSE -0.02 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland 30644166 30655672 GTEx Adrenal Gland Marginal Yes 30644166-30655672 1.158027e-07 FALSE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr6:30708575:30709391:clu_26190.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr6:30708575:30709391:clu_26190.wgt.RDat FLOT1 6 0.28430 rs3130557 -5.300 rs3130557 0.298470 11.52 -5.29900 77 3 lasso 0.295823 0.00e+00 -5.299700 1.16e-07 0.000 0.001 0.000 0.000 0.999 FALSE 0.43 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 30695485 30710682 CMC DLPFC Splicing Marginal Yes 30695485-30710682 1.158027e-07 TRUE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr6:30708575:30709924:clu_26190.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr6:30708575:30709924:clu_26190.wgt.RDat FLOT1 6 0.21370 rs3130557 -5.300 rs3130557 0.182560 9.15 -5.29900 77 10 lasso 0.167113 1.71e-19 -5.067100 4.04e-07 0.000 0.001 0.000 0.000 0.999 FALSE 0.43 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 30695485 30710682 CMC DLPFC Splicing Marginal Yes 30695485-30710682 1.158027e-07 TRUE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr6:30709110:30709391:clu_26190.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr6:30709110:30709391:clu_26190.wgt.RDat FLOT1 6 0.14360 rs3130557 -5.300 rs3130557 0.098890 -7.05 -5.29900 77 3 lasso 0.092157 4.05e-11 4.936600 7.95e-07 0.000 0.001 0.000 0.000 0.999 FALSE -0.40 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 30695485 30710682 CMC DLPFC Splicing Marginal Yes 30695485-30710682 1.158027e-07 TRUE
Brain_Cerebellum/Brain_Cerebellum.ENSG00000137312.10.wgt.RDat Brain_Cerebellum /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum/Brain_Cerebellum/Brain_Cerebellum.ENSG00000137312.10.wgt.RDat FLOT1 6 0.18400 rs3130557 -5.300 rs3130557 0.112620 4.38 -5.29900 77 1 lasso 0.074900 3.62e-04 -5.299000 1.16e-07 0.010 0.001 0.012 0.000 0.976 FALSE 0.42 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum 30695486 30710510 GTEx Cerebellum Marginal Yes 30695486-30710510 1.158027e-07 TRUE
Pituitary/Pituitary.ENSG00000137312.10.wgt.RDat Pituitary /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary/Pituitary/Pituitary.ENSG00000137312.10.wgt.RDat FLOT1 6 0.22400 rs3130557 -5.300 rs3130557 0.089150 4.23 -5.29900 77 3 lasso 0.065390 7.44e-04 -5.253270 1.49e-07 0.016 0.001 0.020 0.000 0.963 FALSE 0.41 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary 30695486 30710510 GTEx Pituitary Marginal Yes 30695486-30710510 1.158027e-07 TRUE
Thyroid/Thyroid.ENSG00000137312.10.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000137312.10.wgt.RDat FLOT1 6 0.29080 rs3130557 -5.300 rs3130557 0.132032 7.54 -5.29900 77 4 lasso 0.144340 2.47e-15 -5.557400 2.74e-08 0.000 0.001 0.000 0.000 0.999 FALSE 0.44 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 30695486 30710510 GTEx Thyroid Marginal Yes 30695486-30710510 1.158027e-07 TRUE
Brain_Cortex/Brain_Cortex.ENSG00000137411.12.wgt.RDat Brain_Cortex /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cortex/Brain_Cortex/Brain_Cortex.ENSG00000137411.12.wgt.RDat VARS2 6 0.37500 rs3130557 -5.300 rs1811197 0.114080 -4.02 -4.98000 95 5 lasso 0.098840 1.21e-04 5.922000 3.18e-09 0.105 0.004 0.158 0.005 0.727 FALSE -0.66 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cortex 30881982 30894236 GTEx Cortex Marginal Yes 30881982-30894236 1.158027e-07 FALSE
Whole_Blood/Whole_Blood.ENSG00000137411.12.wgt.RDat Whole_Blood /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood/Whole_Blood/Whole_Blood.ENSG00000137411.12.wgt.RDat VARS2 6 0.17210 rs3130557 -5.300 rs3130557 0.046674 -4.37 -5.29900 95 95 blup 0.039720 7.00e-05 6.323130 2.56e-10 0.005 0.001 0.007 0.000 0.986 FALSE -0.60 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood 30881982 30894236 GTEx Whole Blood Marginal Yes 30881982-30894236 1.158027e-07 TRUE
Pituitary/Pituitary.ENSG00000231402.1.wgt.RDat Pituitary /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary/Pituitary/Pituitary.ENSG00000231402.1.wgt.RDat WASF5P 6 0.50500 rs3130557 -5.300 rs2523578 0.236690 6.26 -4.44300 207 207 blup 0.233340 1.02e-10 -5.156240 2.52e-07 0.000 0.046 0.000 0.091 0.862 FALSE 0.54 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary 31255287 31256741 GTEx Pituitary Marginal Yes 31255287-31256741 1.158027e-07 TRUE
Thyroid/Thyroid.ENSG00000206337.6.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000206337.6.wgt.RDat HCP5 6 0.09580 rs3130557 -5.300 rs3094005 0.059439 -5.62 -5.01000 243 243 blup 0.051290 2.99e-06 6.400800 1.55e-10 0.000 0.008 0.000 0.015 0.976 TRUE -0.58 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 31368479 31445283 GTEx Thyroid Joint Yes 31368479-31445283 1.158027e-07 TRUE
Thyroid/Thyroid.ENSG00000204516.5.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000204516.5.wgt.RDat MICB 6 0.46800 rs3130557 -5.300 rs2534671 0.118617 8.29 -4.63600 280 27 enet 0.322490 0.00e+00 -5.557000 2.74e-08 0.000 0.047 0.000 0.094 0.859 TRUE 0.20 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 31462658 31478901 GTEx Thyroid Joint Yes 31462658-31478901 1.158027e-07 TRUE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr6:31619553:31620177:clu_26248.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr6:31619553:31620177:clu_26248.wgt.RDat BAG6 6 0.09910 rs3094005 -5.010 rs2239689 0.042150 -5.27 2.38100 245 245 blup 0.052463 6.57e-07 -5.580000 2.40e-08 0.008 0.408 0.006 0.319 0.259 FALSE 0.40 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 31606805 31620482 CMC DLPFC Splicing Joint Yes 31606805-31620482 5.443004e-07 FALSE
Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9.ENSG00000213722.4.wgt.RDat Brain_Frontal_Cortex_BA9 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9.ENSG00000213722.4.wgt.RDat DDAH2 6 0.32300 rs3094005 -5.010 rs707938 0.119210 -4.28 -3.30800 242 242 blup 0.094280 4.46e-04 5.409500 6.32e-08 0.331 0.042 0.258 0.033 0.336 FALSE -0.30 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Frontal_Cortex_BA9 31694815 31698357 GTEx Frontal Cortex Marginal Yes 31694815-31698357 5.443004e-07 FALSE
CMC.BRAIN.RNASEQ/CMC.DDAH2.wgt.RDat CMC.BRAIN.RNASEQ /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ/CMC.BRAIN.RNASEQ/CMC.DDAH2.wgt.RDat DDAH2 6 0.07420 rs3094005 -5.010 rs1144708 0.042170 -5.86 -4.46600 245 245 blup 0.053500 3.92e-07 5.344500 9.07e-08 0.000 0.051 0.000 0.039 0.909 FALSE -0.46 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ 31694816 31698039 CMC DLPFC Marginal Yes 31694816-31698039 5.443004e-07 TRUE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr6:99831006:99831574:clu_27287.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr6:99831006:99831574:clu_27287.wgt.RDat COQ3 6 0.04000 rs10457592 5.230 rs2029965 0.011000 -3.35 -1.91300 474 474 bslmm 0.007760 3.54e-02 5.146560 2.65e-07 0.324 0.015 0.598 0.029 0.034 TRUE 0.22 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 99817347 99842082 CMC DLPFC Splicing Joint Yes 99817347-99842082 1.695100e-07 FALSE
CMC.BRAIN.RNASEQ/CMC.LIN28B.wgt.RDat CMC.BRAIN.RNASEQ /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ/CMC.BRAIN.RNASEQ/CMC.LIN28B.wgt.RDat LIN28B 6 0.04180 rs1475120 -5.300 rs4946651 0.038000 5.19 -5.26100 434 9 lasso 0.034788 3.91e-05 -5.232050 1.68e-07 0.000 0.001 0.000 0.008 0.990 FALSE 0.97 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ 105404922 105531207 CMC DLPFC Marginal Yes 105404922-105531207 1.158027e-07 TRUE
PEC_TWAS_weights/ENSG00000187772.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000187772.wgt.RDat LIN28B 6 0.06906 rs370771 -5.340 rs13203645 0.044900 -8.64 4.94900 1270 18 enet 0.061400 3.70e-20 -5.105689 3.30e-07 0.000 0.005 0.000 0.052 0.943 FALSE 0.73 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 105404923 105531207 PsychENCODE Marginal Yes 105404923-105531207 9.294658e-08 TRUE
Brain_Amygdala/Brain_Amygdala.ENSG00000203808.6.wgt.RDat Brain_Amygdala /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Amygdala/Brain_Amygdala/Brain_Amygdala.ENSG00000203808.6.wgt.RDat BVES-AS1 6 0.34900 rs1475120 -5.300 rs2153127 0.104990 -3.89 4.60700 377 7 lasso 0.093320 2.33e-03 -5.578300 2.43e-08 0.061 0.007 0.373 0.045 0.514 TRUE 0.81 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Amygdala 105584224 105617820 GTEx Amygdala Joint Yes 105584224-105617820 1.158027e-07 FALSE
PEC_TWAS_weights/ENSG00000106460.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000106460.wgt.RDat TMEM106B 7 0.06497 rs3815535 5.440 rs3800847 0.039600 -7.91 5.36300 2571 6 lasso 0.041800 3.68e-14 -5.790690 7.01e-09 0.000 0.001 0.000 0.054 0.945 TRUE -0.95 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 12250867 12282993 PsychENCODE Joint Yes 12250867-12282993 5.328057e-08 TRUE
Adrenal_Gland/Adrenal_Gland.ENSG00000106460.14.wgt.RDat Adrenal_Gland /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland/Adrenal_Gland/Adrenal_Gland.ENSG00000106460.14.wgt.RDat TMEM106B 7 0.22000 rs1990622 5.420 rs6460900 0.126809 4.93 5.28500 672 3 lasso 0.084100 6.14e-05 5.505026 3.69e-08 0.000 0.001 0.003 0.009 0.987 FALSE 0.98 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland 12250867 12282993 GTEx Adrenal Gland Marginal Yes 12250867-12282993 5.959904e-08 TRUE
Whole_Blood/Whole_Blood.ENSG00000106460.14.wgt.RDat Whole_Blood /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood/Whole_Blood/Whole_Blood.ENSG00000106460.14.wgt.RDat TMEM106B 7 0.38280 rs1990622 5.420 rs6460900 0.142440 7.73 5.28500 672 41 enet 0.201363 7.48e-20 5.531000 3.18e-08 0.000 0.001 0.000 0.008 0.991 FALSE 0.82 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood 12250867 12282993 GTEx Whole Blood Marginal Yes 12250867-12282993 5.959904e-08 TRUE
YFS.BLOOD.RNAARR/YFS.TMEM106B.wgt.RDat YFS.BLOOD.RNAARR /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/YFS.BLOOD.RNAARR/YFS.BLOOD.RNAARR/YFS.TMEM106B.wgt.RDat TMEM106B 7 0.07763 rs1990622 5.420 rs5011432 0.055000 8.73 5.35000 677 7 lasso 0.055160 1.65e-17 5.373600 7.72e-08 0.000 0.001 0.000 0.007 0.993 FALSE 0.95 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/YFS.BLOOD.RNAARR 12250867 12276886 YFS Blood Marginal Yes 12250867-12276886 5.959904e-08 TRUE
Pituitary/Pituitary.ENSG00000070882.8.wgt.RDat Pituitary /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary/Pituitary/Pituitary.ENSG00000070882.8.wgt.RDat OSBPL3 7 0.32980 rs10486432 4.960 rs8180777 0.044100 -4.25 0.96600 610 610 blup 0.129980 2.25e-06 -5.622890 1.88e-08 0.090 0.040 0.062 0.027 0.780 TRUE -0.53 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary 24836158 25021253 GTEx Pituitary Joint Yes 24836158-25021253 7.049318e-07 FALSE
CMC.BRAIN.RNASEQ/CMC.PXDNL.wgt.RDat CMC.BRAIN.RNASEQ /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ/CMC.BRAIN.RNASEQ/CMC.PXDNL.wgt.RDat PXDNL 8 0.05330 rs12548147 5.250 rs7008730 -0.000193 3.73 3.26800 586 586 blup 0.015150 5.06e-03 5.887460 3.92e-09 0.090 0.019 0.318 0.065 0.508 TRUE 0.61 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ 52232136 52722005 CMC DLPFC Joint Yes 52232136-52722005 1.520992e-07 FALSE
Thyroid/Thyroid.ENSG00000251396.2.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000251396.2.wgt.RDat RP11-163N6.2 8 0.04980 rs618190 5.020 rs597123 0.011932 -4.38 3.33300 402 402 blup 0.013830 1.08e-02 -5.336530 9.47e-08 0.084 0.162 0.118 0.228 0.408 TRUE -0.74 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 61297147 61429354 GTEx Thyroid Joint Yes 61297147-61429354 5.167148e-07 FALSE
PEC_TWAS_weights/ENSG00000234881.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000234881.wgt.RDat PIGFP2 9 0.02070 rs7029033 5.560 rs667138 0.003030 -4.03 4.58000 1396 1396 bslmm 0.001730 6.99e-02 -5.305600 1.12e-07 0.017 0.004 0.603 0.126 0.250 TRUE -0.50 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 126605315 126605965 PsychENCODE Joint No 126605315-126605965 2.697747e-08 FALSE
Adrenal_Gland/Adrenal_Gland.ENSG00000149115.9.wgt.RDat Adrenal_Gland /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland/Adrenal_Gland/Adrenal_Gland.ENSG00000149115.9.wgt.RDat TNKS1BP1 11 0.17620 rs11607056 4.970 rs11228997 0.004394 4.05 3.09700 412 412 blup 0.092060 2.79e-05 4.922610 8.54e-07 0.080 0.025 0.107 0.032 0.756 TRUE 0.49 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland 57067112 57092426 GTEx Adrenal Gland Joint Yes 57067112-57092426 6.695290e-07 FALSE
Thyroid/Thyroid.ENSG00000254602.1.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000254602.1.wgt.RDat AP000662.4 11 0.24480 rs11607056 4.970 rs11607122 0.095400 -6.95 3.59200 396 46 enet 0.153544 2.82e-16 -4.980256 6.35e-07 0.000 0.136 0.000 0.255 0.610 FALSE -0.62 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 57405497 57420263 GTEx Thyroid Marginal Yes 57405497-57420263 6.695290e-07 FALSE
Whole_Blood/Whole_Blood.ENSG00000172409.5.wgt.RDat Whole_Blood /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood/Whole_Blood/Whole_Blood.ENSG00000172409.5.wgt.RDat CLP1 11 0.04780 rs11607056 4.970 rs9420 0.035200 4.80 4.68900 390 4 lasso 0.032330 3.10e-04 5.195860 2.04e-07 0.001 0.008 0.002 0.015 0.974 TRUE 0.88 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood 57424488 57429340 GTEx Whole Blood Joint Yes 57424488-57429340 6.695290e-07 TRUE
PEC_TWAS_weights/ENSG00000134825.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000134825.wgt.RDat TMEM258 11 0.07329 rs174594 5.060 rs174536 0.012300 5.95 4.36600 1206 9 enet 0.012700 2.35e-05 5.021730 5.12e-07 0.000 0.049 0.000 0.041 0.910 TRUE 0.73 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 61535973 61560274 PsychENCODE Joint Yes 61535973-61560274 4.192565e-07 TRUE
Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9.ENSG00000149295.9.wgt.RDat Brain_Frontal_Cortex_BA9 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9.ENSG00000149295.9.wgt.RDat DRD2 11 0.43370 rs2514218 -5.030 rs4319541 -0.004170 -3.58 2.09000 526 526 blup 0.100150 2.99e-04 -5.073787 3.90e-07 0.366 0.032 0.515 0.045 0.042 TRUE 0.00 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Frontal_Cortex_BA9 113280318 113346111 GTEx Frontal Cortex Joint Yes 113280318-113346111 4.904798e-07 FALSE
CMC.BRAIN.RNASEQ/CMC.OLFM4.wgt.RDat CMC.BRAIN.RNASEQ /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ/CMC.BRAIN.RNASEQ/CMC.OLFM4.wgt.RDat OLFM4 13 0.03980 rs12552 8.890 rs1535576 0.027299 -3.86 -3.38200 507 507 blup 0.008642 2.69e-02 5.091290 3.56e-07 0.000 0.000 0.865 0.089 0.046 TRUE 0.42 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ 53602875 53626196 CMC DLPFC Joint No 53602875-53626196 6.110891e-19 FALSE
Thyroid/Thyroid.ENSG00000258636.1.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000258636.1.wgt.RDat CTD-2298J14.2 14 0.11180 rs1950829 5.940 rs12431444 0.073500 -5.91 5.69800 353 3 lasso 0.057336 8.03e-07 -5.678860 1.36e-08 0.000 0.000 0.000 0.022 0.978 TRUE -0.87 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 42057064 42074059 GTEx Thyroid Joint No 42057064-42074059 2.850221e-09 TRUE
Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000165379.9.wgt.RDat Brain_Cerebellar_Hemisphere /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere/Brain_Cerebellar_Hemisphere.ENSG00000165379.9.wgt.RDat LRFN5 14 0.43200 rs1950829 5.940 rs11157247 0.204000 6.15 4.86000 353 353 blup 0.310050 1.13e-11 5.423400 5.85e-08 0.000 0.000 0.000 0.029 0.971 FALSE 0.78 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellar_Hemisphere 42076773 42373752 GTEx Cerebellar Hemisphere Marginal No 42076773-42373752 2.850221e-09 TRUE
Brain_Cerebellum/Brain_Cerebellum.ENSG00000165379.9.wgt.RDat Brain_Cerebellum /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum/Brain_Cerebellum/Brain_Cerebellum.ENSG00000165379.9.wgt.RDat LRFN5 14 0.41100 rs1950829 5.940 rs8008204 0.152180 5.94 5.09100 353 6 lasso 0.195060 6.59e-09 5.597540 2.17e-08 0.000 0.000 0.000 0.041 0.959 FALSE 0.89 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum 42076773 42373752 GTEx Cerebellum Marginal No 42076773-42373752 2.850221e-09 TRUE
Thyroid/Thyroid.ENSG00000050130.13.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000050130.13.wgt.RDat JKAMP 14 0.14070 rs12893956 5.080 rs1952039 0.037700 -4.89 5.02000 460 460 blup 0.056384 9.88e-07 -5.125100 2.97e-07 0.001 0.004 0.004 0.022 0.969 FALSE -0.62 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 59951161 59971429 GTEx Thyroid Marginal Yes 59951161-59971429 3.774349e-07 TRUE
Thyroid/Thyroid.ENSG00000151838.7.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000151838.7.wgt.RDat CCDC175 14 0.13690 rs12893956 5.080 rs2182140 0.076100 -6.21 4.97200 424 424 blup 0.072917 2.66e-08 -5.478850 4.28e-08 0.000 0.004 0.000 0.018 0.979 TRUE -0.64 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 59971779 60043549 GTEx Thyroid Joint Yes 59971779-60043549 3.774349e-07 TRUE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr14:60074210:60097164:clu_16682.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr14:60074210:60097164:clu_16682.wgt.RDat RTN1 14 0.04170 rs12893956 5.080 rs12587247 0.025600 -4.59 4.72000 420 420 blup 0.019700 1.78e-03 -4.874920 1.09e-06 0.001 0.006 0.007 0.033 0.953 FALSE -0.85 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 60062693 60337557 CMC DLPFC Splicing Marginal Yes 60062693-60337557 3.774349e-07 TRUE
Thyroid/Thyroid.ENSG00000139970.12.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000139970.12.wgt.RDat RTN1 14 0.25130 rs12893956 5.080 rs1952039 0.154000 -8.02 5.02000 358 6 lasso 0.152868 3.31e-16 -5.348450 8.87e-08 0.000 0.003 0.000 0.016 0.981 FALSE -0.77 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 60062695 60337684 GTEx Thyroid Marginal Yes 60062695-60337684 3.774349e-07 TRUE
NTR.BLOOD.RNAARR/NTR.SYNE2.wgt.RDat NTR.BLOOD.RNAARR /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/NTR.BLOOD.RNAARR/NTR.BLOOD.RNAARR/NTR.SYNE2.wgt.RDat SYNE2 14 0.07960 rs915057 -6.150 rs3020445 0.077706 -10.10 -5.71300 510 5 lasso 0.080663 9.92e-25 5.609528 2.03e-08 0.000 0.000 0.000 0.016 0.984 FALSE -0.94 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/NTR.BLOOD.RNAARR 64319682 64693151 NTR Blood Marginal No 64319682-64693151 7.748295e-10 TRUE
Pituitary/Pituitary.ENSG00000140009.14.wgt.RDat Pituitary /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary/Pituitary/Pituitary.ENSG00000140009.14.wgt.RDat ESR2 14 0.21120 rs915057 -6.150 rs1256033 -0.005360 4.10 -5.46600 456 19 enet 0.028550 1.97e-02 -5.982300 2.20e-09 0.000 0.000 0.113 0.026 0.860 TRUE 0.70 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Pituitary 64550950 64770377 GTEx Pituitary Joint No 64550950-64770377 7.748295e-10 TRUE
Whole_Blood/Whole_Blood.ENSG00000140009.14.wgt.RDat Whole_Blood /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood/Whole_Blood/Whole_Blood.ENSG00000140009.14.wgt.RDat ESR2 14 0.10120 rs915057 -6.150 rs6573553 0.050018 5.67 -5.46200 457 9 enet 0.067100 2.81e-07 -5.655371 1.56e-08 0.000 0.000 0.000 0.014 0.986 FALSE 0.91 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood 64550950 64770377 GTEx Whole Blood Marginal No 64550950-64770377 7.748295e-10 TRUE
PEC_TWAS_weights/ENSG00000119682.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000119682.wgt.RDat AREL1 14 0.17261 rs2005864 5.800 rs11621186 0.138000 14.00 -4.78500 1130 1130 bslmm 0.163000 0.00e+00 -5.015110 5.30e-07 0.000 0.002 0.000 0.216 0.782 FALSE -0.77 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 75120140 75179818 PsychENCODE Marginal No 75120140-75179818 6.631492e-09 FALSE
Thyroid/Thyroid.ENSG00000119608.8.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000119608.8.wgt.RDat PROX2 14 0.06530 rs1045430 -5.710 rs2300596 0.011200 -4.49 5.58500 368 13 enet 0.011563 1.80e-02 -5.758100 8.51e-09 0.000 0.000 0.017 0.020 0.962 TRUE -0.89 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 75319736 75330537 GTEx Thyroid Joint No 75319736-75330537 1.129762e-08 TRUE
CMC.BRAIN.RNASEQ/CMC.DLST.wgt.RDat CMC.BRAIN.RNASEQ /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ/CMC.BRAIN.RNASEQ/CMC.DLST.wgt.RDat DLST 14 0.09270 rs1045430 -5.710 rs2111705 0.105642 -7.28 -4.40600 386 2 lasso 0.108580 3.96e-13 4.981400 6.31e-07 0.000 0.001 0.000 0.047 0.952 FALSE 0.89 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ 75348593 75370450 CMC DLPFC Marginal No 75348593-75370450 1.129762e-08 TRUE
PEC_TWAS_weights/ENSG00000119689.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000119689.wgt.RDat DLST 14 0.04731 rs2005864 5.800 rs8010840 0.024100 6.34 5.61000 1076 31 enet 0.032600 2.24e-11 5.089700 3.59e-07 0.000 0.000 0.000 0.023 0.977 FALSE 0.80 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 75348594 75370448 PsychENCODE Marginal No 75348594-75370448 6.631492e-09 TRUE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr14:75375893:75377951:clu_16995.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr14:75375893:75377951:clu_16995.wgt.RDat RPS6KL1 14 0.08080 rs1045430 -5.710 rs2359239 0.026700 4.40 -4.17600 382 2 lasso 0.027820 2.48e-04 -5.023810 5.07e-07 0.003 0.001 0.205 0.082 0.708 FALSE -0.57 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 75370656 75389188 CMC DLPFC Splicing Marginal No 75370656-75389188 1.129762e-08 FALSE
PEC_TWAS_weights/ENSG00000198208.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000198208.wgt.RDat RPS6KL1 14 0.01434 rs2005864 5.800 rs12888998 -0.000719 -3.58 5.27000 1056 1056 bslmm 0.001410 9.08e-02 -4.952550 7.32e-07 0.002 0.000 0.176 0.031 0.791 FALSE -0.87 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 75370657 75390099 PsychENCODE Marginal No 75370657-75390099 6.631492e-09 FALSE
PEC_TWAS_weights/ENSG00000244691.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000244691.wgt.RDat RP11-600F24.2 14 0.01456 rs10149470 -5.930 rs2403193 0.000357 -3.98 -5.16700 1598 2 lasso 0.003470 1.81e-02 5.185660 2.15e-07 0.007 0.002 0.552 0.202 0.238 FALSE -0.64 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 103878456 103879098 PsychENCODE Marginal No 103878456-103879098 3.029347e-09 FALSE
YFS.BLOOD.RNAARR/YFS.CKB.wgt.RDat YFS.BLOOD.RNAARR /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/YFS.BLOOD.RNAARR/YFS.BLOOD.RNAARR/YFS.CKB.wgt.RDat CKB 14 0.02530 rs2296483 -5.370 rs10129426 0.023900 -5.66 -5.33600 349 4 lasso 0.018640 6.64e-07 5.346000 8.99e-08 0.000 0.001 0.000 0.005 0.995 FALSE -0.97 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/YFS.BLOOD.RNAARR 103985996 103989448 YFS Blood Marginal Yes 103985996-103989448 7.873664e-08 TRUE
CMC.BRAIN.RNASEQ/CMC.TRMT61A.wgt.RDat CMC.BRAIN.RNASEQ /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ/CMC.BRAIN.RNASEQ/CMC.TRMT61A.wgt.RDat TRMT61A 14 0.06010 rs2296483 -5.370 rs942866 0.025997 -4.79 -5.21700 349 3 lasso 0.042040 6.61e-06 5.051300 4.39e-07 0.001 0.004 0.004 0.030 0.961 FALSE -0.57 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ 103995508 104003410 CMC DLPFC Marginal Yes 103995508-104003410 7.873664e-08 TRUE
Whole_Blood/Whole_Blood.ENSG00000166166.8.wgt.RDat Whole_Blood /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood/Whole_Blood/Whole_Blood.ENSG00000166166.8.wgt.RDat TRMT61A 14 0.07160 rs2296483 -5.370 rs7154572 0.017206 -4.48 -3.40800 354 3 lasso 0.034600 1.97e-04 4.977593 6.44e-07 0.006 0.010 0.049 0.081 0.854 FALSE -0.64 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Whole_Blood 103995521 104003410 GTEx Whole Blood Marginal Yes 103995521-104003410 7.873664e-08 TRUE
Thyroid/Thyroid.ENSG00000258851.1.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000258851.1.wgt.RDat RP11-894P9.2 14 0.08430 rs2296483 -5.370 rs10129426 0.069700 5.42 -5.33600 361 5 lasso 0.064092 1.84e-07 -5.462560 4.69e-08 0.000 0.001 0.000 0.005 0.994 TRUE 0.94 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 104019758 104028214 GTEx Thyroid Joint Yes 104019758-104028214 7.873664e-08 TRUE
PEC_TWAS_weights/ENSG00000270108.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000270108.wgt.RDat RP11-73M18.6 14 0.03617 rs10149470 -5.930 rs4906358 0.017500 -5.52 -4.62700 1758 1758 bslmm 0.017700 7.13e-07 5.031320 4.87e-07 0.000 0.005 0.001 0.413 0.581 FALSE -0.63 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 104153913 104154464 PsychENCODE Marginal No 104153913-104154464 3.029347e-09 FALSE
PEC_TWAS_weights/ENSG00000269940.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000269940.wgt.RDat RP11-73M18.7 14 0.06550 rs10149470 -5.930 esv3635603 0.035600 -8.21 -4.55400 1755 13 lasso 0.055600 2.22e-18 4.856130 1.20e-06 0.000 0.006 0.000 0.513 0.480 FALSE -0.65 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 104160897 104161507 PsychENCODE Marginal No 104160897-104161507 3.029347e-09 FALSE
Brain_Amygdala/Brain_Amygdala.ENSG00000269958.1.wgt.RDat Brain_Amygdala /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Amygdala/Brain_Amygdala/Brain_Amygdala.ENSG00000269958.1.wgt.RDat RP11-73M18.8 14 0.30000 rs2296483 -5.370 rs2296483 0.181510 -4.31 -5.37200 353 5 lasso 0.111880 9.04e-04 5.142000 2.72e-07 0.010 0.002 0.082 0.019 0.887 FALSE -0.70 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Amygdala 104162690 104163500 GTEx Amygdala Marginal Yes 104162690-104163500 7.873664e-08 TRUE
Brain_Cerebellum/Brain_Cerebellum.ENSG00000224997.1.wgt.RDat Brain_Cerebellum /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum/Brain_Cerebellum/Brain_Cerebellum.ENSG00000224997.1.wgt.RDat AL049840.1 14 0.27100 rs2296483 -5.370 rs861544 0.052800 -4.75 -4.50100 351 351 blup 0.082090 1.94e-04 5.029540 4.92e-07 0.001 0.003 0.008 0.026 0.962 FALSE -0.60 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum 104177607 104179149 GTEx Cerebellum Marginal Yes 104177607-104179149 7.873664e-08 TRUE
Brain_Cortex/Brain_Cortex.ENSG00000224997.1.wgt.RDat Brain_Cortex /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cortex/Brain_Cortex/Brain_Cortex.ENSG00000224997.1.wgt.RDat AL049840.1 14 0.26800 rs2296483 -5.370 rs11625397 0.182495 -5.06 -5.13000 350 4 lasso 0.160000 8.82e-07 5.143620 2.69e-07 0.001 0.002 0.007 0.012 0.979 FALSE -0.72 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cortex 104177607 104179149 GTEx Cortex Marginal Yes 104177607-104179149 7.873664e-08 TRUE
Brain_Cortex/Brain_Cortex.ENSG00000269963.1.wgt.RDat Brain_Cortex /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cortex/Brain_Cortex/Brain_Cortex.ENSG00000269963.1.wgt.RDat RP11-73M18.9 14 0.24800 rs2296483 -5.370 rs11625397 0.198292 -5.37 -5.13000 349 4 lasso 0.186000 1.06e-07 4.977330 6.45e-07 0.000 0.002 0.001 0.013 0.984 FALSE -0.69 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cortex 104179904 104180441 GTEx Cortex Marginal Yes 104179904-104180441 7.873664e-08 TRUE
PEC_TWAS_weights/ENSG00000269963.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000269963.wgt.RDat RP11-73M18.9 14 0.01265 rs10149470 -5.930 rs3759586 0.014300 -4.83 -4.84900 1749 2 lasso 0.010900 8.45e-05 4.830100 1.36e-06 0.001 0.005 0.049 0.425 0.520 FALSE -0.62 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 104179904 104180586 PsychENCODE Marginal No 104179904-104180586 3.029347e-09 FALSE
PEC_TWAS_weights/ENSG00000118557.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000118557.wgt.RDat PMFBP1 16 0.02226 rs9936642 5.460 rs8043722 0.000245 -4.07 4.80200 1349 1349 blup 0.004720 7.14e-03 -5.160620 2.46e-07 0.013 0.005 0.174 0.069 0.738 TRUE -0.70 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 72146056 72210777 PsychENCODE Joint No 72146056-72210777 4.761346e-08 FALSE
Adrenal_Gland/Adrenal_Gland.ENSG00000196535.10.wgt.RDat Adrenal_Gland /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland/Adrenal_Gland/Adrenal_Gland.ENSG00000196535.10.wgt.RDat MYO18A 17 0.37380 rs8066520 5.060 rs4795491 0.123317 -5.45 4.34000 337 337 blup 0.167285 1.26e-08 -5.128570 2.92e-07 0.002 0.040 0.001 0.019 0.937 FALSE -0.62 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland 27400528 27507430 GTEx Adrenal Gland Marginal Yes 27400528-27507430 4.192565e-07 TRUE
Adrenal_Gland/Adrenal_Gland.ENSG00000221995.4.wgt.RDat Adrenal_Gland /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland/Adrenal_Gland/Adrenal_Gland.ENSG00000221995.4.wgt.RDat TIAF1 17 0.30370 rs8066520 5.060 rs869718 0.085762 -5.08 3.64100 324 324 blup 0.095323 2.01e-05 -5.361200 8.27e-08 0.016 0.111 0.008 0.055 0.810 TRUE -0.46 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Adrenal_Gland 27401933 27405875 GTEx Adrenal Gland Joint Yes 27401933-27405875 4.192565e-07 TRUE
PEC_TWAS_weights/ENSG00000264754.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000264754.wgt.RDat CTD-2653B5.1 17 0.06754 rs60856912 4.180 rs8069128 0.025500 -6.44 -3.82146 1225 1225 bslmm 0.023300 1.44e-08 5.105730 3.30e-07 0.000 0.441 0.000 0.028 0.531 TRUE 0.13 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 65520597 65521538 PsychENCODE Joint Yes 65520597-65521538 2.915091e-05 FALSE
PEC_TWAS_weights/ENSG00000041353.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000041353.wgt.RDat RAB27B 18 0.13240 rs1262464 -5.780 rs12970424 0.057700 -9.79 -4.57400 1433 1433 blup 0.063700 7.52e-21 5.012900 5.36e-07 0.000 0.015 0.000 0.328 0.657 TRUE 0.11 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 52385091 52562747 PsychENCODE Joint Yes 52385091-52562747 7.470063e-09 FALSE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr18:52385372:52544798:clu_20555.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr18:52385372:52544798:clu_20555.wgt.RDat RAB27B 18 0.18080 rs11875348 -5.120 rs2871673 0.173248 -8.88 -4.77300 368 9 lasso 0.159800 1.20e-18 4.843190 1.28e-06 0.000 0.016 0.000 0.038 0.945 FALSE 0.11 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 52495707 52562747 CMC DLPFC Splicing Marginal Yes 52495707-52562747 3.055357e-07 TRUE
CMC.BRAIN.RNASEQ/CMC.DDX27.wgt.RDat CMC.BRAIN.RNASEQ /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ/CMC.BRAIN.RNASEQ/CMC.DDX27.wgt.RDat DDX27 20 0.04460 rs11697370 -4.640 rs7266044 0.038362 -5.08 -3.95500 441 11 enet 0.069662 7.29e-09 4.836260 1.32e-06 0.003 0.067 0.001 0.029 0.900 TRUE -0.78 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ 47835831 47860614 CMC DLPFC Joint Yes 47835831-47860614 3.484092e-06 TRUE
Brain_Nucleus_accumbens_basal_ganglia/Brain_Nucleus_accumbens_basal_ganglia.ENSG00000100372.10.wgt.RDat Brain_Nucleus_accumbens_basal_ganglia /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Nucleus_accumbens_basal_ganglia/Brain_Nucleus_accumbens_basal_ganglia/Brain_Nucleus_accumbens_basal_ganglia.ENSG00000100372.10.wgt.RDat SLC25A17 22 0.13620 rs2179744 5.730 rs13054099 0.098545 4.16 4.32200 287 8 enet 0.049730 6.36e-03 5.076990 3.83e-07 0.007 0.001 0.547 0.097 0.348 FALSE 0.74 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Nucleus_accumbens_basal_ganglia 41165634 41215403 GTEx Nucleus accumbens Marginal No 41165634-41215403 1.004306e-08 FALSE
Thyroid/Thyroid.ENSG00000100372.10.wgt.RDat Thyroid /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid/Thyroid/Thyroid.ENSG00000100372.10.wgt.RDat SLC25A17 22 0.08390 rs2179744 5.730 rs5758064 0.044400 -5.31 -4.02000 289 289 blup 0.059630 4.87e-07 4.896100 9.78e-07 0.000 0.008 0.020 0.671 0.301 FALSE 0.47 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Thyroid 41165634 41215403 GTEx Thyroid Marginal No 41165634-41215403 1.004306e-08 FALSE
Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9.ENSG00000196236.8.wgt.RDat Brain_Frontal_Cortex_BA9 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9/Brain_Frontal_Cortex_BA9.ENSG00000196236.8.wgt.RDat XPNPEP3 22 0.22800 rs2179744 5.730 rs133076 0.006324 3.91 4.53000 282 15 enet 0.088290 6.68e-04 4.951000 7.38e-07 0.009 0.001 0.731 0.091 0.168 FALSE 0.45 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Frontal_Cortex_BA9 41253088 41351450 GTEx Frontal Cortex Marginal No 41253088-41351450 1.004306e-08 FALSE
CMC.BRAIN.RNASEQ/CMC.XPNPEP3.wgt.RDat CMC.BRAIN.RNASEQ /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ/CMC.BRAIN.RNASEQ/CMC.XPNPEP3.wgt.RDat XPNPEP3 22 0.05530 rs2179744 5.730 rs138354 0.035200 -5.57 -4.32500 318 4 lasso 0.044230 3.86e-06 5.110000 3.21e-07 0.000 0.004 0.005 0.358 0.632 FALSE 0.64 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ 41258260 41363888 CMC DLPFC Marginal No 41258260-41363888 1.004306e-08 FALSE
Brain_Cerebellum/Brain_Cerebellum.ENSG00000100393.9.wgt.RDat Brain_Cerebellum /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum/Brain_Cerebellum/Brain_Cerebellum.ENSG00000100393.9.wgt.RDat EP300 22 0.11400 rs2179744 5.730 rs3171692 0.040045 4.45 4.69400 276 276 blup 0.063473 9.81e-04 5.493900 3.93e-08 0.001 0.001 0.061 0.049 0.888 FALSE 0.85 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum 41487790 41576081 GTEx Cerebellum Marginal No 41487790-41576081 1.004306e-08 TRUE
YFS.BLOOD.RNAARR/YFS.EP300.wgt.RDat YFS.BLOOD.RNAARR /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/YFS.BLOOD.RNAARR/YFS.BLOOD.RNAARR/YFS.EP300.wgt.RDat EP300 22 0.04512 rs2179744 5.730 rs139480 0.042424 -7.51 -4.00200 284 284 blup 0.046630 5.18e-15 5.059100 4.21e-07 0.000 0.012 0.000 0.955 0.033 FALSE 0.61 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/YFS.BLOOD.RNAARR 41487790 41576081 YFS Blood Marginal No 41487790-41576081 1.004306e-08 FALSE
CMC.BRAIN.RNASEQ_SPLICING/CMC.chr22:41657584:41664101:clu_21526.wgt.RDat CMC.BRAIN.RNASEQ_SPLICING /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING/CMC.BRAIN.RNASEQ_SPLICING/CMC.chr22:41657584:41664101:clu_21526.wgt.RDat RANGAP1 22 0.02850 rs2179744 5.730 rs5758209 -0.002214 -3.04 -4.88500 251 251 blup 0.003925 9.85e-02 5.240100 1.61e-07 0.010 0.000 0.814 0.028 0.147 FALSE 0.57 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/CMC.BRAIN.RNASEQ_SPLICING 41641614 41682216 CMC DLPFC Splicing Marginal No 41641614-41682216 1.004306e-08 FALSE
PEC_TWAS_weights/ENSG00000100401.wgt.RDat PsychENCODE /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights/ENSG00000100401.wgt.RDat RANGAP1 22 0.05133 rs5758265 5.780 rs5751074 0.041600 -7.48 4.72400 1064 4 lasso 0.053336 1.13e-17 -5.575273 2.47e-08 0.000 0.004 0.000 0.705 0.290 FALSE -0.81 /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights 41641615 41682255 PsychENCODE Marginal No 41641615-41682255 7.470063e-09 FALSE
Brain_Cerebellum/Brain_Cerebellum.ENSG00000100403.10.wgt.RDat Brain_Cerebellum /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum/Brain_Cerebellum/Brain_Cerebellum.ENSG00000100403.10.wgt.RDat ZC3H7B 22 0.11000 rs2179744 5.730 rs6002271 0.072645 4.09 5.58700 269 4 lasso 0.037831 9.13e-03 5.729100 1.01e-08 0.001 0.000 0.105 0.031 0.862 TRUE 0.93 /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/SNP-weights/Brain_Cerebellum 41697526 41756151 GTEx Cerebellum Joint No 41697526-41756151 1.004306e-08 TRUE

3.7 FOCUS

Remove PsychENCODE SNP-weights with no SNPs

# Some PsychENCODE SNP-weights don't have any weights. Make a .pos file that does not include these.

# Last gene before fail was 'ENSG00000205571'
pos<-read.table('/scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights.pos', header=T, stringsAsFactors=F)

pos_clean<-NULL
for(i in 1:dim(pos)[1]){
  load(paste0('/scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/',pos$WGT[i]))
  
  print(i)
  if(dim(snps)[1] > 0){
    pos_clean<-rbind(pos_clean,pos[i,])
  }
}

dim(pos) # 14750
dim(pos_clean) # 14744

write.table(pos_clean, '/scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/PEC_TWAS_weights/PEC_TWAS_weights_noMissing.pos', col.names=T, row.names=F, quote=F)

Prepare FOCUS weight database

########
# Import the FUSION SNP-weights to FOCUS format
########

# Import with all tissues in the MDD TWAS combined
# A shell script to do this has been written
mkdir -p /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FOCUS/MDD_TWAS_db

# Fusion weights
sbatch -p brc,shared --mem=10G /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FOCUS/MDD_TWAS_db_FUSION/create_db_fusion.sh

# Psych ENCODE weights
sbatch -p brc,shared --mem=10G /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FOCUS/MDD_TWAS_db/create_db_psychENCODE.sh

Run FOCUS

########
# Finemap TWAS associations
########

# Use a threshold that will run FOCUS for all TWAS significant loci (max GWAS.P = 5e-6)
for chr in $(seq 1 22); do
sbatch -p brc,shared --mem=10G /users/k1806347/brc_scratch/Software/focus.sh finemap /users/k1806347/brc_scratch/Data/GWAS_sumstats/Lorenza/DEPR01.focus.sumstats.gz  /scratch/groups/biomarkers-brc-mh/Reference_data/1KG_Phase3/PLINK/EUR/EUR_phase3.MAF_001.chr${chr} /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FOCUS/MDD_TWAS_db/MDD_TWAS.db --chr ${chr} --p-threshold 5e-6 --plot --out /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/FOCUS/MDD.FOCUS.MDD_TWAS_db.chr${chr}
done

Process the FOCUS results

library(data.table)

fusion <- fread("/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues_TWSig_CLEAN.txt")

focus.files<-list.files(path='/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/FOCUS/', pattern=glob2rx("MDD.FOCUS.MDD_TWAS_db.chr*.focus.tsv"))
length(focus.files)
focus<-NULL
for(i in focus.files){
focus<-rbind(focus,fread(paste0('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/FOCUS/',i)))
}

# I noticed a bug in the output where features that should be in the 90% credible set are not
focus_bug<-NULL
for(i in unique(focus$region)){
    focus_temp<-focus[focus$region == i,]
    if(sum(focus_temp$in_cred_set) == 0 & max(focus_temp$pip) != focus_temp$pip[focus_temp$ens_gene_id == 'NULL.MODEL']){
    print(head(focus_temp))
        focus_bug<-rbind(focus_bug, focus_temp)
    }
}

# This shows several features should be in the credible set
focus$in_cred_set[focus$ens_gene_id == 'DENND1B' & focus$tissue == 'cmc.brain.rnaseq' & focus$region == '1:197311514-1:199239815'] <- 1
focus$in_cred_set[focus$ens_gene_id == 'OLFM4' & focus$tissue == 'cmc.brain.rnaseq' & focus$region == '13:53339645-13:54682393'] <- 1
focus$in_cred_set[focus$ens_gene_id == 'ENSG00000229267' & focus$tissue == 'pec_twas_weights' & focus$region == '2:214014511-2:215573795'] <- 1
focus$in_cred_set[focus$ens_gene_id == 'COQ3' & focus$tissue == 'cmc.brain.rnaseq_splicing' & focus$region == '6:97842747-6:100629728'] <- 1
focus$in_cred_set[focus$ens_gene_id == 'OSBPL3' & focus$tissue == 'pituitary' & focus$region == '7:23471523-7:25077097'] <- 1
focus$in_cred_set[focus$ens_gene_id == 'PXDNL' & focus$tissue == 'cmc.brain.rnaseq' & focus$region == '8:50082470-8:53302930'] <- 1

# Update tissue for psychencode features
focus_psychencode<-focus[focus$tissue == 'pec_twas_weights',]
focus_fusion<-focus[focus$tissue != 'pec_twas_weights',]
focus_psychencode$tissue<-'psychencode'

# Update PsychENCODE gene IDs from ensembl to gene names
library(biomaRt)
ensembl = useEnsembl(biomart="ensembl", dataset="hsapiens_gene_ensembl", GRCh=37)
listAttributes(ensembl)
Genes<-getBM(attributes=c('ensembl_gene_id','external_gene_name'), mart = ensembl)

focus_psychencode<-merge(focus_psychencode, Genes, by.x='mol_name', by.y='ensembl_gene_id')
focus_psychencode$mol_name<-focus_psychencode$external_gene_name
focus_psychencode$external_gene_name<-NULL
focus_psychencode<-focus_psychencode[,names(focus),with=F]
focus<-rbind(focus_fusion,focus_psychencode)

fusion$tissue<-tolower(fusion$PANEL)
fusion_focus<-merge(fusion, focus[,c('mol_name','tissue','twas_z','pip','in_cred_set','region'),with=F], by.x=c('tissue','ID'), by.y=c('tissue','mol_name'), all.x=T)
fusion_focus<-fusion_focus[,c('CHR','P0','P1','PANEL_clean_short','ID','TWAS.Z','TWAS.P','twas_z','in_cred_set','pip','region'),with=F]
names(fusion_focus)<-c('CHR','P0','P1','SNP-weight Set','ID','TWAS.Z','TWAS.P','FOCUS_twas_z','FOCUS_in_cred_set','FOCUS_pip','FOCUS_region')
fusion_focus<-fusion_focus[order(fusion_focus$CHR, fusion_focus$P0),]
fusion_focus$Location<-paste0('chr',fusion_focus$CHR,':',fusion_focus$P0,'-',fusion_focus$P1)   
fusion_focus<-fusion_focus[,c('Location','SNP-weight Set','ID','TWAS.Z','TWAS.P','FOCUS_twas_z','FOCUS_in_cred_set','FOCUS_pip','FOCUS_region'),with=F]

write.csv(fusion_focus,'/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/FOCUS/MDD_TWAS_sig_FOCUS_results.csv', row.names=F, quote=F)
write.csv(focus,'/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/FOCUS/MDD_TWAS_FOCUS_results.csv', row.names=F, quote=F)

Combine FOCUS results with novelty table

library(data.table)

focus<-fread('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/FOCUS/MDD_TWAS_FOCUS_results.csv')
fusion<-fread('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/Conditional/MDD_TWAS_Conditional_table_novelty.csv')

fusion$tissue<-tolower(fusion$PANEL)
fusion_focus<-merge(fusion, focus[,c('mol_name','tissue','twas_z','pip','in_cred_set','region'),with=F], by.x=c('tissue','ID'), by.y=c('tissue','mol_name'), all.x=T)

fusion_focus<-fusion_focus[,c('WGT','CHR','P0','P1','PANEL_clean','ID','TWAS.Z','TWAS.P','Novel','Colocalised','in_cred_set','pip','region'),with=F]
names(fusion_focus)<-c('WGT','CHR','P0','P1','SNP-weight Set','ID','TWAS.Z','TWAS.P','Novel','Colocalised','FOCUS_in_cred_set','FOCUS_pip','FOCUS_region')
fusion_focus<-fusion_focus[order(fusion_focus$CHR, fusion_focus$P0),]
fusion_focus$Location<-paste0('chr',fusion_focus$CHR,':',fusion_focus$P0,'-',fusion_focus$P1)   

# Remove the MHC region
fusion_focus_noMHC<-fusion_focus[!(fusion_focus$CHR == 6 & fusion_focus$P1 > 26e6 & fusion_focus$P0 < 34e6),]

# Subset those which are high confidence
fusion_focus_highConf<-fusion_focus_noMHC[fusion_focus_noMHC$Colocalised == T & fusion_focus_noMHC$FOCUS_pip > 0.5 & fusion_focus_noMHC$TWAS.P < 3.685926e-08,]

# One high confidence gene is novel (TMEM106B)

# Subset transcriptom-wide significant that colocalised and pip > 0.5
fusion_focus_TWsig<-fusion_focus_noMHC[fusion_focus_noMHC$TWAS.P < 1.368572e-06,]

sum(duplicated(fusion_focus_TWsig$WGT))
fusion_focus_TWsig[duplicated(fusion_focus_TWsig$WGT),]

# Subset transcriptom-wide significant that colocalised and pip > 0.5
fusion_focus_TWsig<-fusion_focus_noMHC[fusion_focus_noMHC$Colocalised == T & fusion_focus_noMHC$FOCUS_pip > 0.5 & fusion_focus_noMHC$TWAS.P < 1.368572e-06,]

write.csv(fusion_focus,'/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/FOCUS/MDD_TWAS_sig_FOCUS_results.csv', row.names=F, quote=F)
write.csv(focus,'/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/FOCUS/MDD_TWAS_FOCUS_results.csv', row.names=F, quote=F)

Show FOCUS results

FOCUS MDD Results
FALSE CHR P0 P1 ID PANEL TWAS.Z PIP In Credible Set Region
3849 1 6052660 6161240 KCNAB2 ntr.blood.rnaarr 1.50e+00 0.000481 0 1:4380973-1:5913893
3847 1 5922871 6052422 NPHP4 brain_caudate_basal_ganglia 1.98e+00 0.001050 0 1:4380973-1:5913893
3862 1 6264900 6265840 RP1-120G22.11 adrenal_gland 3.46e-01 0.000176 0 1:4380973-1:5913893
3846 1 5922871 6052422 NPHP4 adrenal_gland 2.03e+00 0.001140 0 1:4380973-1:5913893
3851 1 6241329 6269449 RPL22 brain_hypothalamus -1.35e+00 0.000403 0 1:4380973-1:5913893
3856 1 5922871 6052422 NPHP4 whole_blood -1.24e+00 0.000349 0 1:4380973-1:5913893
3865 1 5922871 6052422 NPHP4 brain_cortex 6.06e-02 0.000170 0 1:4380973-1:5913893
3854 1 5922871 6052422 NPHP4 brain_anterior_cingulate_cortex_ba24 1.34e+00 0.000375 0 1:4380973-1:5913893
3866 1 5922871 6052422 NPHP4 brain_amygdala -1.38e-01 0.000168 0 1:4380973-1:5913893
12173 1 5922871 6052533 NPHP4 psychencode -6.40e-01 0.000210 0 1:4380973-1:5913893
3860 1 5922871 6052422 NPHP4 pituitary -3.20e-01 0.000202 0 1:4380973-1:5913893
3852 1 5922871 6052422 NPHP4 brain_cerebellum -1.30e+00 0.000394 0 1:4380973-1:5913893
3863 1 6051526 6161253 KCNAB2 yfs.blood.rnaarr 3.83e-01 0.000175 0 1:4380973-1:5913893
13147 1 4000673 4015322 RP13-614K11.1 psychencode 1.33e+00 0.000378 0 1:4380973-1:5913893
3857 1 5922871 6052422 NPHP4 brain_nucleus_accumbens_basal_ganglia 1.23e+00 0.000330 0 1:4380973-1:5913893
11695 1 6051526 6161253 KCNAB2 psychencode -3.31e-01 0.000173 0 1:4380973-1:5913893
12865 1 4714792 4852594 AJAP1 psychencode -1.27e+00 0.000370 0 1:4380973-1:5913893
11991 1 6281253 6296032 ICMT psychencode -5.21e-01 0.000193 0 1:4380973-1:5913893
3848 1 6281360 6296032 ICMT brain_cortex 1.57e+00 0.000517 0 1:4380973-1:5913893
3858 1 6052357 6161253 KCNAB2 cmc.brain.rnaseq_splicing -1.09e+00 0.000290 0 1:4380973-1:5913893
3855 1 6266189 6281252 RNF207 whole_blood -1.31e+00 0.000363 0 1:4380973-1:5913893
3850 1 6281360 6296032 ICMT whole_blood -1.39e+00 0.000419 0 1:4380973-1:5913893
3861 1 5922869 6052533 NPHP4 cmc.brain.rnaseq -4.78e-01 0.000182 0 1:4380973-1:5913893
3864 1 6281360 6296032 ICMT thyroid -1.46e-02 0.000171 0 1:4380973-1:5913893
3845 1 5922871 6052422 NPHP4 brain_frontal_cortex_ba9 3.48e+00 0.053800 0 1:4380973-1:5913893
3853 1 5922871 6052422 NPHP4 brain_hippocampus -1.33e+00 0.000378 0 1:4380973-1:5913893
3859 1 6266189 6281252 RNF207 pituitary -7.15e-01 0.000211 0 1:4380973-1:5913893
12414 1 6307406 6321035 GPR153 psychencode -1.09e+00 0.000342 0 1:4380973-1:5913893
3880 1 7831329 7841492 VAMP3 yfs.blood.rnaarr -1.52e+00 0.000711 0 1:7247335-1:9365199
3884 1 7831329 7841492 VAMP3 whole_blood -1.33e+00 0.000593 0 1:7247335-1:9365199
3886 1 7831329 7841492 VAMP3 thyroid -1.10e+00 0.000484 0 1:7247335-1:9365199
3877 1 7831329 7841492 VAMP3 pituitary -2.07e+00 0.001930 0 1:7247335-1:9365199
3892 1 7831329 7841492 VAMP3 brain_caudate_basal_ganglia -1.11e+00 0.000380 0 1:7247335-1:9365199
3897 1 7831329 7841492 VAMP3 adrenal_gland -7.78e-01 0.000324 0 1:7247335-1:9365199
11654 1 7831329 7841492 VAMP3 psychencode -4.87e-01 0.000322 0 1:7247335-1:9365199
3874 1 7831310 7841492 VAMP3 ntr.blood.rnaarr -2.44e+00 0.004210 0 1:7247335-1:9365199
3904 1 8014351 8045565 PARK7 yfs.blood.rnaarr 6.29e-01 0.000301 0 1:7247335-1:9365199
3913 1 7836443 7836835 RP3-467L1.6 adrenal_gland 3.29e-01 0.000275 0 1:7247335-1:9365199
3870 1 8484705 8494898 RP5-1115A15.1 whole_blood -4.81e+00 0.078100 0 1:7247335-1:9365199
3875 1 8412457 8877702 RERE brain_hippocampus -4.08e+00 0.004030 0 1:7247335-1:9365199
3920 1 8014351 8045565 PARK7 brain_frontal_cortex_ba9 7.27e-02 0.000256 0 1:7247335-1:9365199
3909 1 8021713 8045342 PARK7 cmc.brain.rnaseq -2.85e-01 0.000286 0 1:7247335-1:9365199
3881 1 8384389 8404227 SLC45A1 cmc.brain.rnaseq 3.37e+00 0.000683 0 1:7247335-1:9365199
3902 1 9095166 9148537 SLC2A5 brain_nucleus_accumbens_basal_ganglia -4.35e-01 0.000309 0 1:7247335-1:9365199
3890 1 9732484 9747613 RP11-558F24.4 thyroid -1.35e+00 0.000410 0 1:7247335-1:9365199
13458 1 7836443 7836835 RP3-467L1.6 psychencode 1.35e+00 0.000439 0 1:7247335-1:9365199
3939 1 8021713 8045342 PARK7 cmc.brain.rnaseq_splicing 2.49e-01 0.000234 0 1:7247335-1:9365199
3894 1 7844380 7905237 PER3 whole_blood 8.25e-01 0.000339 0 1:7247335-1:9365199
3916 1 7844380 7905237 PER3 yfs.blood.rnaarr 4.42e-01 0.000259 0 1:7247335-1:9365199
3891 1 8014351 8045565 PARK7 whole_blood 8.93e-01 0.000395 0 1:7247335-1:9365199
3922 1 7753184 7754904 RP11-338N10.1 brain_frontal_cortex_ba9 9.37e-03 0.000251 0 1:7247335-1:9365199
11655 1 7844380 7905237 PER3 psychencode -6.51e-01 0.000253 0 1:7247335-1:9365199
13121 1 8938894 8939953 ENO1-AS1 psychencode 1.14e+00 0.000477 0 1:7247335-1:9365199
3903 1 7844381 7905241 PER3 ntr.blood.rnaarr 1.41e+00 0.000305 0 1:7247335-1:9365199
3872 1 7977438 8000995 TNFRSF9 ntr.blood.rnaarr -3.99e+00 0.013000 0 1:7247335-1:9365199
3935 1 9352940 9429591 SPSB1 ntr.blood.rnaarr 4.59e-01 0.000236 0 1:7247335-1:9365199
12450 1 8377886 8404227 SLC45A1 psychencode 3.05e+00 0.000421 0 1:7247335-1:9365199
3888 1 7844713 7905237 PER3 cmc.brain.rnaseq_splicing 9.87e-01 0.000447 0 1:7247335-1:9365199
3914 1 8939624 8939953 ENO1-AS1 brain_substantia_nigra -1.93e+00 0.000273 0 1:7247335-1:9365199
3915 1 8921061 8939308 ENO1 yfs.blood.rnaarr 2.12e+00 0.000265 0 1:7247335-1:9365199
3929 1 9294834 9331396 H6PD thyroid 2.78e-01 0.000240 0 1:7247335-1:9365199
3930 1 9352939 9429591 SPSB1 yfs.blood.rnaarr -1.22e-01 0.000238 0 1:7247335-1:9365199
3907 1 8021862 8045565 PARK7 ntr.blood.rnaarr 5.10e-01 0.000292 0 1:7247335-1:9365199
12703 1 9160364 9189229 GPR157 psychencode -8.66e-02 0.000235 0 1:7247335-1:9365199
3885 1 8967452 8967803 RP3-477M7.5 whole_blood -3.04e+00 0.000486 0 1:7247335-1:9365199
3932 1 9599541 9645237 SLC25A33 brain_cerebellum 2.58e-01 0.000238 0 1:7247335-1:9365199
3867 1 8412457 8877702 RERE yfs.blood.rnaarr -5.20e+00 0.504000 1 1:7247335-1:9365199
3895 1 8064464 8086368 ERRFI1 whole_blood -1.21e+00 0.000329 0 1:7247335-1:9365199
3901 1 7906752 7913572 UTS2 brain_cerebellar_hemisphere -7.07e-01 0.000311 0 1:7247335-1:9365199
3927 1 7906752 7913572 UTS2 brain_cerebellum -3.72e-01 0.000242 0 1:7247335-1:9365199
3924 1 9095166 9148537 SLC2A5 brain_hypothalamus 1.16e+00 0.000244 0 1:7247335-1:9365199
12294 1 9095166 9148537 SLC2A5 psychencode -1.96e-02 0.000258 0 1:7247335-1:9365199
3878 1 8014351 8045565 PARK7 thyroid 1.81e+00 0.001380 0 1:7247335-1:9365199
3882 1 8086798 8182762 RP11-431K24.1 brain_anterior_cingulate_cortex_ba24 1.38e+00 0.000602 0 1:7247335-1:9365199
3942 1 9294833 9331396 H6PD ntr.blood.rnaarr 5.22e-02 0.000232 0 1:7247335-1:9365199
12840 1 9648932 9674935 TMEM201 psychencode 6.85e-01 0.000273 0 1:7247335-1:9365199
3908 1 9005892 9035146 CA6 ntr.blood.rnaarr -1.56e-01 0.000290 0 1:7247335-1:9365199
3910 1 9711790 9789083 PIK3CD brain_anterior_cingulate_cortex_ba24 -6.80e-01 0.000279 0 1:7247335-1:9365199
3898 1 8086798 8182762 RP11-431K24.1 brain_nucleus_accumbens_basal_ganglia 7.41e-01 0.000323 0 1:7247335-1:9365199
3917 1 9294834 9331396 H6PD brain_cerebellar_hemisphere 6.10e-01 0.000258 0 1:7247335-1:9365199
3918 1 9711790 9789083 PIK3CD brain_amygdala -8.74e-01 0.000257 0 1:7247335-1:9365199
3937 1 7906752 7913572 UTS2 whole_blood 1.27e-01 0.000235 0 1:7247335-1:9365199
3879 1 8412457 8877702 RERE brain_nucleus_accumbens_basal_ganglia -3.63e+00 0.001160 0 1:7247335-1:9365199
3899 1 8086798 8182762 RP11-431K24.1 brain_putamen_basal_ganglia 5.53e-01 0.000320 0 1:7247335-1:9365199
3906 1 8412463 8877699 RERE cmc.brain.rnaseq_splicing 2.49e+00 0.000293 0 1:7247335-1:9365199
3873 1 8412457 8877702 RERE brain_caudate_basal_ganglia -4.15e+00 0.005380 0 1:7247335-1:9365199
3934 1 9294834 9331396 H6PD brain_hippocampus -1.11e+00 0.000236 0 1:7247335-1:9365199
3896 1 8086798 8182762 RP11-431K24.1 brain_hippocampus 1.59e+00 0.000329 0 1:7247335-1:9365199
3900 1 8086798 8182762 RP11-431K24.1 brain_cortex 1.38e+00 0.000313 0 1:7247335-1:9365199
3923 1 7753184 7754904 RP11-338N10.1 brain_cerebellum -3.28e-02 0.000251 0 1:7247335-1:9365199
3887 1 8086798 8182762 RP11-431K24.1 brain_caudate_basal_ganglia 1.04e+00 0.000480 0 1:7247335-1:9365199
3951 1 7907672 7913123 UTS2 ntr.blood.rnaarr 3.28e-01 0.000230 0 1:7247335-1:9365199
3869 1 8412457 8877702 RERE whole_blood -4.89e+00 0.110000 1 1:7247335-1:9365199
3889 1 8412457 8877702 RERE brain_putamen_basal_ganglia -2.18e+00 0.000410 0 1:7247335-1:9365199
3928 1 7753184 7754904 RP11-338N10.1 brain_anterior_cingulate_cortex_ba24 -7.57e-02 0.000241 0 1:7247335-1:9365199
3936 1 7753184 7754904 RP11-338N10.1 brain_nucleus_accumbens_basal_ganglia -2.00e-01 0.000235 0 1:7247335-1:9365199
3876 1 8412457 8877702 RERE thyroid -3.98e+00 0.002630 0 1:7247335-1:9365199
3938 1 7753184 7754904 RP11-338N10.1 brain_putamen_basal_ganglia -2.31e-01 0.000234 0 1:7247335-1:9365199
3868 1 8484705 8494898 RP5-1115A15.1 thyroid -5.07e+00 0.269000 1 1:7247335-1:9365199
3893 1 9095166 9148537 SLC2A5 brain_caudate_basal_ganglia -8.14e-01 0.000349 0 1:7247335-1:9365199
3933 1 6845383 7829766 CAMTA1 cmc.brain.rnaseq 1.00e-01 0.000237 0 1:7247335-1:9365199
12295 1 8412457 8877702 RERE psychencode -4.04e+00 0.003610 0 1:7247335-1:9365199
3940 1 7753184 7754904 RP11-338N10.1 brain_caudate_basal_ganglia -2.24e-01 0.000233 0 1:7247335-1:9365199
3926 1 6845384 7829766 CAMTA1 yfs.blood.rnaarr 4.78e-02 0.000243 0 1:7247335-1:9365199
3883 1 8086798 8182762 RP11-431K24.1 brain_frontal_cortex_ba9 1.39e+00 0.000594 0 1:7247335-1:9365199
3941 1 7753184 7754904 RP11-338N10.1 brain_hypothalamus -4.65e-01 0.000232 0 1:7247335-1:9365199
11709 1 8921061 8939308 ENO1 psychencode 1.18e+00 0.000238 0 1:7247335-1:9365199
3949 1 9294834 9331396 H6PD brain_cerebellum 3.19e-01 0.000231 0 1:7247335-1:9365199
11653 1 9294834 9331396 H6PD psychencode 4.51e-01 0.000245 0 1:7247335-1:9365199
3871 1 8412463 8877755 RERE ntr.blood.rnaarr -4.47e+00 0.017200 0 1:7247335-1:9365199
3919 1 9294834 9331396 H6PD brain_putamen_basal_ganglia -1.55e+00 0.000257 0 1:7247335-1:9365199
3943 1 7753184 7754904 RP11-338N10.1 brain_amygdala -2.84e-01 0.000232 0 1:7247335-1:9365199
3945 1 7753184 7754904 RP11-338N10.1 brain_hippocampus -3.72e-01 0.000232 0 1:7247335-1:9365199
3946 1 7753184 7754904 RP11-338N10.1 brain_cortex -2.94e-01 0.000232 0 1:7247335-1:9365199
3931 1 9294862 9331394 H6PD cmc.brain.rnaseq 2.67e-01 0.000238 0 1:7247335-1:9365199
3947 1 7753184 7754904 RP11-338N10.1 brain_cerebellar_hemisphere -4.18e-01 0.000231 0 1:7247335-1:9365199
3905 1 6845383 7829766 CAMTA1 cmc.brain.rnaseq_splicing 4.40e-01 0.000296 0 1:7247335-1:9365199
3948 1 7753184 7754904 RP11-338N10.1 thyroid -3.81e-01 0.000231 0 1:7247335-1:9365199
3921 1 9352939 9429591 SPSB1 whole_blood -3.60e-02 0.000256 0 1:7247335-1:9365199
3925 1 9294834 9331396 H6PD whole_blood 4.46e-01 0.000243 0 1:7247335-1:9365199
3950 1 7753184 7754904 RP11-338N10.1 pituitary -3.03e-01 0.000231 0 1:7247335-1:9365199
13468 1 7753184 7754904 RP11-338N10.1 psychencode -1.30e-01 0.000239 0 1:7247335-1:9365199
3912 1 7760764 7761030 RP11-338N10.3 brain_hippocampus 1.16e-01 0.000275 0 1:7247335-1:9365199
3911 1 9095166 9148537 SLC2A5 yfs.blood.rnaarr 3.47e-01 0.000276 0 1:7247335-1:9365199
3944 1 9095166 9148537 SLC2A5 whole_blood -2.56e-01 0.000232 0 1:7247335-1:9365199
3987 1 24292936 24306953 SRSF10 cmc.brain.rnaseq_splicing 1.10e+00 0.000632 0 1:23086883-1:23919553
3973 1 23695490 23698332 C1orf213 brain_cerebellum 2.33e+00 0.001270 0 1:23086883-1:23919553
4018 1 24285599 24289952 PNRC2 brain_substantia_nigra -1.12e+00 0.000323 0 1:23086883-1:23919553
3979 1 24285599 24289952 PNRC2 brain_caudate_basal_ganglia 1.44e+00 0.000988 0 1:23086883-1:23919553
4003 1 24285599 24289952 PNRC2 thyroid 1.62e+00 0.000421 0 1:23086883-1:23919553
4002 1 24128366 24165110 HMGCL cmc.brain.rnaseq -1.88e+00 0.000421 0 1:23086883-1:23919553
3978 1 24018269 24022915 RPL11 brain_nucleus_accumbens_basal_ganglia 2.22e+00 0.001020 0 1:23086883-1:23919553
13256 1 23695490 23698332 C1orf213 psychencode 2.69e+00 0.002000 0 1:23086883-1:23919553
4016 1 24285599 24289952 PNRC2 brain_putamen_basal_ganglia -1.03e+00 0.000334 0 1:23086883-1:23919553
4024 1 24128366 24165110 HMGCL cmc.brain.rnaseq_splicing -9.14e-01 0.000292 0 1:23086883-1:23919553
4006 1 24128375 24165110 HMGCL brain_cortex 1.35e+00 0.000408 0 1:23086883-1:23919553
3965 1 24128375 24165110 HMGCL brain_cerebellar_hemisphere -2.59e+00 0.001860 0 1:23086883-1:23919553
4019 1 24285599 24289952 PNRC2 brain_cerebellar_hemisphere -9.74e-01 0.000322 0 1:23086883-1:23919553
3976 1 22778344 22857650 ZBTB40 pituitary -3.03e-01 0.001070 0 1:23086883-1:23919553
3998 1 23707554 23751261 TCEA3 cmc.brain.rnaseq 1.54e+00 0.000441 0 1:23086883-1:23919553
4034 1 24285599 24289952 PNRC2 brain_amygdala -4.26e-02 0.000250 0 1:23086883-1:23919553
3972 1 24069645 24088549 TCEB3 adrenal_gland -2.36e+00 0.001280 0 1:23086883-1:23919553
3999 1 23707554 23751233 TCEA3 brain_cortex 1.74e+00 0.000438 0 1:23086883-1:23919553
4041 1 24285599 24289952 PNRC2 brain_nucleus_accumbens_basal_ganglia 3.62e-02 0.000242 0 1:23086883-1:23919553
4000 1 23707554 23751233 TCEA3 brain_cerebellar_hemisphere 1.63e+00 0.000431 0 1:23086883-1:23919553
4035 1 22778344 22857650 ZBTB40 brain_putamen_basal_ganglia -4.55e-02 0.000250 0 1:23086883-1:23919553
4043 1 24285599 24289952 PNRC2 pituitary 2.08e-01 0.000241 0 1:23086883-1:23919553
3985 1 24069645 24088549 TCEB3 whole_blood 1.95e+00 0.000639 0 1:23086883-1:23919553
4015 1 22890057 22930087 EPHA8 brain_putamen_basal_ganglia -9.91e-01 0.000355 0 1:23086883-1:23919553
3974 1 24285599 24289952 PNRC2 brain_frontal_cortex_ba9 1.56e+00 0.001160 0 1:23086883-1:23919553
4030 1 24291294 24307417 SRSF10 brain_substantia_nigra 6.40e-01 0.000272 0 1:23086883-1:23919553
12846 1 24285599 24289952 PNRC2 psychencode 5.28e-01 0.000242 0 1:23086883-1:23919553
3986 1 23516993 23521222 HTR1D brain_cortex 2.28e+00 0.000632 0 1:23086883-1:23919553
4001 1 23707554 23751233 TCEA3 brain_nucleus_accumbens_basal_ganglia 1.64e+00 0.000428 0 1:23086883-1:23919553
4027 1 24171567 24194784 FUCA1 yfs.blood.rnaarr 8.30e-01 0.000284 0 1:23086883-1:23919553
3984 1 24285599 24289952 PNRC2 adrenal_gland 1.61e+00 0.000720 0 1:23086883-1:23919553
3997 1 23707554 23751233 TCEA3 brain_hypothalamus 1.79e+00 0.000461 0 1:23086883-1:23919553
4009 1 23707554 23751233 TCEA3 yfs.blood.rnaarr 1.40e+00 0.000396 0 1:23086883-1:23919553
4013 1 23707554 23751233 TCEA3 brain_substantia_nigra 5.54e-01 0.000380 0 1:23086883-1:23919553
3966 1 22979255 22988031 C1QB yfs.blood.rnaarr 2.82e+00 0.001810 0 1:23086883-1:23919553
4020 1 23707554 23751261 TCEA3 cmc.brain.rnaseq_splicing -8.31e-01 0.000313 0 1:23086883-1:23919553
4011 1 24285599 24289952 PNRC2 brain_hippocampus -1.34e+00 0.000382 0 1:23086883-1:23919553
3954 1 23410516 23504301 LUZP1 brain_cortex 3.93e+00 0.017900 1 1:23086883-1:23919553
4029 1 23907985 23967058 MDS2 thyroid 2.07e-01 0.000274 0 1:23086883-1:23919553
3988 1 23707554 23751233 TCEA3 brain_cerebellum 2.26e+00 0.000632 0 1:23086883-1:23919553
4007 1 24104895 24114722 PITHD1 thyroid 9.08e-01 0.000403 0 1:23086883-1:23919553
4021 1 23707554 23751233 TCEA3 brain_amygdala 1.17e+00 0.000311 0 1:23086883-1:23919553
3990 1 23707554 23751261 TCEA3 cmc.brain.rnaseq_splicing -1.82e+00 0.000566 0 1:23086883-1:23919553
3980 1 23345940 23410184 KDM1A cmc.brain.rnaseq_splicing -3.29e-01 0.000984 0 1:23086883-1:23919553
3952 1 22890057 22930087 EPHA8 brain_cortex -4.84e+00 0.763000 1 1:23086883-1:23919553
3989 1 24285599 24289952 PNRC2 whole_blood -1.52e+00 0.000616 0 1:23086883-1:23919553
12626 1 22962999 22966101 C1QA psychencode -3.53e+00 0.011300 0 1:23086883-1:23919553
3953 1 23037332 23241818 EPHB2 brain_nucleus_accumbens_basal_ganglia -4.23e+00 0.059500 1 1:23086883-1:23919553
3996 1 24285599 24289952 PNRC2 brain_cerebellum -1.04e+00 0.000468 0 1:23086883-1:23919553
3964 1 23037332 23241818 EPHB2 thyroid 3.17e+00 0.002880 0 1:23086883-1:23919553
4023 1 23707554 23751233 TCEA3 brain_caudate_basal_ganglia 9.56e-01 0.000293 0 1:23086883-1:23919553
3981 1 24285599 24289952 PNRC2 brain_anterior_cingulate_cortex_ba24 1.41e+00 0.000971 0 1:23086883-1:23919553
3969 1 23037332 23241818 EPHB2 adrenal_gland 2.85e+00 0.001480 0 1:23086883-1:23919553
3971 1 23037332 23241818 EPHB2 brain_caudate_basal_ganglia -2.72e+00 0.001310 0 1:23086883-1:23919553
3992 1 24285599 24289952 PNRC2 yfs.blood.rnaarr 1.03e+00 0.000530 0 1:23086883-1:23919553
4039 1 23707554 23751233 TCEA3 adrenal_gland -1.79e-01 0.000243 0 1:23086883-1:23919553
3993 1 23707554 23751233 TCEA3 brain_frontal_cortex_ba9 1.86e+00 0.000528 0 1:23086883-1:23919553
3977 1 23037332 23241818 EPHB2 brain_putamen_basal_ganglia -2.61e+00 0.001040 0 1:23086883-1:23919553
3958 1 23410516 23504301 LUZP1 brain_frontal_cortex_ba9 3.65e+00 0.007410 0 1:23086883-1:23919553
3975 1 24128375 24165110 HMGCL brain_anterior_cingulate_cortex_ba24 -2.24e+00 0.001120 0 1:23086883-1:23919553
12193 1 23037332 23241818 EPHB2 psychencode -3.80e+00 0.012000 1 1:23086883-1:23919553
3962 1 23243175 23247993 RP1-74M1.3 thyroid 1.17e-01 0.003050 0 1:23086883-1:23919553
12941 1 23707554 23751233 TCEA3 psychencode 1.77e+00 0.000473 0 1:23086883-1:23919553
4040 1 23695490 23698332 C1orf213 pituitary 2.07e-01 0.000242 0 1:23086883-1:23919553
3968 1 23410516 23504301 LUZP1 yfs.blood.rnaarr 2.91e+00 0.001580 0 1:23086883-1:23919553
3956 1 23755056 23811061 ASAP3 brain_hippocampus 3.84e+00 0.014200 1 1:23086883-1:23919553
3963 1 23243175 23247993 RP1-74M1.3 brain_caudate_basal_ganglia -3.02e+00 0.003010 0 1:23086883-1:23919553
3967 1 23243175 23247993 RP1-74M1.3 adrenal_gland 2.89e+00 0.001670 0 1:23086883-1:23919553
13514 1 23243175 23247993 RP1-74M1.3 psychencode 3.70e-01 0.000267 0 1:23086883-1:23919553
4010 1 23410516 23504301 LUZP1 whole_blood 8.61e-01 0.000390 0 1:23086883-1:23919553
4022 1 23410516 23504301 LUZP1 thyroid 1.25e+00 0.000295 0 1:23086883-1:23919553
4005 1 23695490 23698332 C1orf213 brain_cerebellar_hemisphere 1.04e+00 0.000411 0 1:23086883-1:23919553
12590 1 23410516 23504301 LUZP1 psychencode 3.68e+00 0.011300 0 1:23086883-1:23919553
3955 1 23417682 23504301 LUZP1 cmc.brain.rnaseq 3.88e+00 0.015600 1 1:23086883-1:23919553
3959 1 23516993 23521222 HTR1D brain_putamen_basal_ganglia 3.61e+00 0.006730 0 1:23086883-1:23919553
3970 1 23755056 23811061 ASAP3 adrenal_gland 2.46e+00 0.001310 0 1:23086883-1:23919553
4004 1 23884409 23886285 ID3 yfs.blood.rnaarr 1.13e+00 0.000418 0 1:23086883-1:23919553
3960 1 23516993 23521222 HTR1D brain_nucleus_accumbens_basal_ganglia 3.53e+00 0.005630 0 1:23086883-1:23919553
12684 1 24171567 24194784 FUCA1 psychencode -2.08e+00 0.000757 0 1:23086883-1:23919553
3995 1 24104895 24114722 PITHD1 brain_hippocampus 1.78e+00 0.000480 0 1:23086883-1:23919553
3991 1 23755056 23811061 ASAP3 brain_cortex 2.10e+00 0.000548 0 1:23086883-1:23919553
11701 1 22890057 22930087 EPHA8 psychencode -3.96e+00 0.019400 1 1:23086883-1:23919553
4008 1 23516993 23521222 HTR1D brain_frontal_cortex_ba9 1.21e+00 0.000397 0 1:23086883-1:23919553
4028 1 23755056 23811061 ASAP3 thyroid 7.00e-01 0.000274 0 1:23086883-1:23919553
4014 1 23695490 23698332 C1orf213 brain_substantia_nigra 4.22e-01 0.000372 0 1:23086883-1:23919553
3982 1 24291294 24307417 SRSF10 thyroid -1.32e+00 0.000861 0 1:23086883-1:23919553
11594 1 23345941 23410182 KDM1A psychencode -1.88e+00 0.001030 0 1:23086883-1:23919553
13181 1 24086872 24104777 RP5-886K2.3 psychencode -1.57e+00 0.000487 0 1:23086883-1:23919553
4017 1 23695490 23698332 C1orf213 thyroid 1.18e+00 0.000325 0 1:23086883-1:23919553
4033 1 23907985 23967058 MDS2 brain_hippocampus 1.04e-01 0.000251 0 1:23086883-1:23919553
4042 1 24098101 24104777 RP5-886K2.3 whole_blood 2.08e-01 0.000241 0 1:23086883-1:23919553
4025 1 22962999 22966101 C1QA whole_blood 1.41e+00 0.000288 0 1:23086883-1:23919553
3994 1 23707554 23751233 TCEA3 brain_hippocampus 1.92e+00 0.000500 0 1:23086883-1:23919553
12686 1 23516993 23521222 HTR1D psychencode 3.87e+00 0.015300 1 1:23086883-1:23919553
3983 1 23516993 23521222 HTR1D brain_caudate_basal_ganglia 2.68e+00 0.000756 0 1:23086883-1:23919553
3957 1 23518387 23521222 HTR1D cmc.brain.rnaseq 3.70e+00 0.008300 0 1:23086883-1:23919553
13407 1 23607802 23613245 RP5-1057J7.6 psychencode 2.36e+00 0.001170 0 1:23086883-1:23919553
4036 1 23685941 23694879 ZNF436 adrenal_gland 2.52e-01 0.000243 0 1:23086883-1:23919553
4037 1 23685941 23694879 ZNF436 pituitary 1.85e-01 0.000243 0 1:23086883-1:23919553
4026 1 23695490 23698332 C1orf213 brain_caudate_basal_ganglia 3.54e-01 0.000287 0 1:23086883-1:23919553
4038 1 23685941 23694879 ZNF436 thyroid 2.00e-01 0.000243 0 1:23086883-1:23919553
11752 1 23755056 23811061 ASAP3 psychencode 1.48e+00 0.000340 0 1:23086883-1:23919553
4032 1 23695490 23698332 C1orf213 adrenal_gland 5.65e-01 0.000252 0 1:23086883-1:23919553
3961 1 23695490 23698332 C1orf213 brain_anterior_cingulate_cortex_ba24 3.30e+00 0.004350 0 1:23086883-1:23919553
4031 1 23907985 23967058 MDS2 brain_caudate_basal_ganglia 5.88e-01 0.000262 0 1:23086883-1:23919553
4012 1 23832922 23857712 E2F2 thyroid 1.50e+00 0.000380 0 1:23086883-1:23919553
4113 1 35899091 36023014 KIAA0319L thyroid -2.57e-01 0.000234 0 1:34799758-1:37549183
4058 1 36179476 36184790 C1orf216 cmc.brain.rnaseq_splicing -2.89e+00 0.011700 0 1:34799758-1:37549183
12296 1 36179476 36185073 C1orf216 psychencode 1.78e+00 0.000294 0 1:34799758-1:37549183
4096 1 38000049 38019945 SNIP1 cmc.brain.rnaseq_splicing 1.04e+00 0.000330 0 1:34799758-1:37549183
4102 1 36690016 36770957 THRAP3 cmc.brain.rnaseq_splicing 1.46e-02 0.000295 0 1:34799758-1:37549183
4047 1 36771988 36790484 SH3D21 thyroid 3.92e+00 0.055800 1 1:34799758-1:37549183
4090 1 33979609 34631443 CSMD2 brain_nucleus_accumbens_basal_ganglia -1.59e+00 0.000455 0 1:34799758-1:37549183
12131 1 36067185 36107445 PSMB2 psychencode -1.13e+00 0.000439 0 1:34799758-1:37549183
4051 1 36787632 36789216 EVA1B thyroid 3.86e+00 0.033400 1 1:34799758-1:37549183
12297 1 35899091 36023551 KIAA0319L psychencode -1.21e-01 0.000245 0 1:34799758-1:37549183
4065 1 36771988 36790484 SH3D21 brain_cortex 3.06e+00 0.007750 0 1:34799758-1:37549183
4079 1 36881428 36916086 OSCP1 brain_cortex 2.11e+00 0.001170 0 1:34799758-1:37549183
4094 1 36067185 36107445 PSMB2 yfs.blood.rnaarr -4.14e-01 0.000352 0 1:34799758-1:37549183
11777 1 36185819 36235568 CLSPN psychencode 1.13e+00 0.000713 0 1:34799758-1:37549183
4116 1 36023074 36032875 NCDN brain_anterior_cingulate_cortex_ba24 5.55e-02 0.000201 0 1:34799758-1:37549183
11776 1 36549676 36553876 TEKT2 psychencode 7.14e-01 0.000215 0 1:34799758-1:37549183
11996 1 36881428 36916086 OSCP1 psychencode 1.31e-01 0.000215 0 1:34799758-1:37549183
4054 1 36789335 36794822 RP11-268J15.5 brain_frontal_cortex_ba9 -3.67e+00 0.024100 1 1:34799758-1:37549183
4048 1 36883506 36916086 OSCP1 cmc.brain.rnaseq_splicing -3.08e+00 0.038300 1 1:34799758-1:37549183
4068 1 36035414 36043330 RP4-728D4.2 whole_blood -2.95e+00 0.005180 0 1:34799758-1:37549183
4104 1 37958176 37980375 MEAF6 thyroid -8.69e-01 0.000281 0 1:34799758-1:37549183
4050 1 36805225 36851497 STK40 brain_hippocampus 3.46e+00 0.034100 1 1:34799758-1:37549183
4069 1 36883506 36916086 OSCP1 cmc.brain.rnaseq_splicing 2.45e+00 0.005030 0 1:34799758-1:37549183
4119 1 37920480 37940012 RP11-422J8.1 adrenal_gland 9.87e-02 0.000197 0 1:34799758-1:37549183
4097 1 38022520 38032416 DNALI1 brain_frontal_cortex_ba9 8.93e-01 0.000314 0 1:34799758-1:37549183
4101 1 36772707 36790484 SH3D21 cmc.brain.rnaseq_splicing 1.25e+00 0.000303 0 1:34799758-1:37549183
4086 1 35899091 36023551 KIAA0319L yfs.blood.rnaarr 1.96e+00 0.000667 0 1:34799758-1:37549183
4077 1 36771988 36790484 SH3D21 brain_frontal_cortex_ba9 2.45e+00 0.001220 0 1:34799758-1:37549183
4098 1 37261128 37499730 GRIK3 brain_amygdala -1.74e+00 0.000313 0 1:34799758-1:37549183
4107 1 36038971 36060929 TFAP2E brain_frontal_cortex_ba9 -1.03e+00 0.000258 0 1:34799758-1:37549183
4120 1 37920480 37940012 RP11-422J8.1 thyroid -1.95e-01 0.000196 0 1:34799758-1:37549183
4115 1 33979609 34631443 CSMD2 brain_cerebellar_hemisphere 2.61e-01 0.000202 0 1:34799758-1:37549183
4109 1 37955560 37980420 MEAF6 cmc.brain.rnaseq 6.65e-01 0.000249 0 1:34799758-1:37549183
12069 1 33979609 34631443 CSMD2 psychencode -1.84e+00 0.000514 0 1:34799758-1:37549183
4085 1 35220648 35224113 GJB5 thyroid 1.35e+00 0.000744 0 1:34799758-1:37549183
4099 1 35899090 36023037 KIAA0319L cmc.brain.rnaseq_splicing -1.21e+00 0.000310 0 1:34799758-1:37549183
4046 1 36273773 36323491 AGO4 thyroid 2.92e+00 0.061600 1 1:34799758-1:37549183
13221 1 35447136 35450954 ZMYM6NB psychencode -2.76e+00 0.005270 0 1:34799758-1:37549183
4055 1 36789335 36794822 RP11-268J15.5 adrenal_gland -3.62e+00 0.022500 1 1:34799758-1:37549183
11994 1 36038971 36060929 TFAP2E psychencode 3.00e+00 0.095800 1 1:34799758-1:37549183
4088 1 36883506 36916086 OSCP1 cmc.brain.rnaseq -1.60e+00 0.000624 0 1:34799758-1:37549183
11775 1 36335409 36395211 AGO1 psychencode -1.16e+00 0.001610 0 1:34799758-1:37549183
4081 1 36881428 36916086 OSCP1 brain_cerebellum 2.02e+00 0.000945 0 1:34799758-1:37549183
4078 1 36881428 36916086 OSCP1 pituitary 2.11e+00 0.001200 0 1:34799758-1:37549183
4111 1 36690016 36770957 THRAP3 cmc.brain.rnaseq_splicing 6.61e-01 0.000248 0 1:34799758-1:37549183
12483 1 37958176 37980375 MEAF6 psychencode -5.47e-02 0.000194 0 1:34799758-1:37549183
4089 1 36067185 36107445 PSMB2 thyroid -8.23e-01 0.000464 0 1:34799758-1:37549183
4084 1 36690017 36770958 THRAP3 brain_cerebellum -2.07e-01 0.000792 0 1:34799758-1:37549183
4056 1 36789335 36794822 RP11-268J15.5 pituitary -3.52e+00 0.019400 1 1:34799758-1:37549183
4082 1 36881428 36916086 OSCP1 brain_nucleus_accumbens_basal_ganglia 2.00e+00 0.000865 0 1:34799758-1:37549183
4057 1 36789335 36794822 RP11-268J15.5 brain_cerebellar_hemisphere -3.44e+00 0.017600 0 1:34799758-1:37549183
12481 1 37261128 37499730 GRIK3 psychencode 1.97e+00 0.000386 0 1:34799758-1:37549183
4070 1 36602173 36615098 TRAPPC3 thyroid 3.33e+00 0.004890 0 1:34799758-1:37549183
12712 1 36856839 36863493 LSM10 psychencode -7.70e-01 0.000234 0 1:34799758-1:37549183
4080 1 36771988 36790484 SH3D21 brain_anterior_cingulate_cortex_ba24 2.47e+00 0.000961 0 1:34799758-1:37549183
4053 1 35178338 35325417 SMIM12 brain_caudate_basal_ganglia 3.38e+00 0.029900 1 1:34799758-1:37549183
4044 1 36884051 36884179 SNORA63 brain_nucleus_accumbens_basal_ganglia 4.98e+00 0.734000 1 1:34799758-1:37549183
13486 1 36395321 36395716 RP4-789D17.5 psychencode -9.41e-01 0.000205 0 1:34799758-1:37549183
4064 1 36560837 36590821 COL8A2 thyroid 3.39e+00 0.007790 0 1:34799758-1:37549183
4059 1 36789335 36794822 RP11-268J15.5 brain_anterior_cingulate_cortex_ba24 -3.32e+00 0.010300 0 1:34799758-1:37549183
4108 1 35178338 35325417 SMIM12 whole_blood -7.86e-01 0.000252 0 1:34799758-1:37549183
4091 1 36859030 36863493 LSM10 cmc.brain.rnaseq -8.44e-01 0.000433 0 1:34799758-1:37549183
4114 1 37920480 37940012 RP11-422J8.1 brain_putamen_basal_ganglia 2.45e-01 0.000204 0 1:34799758-1:37549183
4067 1 36789335 36794822 RP11-268J15.5 brain_nucleus_accumbens_basal_ganglia -2.85e+00 0.006830 0 1:34799758-1:37549183
4100 1 36549676 36553876 TEKT2 thyroid 1.01e+00 0.000305 0 1:34799758-1:37549183
4103 1 35220648 35224113 GJB5 pituitary 9.27e-01 0.000288 0 1:34799758-1:37549183
11995 1 36789335 36794822 RP11-268J15.5 psychencode -4.23e+00 0.183000 1 1:34799758-1:37549183
4073 1 36787632 36789216 EVA1B brain_cortex 3.08e+00 0.002660 0 1:34799758-1:37549183
4045 1 36884051 36884179 SNORA63 brain_anterior_cingulate_cortex_ba24 -3.00e+00 0.196000 1 1:34799758-1:37549183
4075 1 36787632 36789216 EVA1B whole_blood 2.40e+00 0.001800 0 1:34799758-1:37549183
4112 1 35178338 35325417 SMIM12 thyroid 5.15e-01 0.000236 0 1:34799758-1:37549183
4095 1 36789335 36794822 RP11-268J15.5 brain_hypothalamus -1.44e+00 0.000335 0 1:34799758-1:37549183
4117 1 36602173 36615098 TRAPPC3 yfs.blood.rnaarr 2.69e-01 0.000201 0 1:34799758-1:37549183
4110 1 36787632 36789216 EVA1B adrenal_gland 8.80e-01 0.000249 0 1:34799758-1:37549183
4049 1 36789335 36794822 RP11-268J15.5 brain_cortex -3.77e+00 0.036100 1 1:34799758-1:37549183
4071 1 36789335 36794822 RP11-268J15.5 brain_cerebellum -2.96e+00 0.003840 0 1:34799758-1:37549183
4061 1 35525387 35581460 ZMYM1 thyroid -3.15e+00 0.009890 0 1:34799758-1:37549183
4072 1 36789335 36794822 RP11-268J15.5 thyroid -2.79e+00 0.003240 0 1:34799758-1:37549183
4083 1 37261128 37499730 GRIK3 brain_frontal_cortex_ba9 2.70e+00 0.000863 0 1:34799758-1:37549183
11662 1 36602173 36615098 TRAPPC3 psychencode 2.80e+00 0.001030 0 1:34799758-1:37549183
4092 1 35246790 35251970 GJB3 thyroid 7.72e-01 0.000365 0 1:34799758-1:37549183
4093 1 35525387 35581460 ZMYM1 yfs.blood.rnaarr -1.44e+00 0.000360 0 1:34799758-1:37549183
12333 1 35734568 35887659 ZMYM4 psychencode -1.79e-01 0.000209 0 1:34799758-1:37549183
4062 1 36881428 36916086 OSCP1 brain_frontal_cortex_ba9 2.31e+00 0.008770 0 1:34799758-1:37549183
12480 1 35178338 35325417 SMIM12 psychencode -1.64e-01 0.000205 0 1:34799758-1:37549183
4074 1 36789335 36794822 RP11-268J15.5 brain_hippocampus -2.94e+00 0.002630 0 1:34799758-1:37549183
4060 1 36621180 36646450 MAP7D1 yfs.blood.rnaarr -3.63e+00 0.010000 0 1:34799758-1:37549183
4066 1 36621180 36646450 MAP7D1 whole_blood -3.45e+00 0.007510 0 1:34799758-1:37549183
4052 1 36789335 36794822 RP11-268J15.5 whole_blood -3.63e+00 0.031300 1 1:34799758-1:37549183
4063 1 36621801 36646448 MAP7D1 ntr.blood.rnaarr -3.49e+00 0.008300 0 1:34799758-1:37549183
4106 1 35316295 35317156 RP5-997D16.2 brain_nucleus_accumbens_basal_ganglia -9.26e-01 0.000265 0 1:34799758-1:37549183
11997 1 36921319 36930038 MRPS15 psychencode -9.66e-01 0.000241 0 1:34799758-1:37549183
4076 1 36881428 36916086 OSCP1 brain_caudate_basal_ganglia 2.15e+00 0.001250 0 1:34799758-1:37549183
4087 1 36881428 36916086 OSCP1 thyroid 1.40e+00 0.000656 0 1:34799758-1:37549183
4105 1 38000050 38019903 SNIP1 yfs.blood.rnaarr -8.65e-01 0.000271 0 1:34799758-1:37549183
12880 1 35525387 35581460 ZMYM1 psychencode -1.62e+00 0.000449 0 1:34799758-1:37549183
11992 1 35641979 35658749 SFPQ psychencode 3.91e-02 0.000228 0 1:34799758-1:37549183
4118 1 38000050 38019903 SNIP1 whole_blood -6.26e-02 0.000201 0 1:34799758-1:37549183
12486 1 38022520 38032458 DNALI1 psychencode -3.46e-01 0.000262 0 1:37549183-1:38731847
4209 1 37920480 37940012 RP11-422J8.1 whole_blood 5.83e-02 0.000204 0 1:37549183-1:38731847
4194 1 38000050 38019903 SNIP1 whole_blood 2.73e-01 0.000234 0 1:37549183-1:38731847
4157 1 37261128 37499730 GRIK3 brain_frontal_cortex_ba9 1.66e+00 0.000735 0 1:37549183-1:38731847
4166 1 38326764 38412729 INPP5B brain_putamen_basal_ganglia -1.50e+00 0.000491 0 1:37549183-1:38731847
4183 1 37920480 37940012 RP11-422J8.1 brain_cortex -8.01e-01 0.000268 0 1:37549183-1:38731847
4210 1 37920480 37940012 RP11-422J8.1 brain_putamen_basal_ganglia -8.35e-05 0.000203 0 1:37549183-1:38731847
4150 1 38000049 38019945 SNIP1 cmc.brain.rnaseq_splicing -1.66e+00 0.000878 0 1:37549183-1:38731847
4122 1 37958176 37980375 MEAF6 whole_blood -3.29e+00 0.029200 1 1:37549183-1:38731847
4174 1 38326368 38412729 INPP5B cmc.brain.rnaseq -1.13e+00 0.000372 0 1:37549183-1:38731847
4154 1 38422646 38456593 SF3A3 ntr.blood.rnaarr -1.61e+00 0.000772 0 1:37549183-1:38731847
4159 1 38474930 38490496 UTP11L yfs.blood.rnaarr 1.54e+00 0.000711 0 1:37549183-1:38731847
4211 1 37920480 37940012 RP11-422J8.1 brain_caudate_basal_ganglia 8.26e-02 0.000202 0 1:37549183-1:38731847
4135 1 38032417 38061536 GNL2 yfs.blood.rnaarr -2.42e+00 0.002710 0 1:37549183-1:38731847
4158 1 37920479 37940044 LOC728431 cmc.brain.rnaseq -1.70e+00 0.000723 0 1:37549183-1:38731847
4156 1 38181645 38230824 EPHA10 cmc.brain.rnaseq 1.77e+00 0.000743 0 1:37549183-1:38731847
4131 1 37958176 37980375 MEAF6 thyroid -2.74e+00 0.006420 0 1:37549183-1:38731847
4212 1 37920480 37940012 RP11-422J8.1 brain_anterior_cingulate_cortex_ba24 -1.92e-01 0.000201 0 1:37549183-1:38731847
4213 1 37920480 37940012 RP11-422J8.1 brain_hypothalamus -2.48e-01 0.000201 0 1:37549183-1:38731847
4198 1 38462442 38471278 FHL3 adrenal_gland 2.48e-01 0.000223 0 1:37549183-1:38731847
4214 1 37920480 37940012 RP11-422J8.1 brain_cerebellar_hemisphere 5.56e-02 0.000201 0 1:37549183-1:38731847
4215 1 37920480 37940012 RP11-422J8.1 thyroid -1.76e-01 0.000200 0 1:37549183-1:38731847
4167 1 38422647 38456593 SF3A3 adrenal_gland 1.04e+00 0.000455 0 1:37549183-1:38731847
13151 1 37920480 37940012 LINC01137 psychencode -5.92e-01 0.000224 0 1:37549183-1:38731847
4189 1 38422647 38456593 SF3A3 brain_caudate_basal_ganglia 4.06e-01 0.000238 0 1:37549183-1:38731847
12741 1 38179552 38230805 EPHA10 psychencode 1.84e+00 0.000822 0 1:37549183-1:38731847
4204 1 38147242 38157914 C1orf109 whole_blood 3.92e-01 0.000212 0 1:37549183-1:38731847
4124 1 38326764 38412729 INPP5B brain_frontal_cortex_ba9 -3.19e+00 0.019100 1 1:37549183-1:38731847
4172 1 38474930 38490496 UTP11L thyroid 1.00e+00 0.000405 0 1:37549183-1:38731847
4191 1 38422647 38456593 SF3A3 whole_blood 1.24e-01 0.000236 0 1:37549183-1:38731847
4173 1 38474930 38490496 UTP11L whole_blood 7.12e-01 0.000373 0 1:37549183-1:38731847
4196 1 38474930 38490496 UTP11L adrenal_gland -8.38e-02 0.000232 0 1:37549183-1:38731847
12203 1 38032417 38061536 GNL2 psychencode 2.49e+00 0.003250 0 1:37549183-1:38731847
4133 1 37958176 37980375 MEAF6 adrenal_gland -2.63e+00 0.004380 0 1:37549183-1:38731847
4136 1 38022520 38032416 DNALI1 brain_cerebellum 2.32e+00 0.002330 0 1:37549183-1:38731847
4193 1 38422647 38456593 SF3A3 yfs.blood.rnaarr 1.12e-01 0.000236 0 1:37549183-1:38731847
4178 1 37920480 37940012 RP11-422J8.1 brain_cerebellum -8.84e-01 0.000291 0 1:37549183-1:38731847
4125 1 38326764 38412729 INPP5B brain_cerebellar_hemisphere -3.06e+00 0.013800 1 1:37549183-1:38731847
4202 1 38422647 38456593 SF3A3 pituitary -2.67e-02 0.000213 0 1:37549183-1:38731847
12750 1 38474930 38490496 UTP11L psychencode -1.17e+00 0.000360 0 1:37549183-1:38731847
4148 1 38022520 38032416 DNALI1 brain_cerebellar_hemisphere 1.88e+00 0.001050 0 1:37549183-1:38731847
4185 1 38147242 38157914 C1orf109 adrenal_gland -7.81e-01 0.000250 0 1:37549183-1:38731847
4164 1 38181645 38230824 EPHA10 cmc.brain.rnaseq_splicing 1.52e+00 0.000520 0 1:37549183-1:38731847
4142 1 37920480 37940012 RP11-422J8.1 brain_hippocampus -2.13e+00 0.001730 0 1:37549183-1:38731847
4153 1 37920480 37940012 RP11-422J8.1 adrenal_gland -1.76e+00 0.000777 0 1:37549183-1:38731847
4180 1 38462438 38471332 FHL3 ntr.blood.rnaarr 3.76e-01 0.000281 0 1:37549183-1:38731847
4137 1 37955560 37980420 MEAF6 cmc.brain.rnaseq -2.21e+00 0.002090 0 1:37549183-1:38731847
4216 1 38181645 38230824 EPHA10 cmc.brain.rnaseq_splicing 6.60e-02 0.000193 0 1:37549183-1:38731847
4199 1 38326368 38412729 INPP5B cmc.brain.rnaseq_splicing 1.38e-01 0.000220 0 1:37549183-1:38731847
4175 1 37261128 37499730 GRIK3 brain_amygdala 1.10e+00 0.000327 0 1:37549183-1:38731847
4129 1 38326764 38412729 INPP5B adrenal_gland -3.01e+00 0.011300 0 1:37549183-1:38731847
4160 1 38259474 38266809 MANEAL pituitary -1.73e+00 0.000676 0 1:37549183-1:38731847
4207 1 37920480 37940012 RP11-422J8.1 brain_frontal_cortex_ba9 -3.25e-01 0.000209 0 1:37549183-1:38731847
4151 1 38022520 38032416 DNALI1 thyroid 1.56e+00 0.000824 0 1:37549183-1:38731847
4176 1 38022519 38032458 DNALI1 cmc.brain.rnaseq -8.27e-01 0.000319 0 1:37549183-1:38731847
4163 1 38022520 38032416 DNALI1 adrenal_gland -1.26e+00 0.000549 0 1:37549183-1:38731847
4205 1 38422647 38456593 SF3A3 thyroid -8.65e-02 0.000211 0 1:37549183-1:38731847
4179 1 37920480 37940012 RP11-422J8.1 brain_amygdala -8.86e-01 0.000286 0 1:37549183-1:38731847
12484 1 37958176 37980375 MEAF6 psychencode -3.14e+00 0.019100 1 1:37549183-1:38731847
4171 1 38022520 38032416 DNALI1 pituitary 1.24e+00 0.000436 0 1:37549183-1:38731847
4188 1 38022520 38032416 DNALI1 brain_anterior_cingulate_cortex_ba24 1.75e-01 0.000239 0 1:37549183-1:38731847
4168 1 37920480 37940012 RP11-422J8.1 brain_substantia_nigra -1.38e+00 0.000450 0 1:37549183-1:38731847
12746 1 38422647 38456593 SF3A3 psychencode -1.48e+00 0.000562 0 1:37549183-1:38731847
4195 1 38022520 38032416 DNALI1 brain_cortex 8.89e-02 0.000233 0 1:37549183-1:38731847
4123 1 38326764 38412729 INPP5B pituitary -3.22e+00 0.020900 1 1:37549183-1:38731847
4192 1 37920480 37940012 RP11-422J8.1 brain_nucleus_accumbens_basal_ganglia -6.20e-01 0.000236 0 1:37549183-1:38731847
4152 1 38032459 38061536 GNL2 thyroid 1.80e+00 0.000806 0 1:37549183-1:38731847
4145 1 38326764 38412729 INPP5B brain_cerebellum -2.06e+00 0.001190 0 1:37549183-1:38731847
4169 1 38179552 38230805 EPHA10 brain_cerebellum -1.30e+00 0.000448 0 1:37549183-1:38731847
12485 1 38000050 38019903 SNIP1 psychencode 1.92e+00 0.001170 0 1:37549183-1:38731847
4161 1 38259773 38267278 MANEAL cmc.brain.rnaseq -8.69e-01 0.000645 0 1:37549183-1:38731847
4203 1 37920480 37940012 RP11-422J8.1 pituitary 2.34e-01 0.000213 0 1:37549183-1:38731847
4121 1 38268616 38273857 YRDC yfs.blood.rnaarr 3.55e+00 0.061300 1 1:37549183-1:38731847
4165 1 38462442 38471278 FHL3 pituitary -1.42e+00 0.000512 0 1:37549183-1:38731847
4140 1 38268616 38272648 YRDC brain_putamen_basal_ganglia 2.08e+00 0.001960 0 1:37549183-1:38731847
4144 1 38000050 38019903 SNIP1 yfs.blood.rnaarr -2.02e+00 0.001380 0 1:37549183-1:38731847
12903 1 38272651 38275126 C1orf122 psychencode 9.89e-01 0.000313 0 1:37549183-1:38731847
4146 1 38275239 38325292 MTF1 brain_cortex 2.01e+00 0.001150 0 1:37549183-1:38731847
4184 1 38179552 38230805 EPHA10 thyroid 7.33e-01 0.000263 0 1:37549183-1:38731847
4201 1 38275239 38325292 MTF1 brain_cerebellum 1.63e-01 0.000217 0 1:37549183-1:38731847
4206 1 38147242 38157914 C1orf109 brain_cortex -5.24e-01 0.000209 0 1:37549183-1:38731847
12482 1 37261128 37499730 GRIK3 psychencode 4.11e-01 0.000209 0 1:37549183-1:38731847
4130 1 38326764 38412729 INPP5B brain_caudate_basal_ganglia -2.96e+00 0.009710 0 1:37549183-1:38731847
4132 1 38326764 38412729 INPP5B brain_anterior_cingulate_cortex_ba24 -2.78e+00 0.005780 0 1:37549183-1:38731847
4182 1 38462442 38471278 FHL3 yfs.blood.rnaarr 5.70e-01 0.000274 0 1:37549183-1:38731847
4147 1 38326369 38412729 INPP5B yfs.blood.rnaarr -1.94e+00 0.001070 0 1:37549183-1:38731847
11998 1 38147242 38157914 C1orf109 psychencode -6.14e-01 0.000218 0 1:37549183-1:38731847
4186 1 38032459 38061536 GNL2 brain_cerebellum 2.40e-01 0.000249 0 1:37549183-1:38731847
12934 1 38326369 38412729 INPP5B psychencode -1.98e+00 0.001130 0 1:37549183-1:38731847
4155 1 38325435 38412729 INPP5B ntr.blood.rnaarr -1.75e+00 0.000766 0 1:37549183-1:38731847
4208 1 38022520 38032416 DNALI1 brain_frontal_cortex_ba9 2.55e-01 0.000205 0 1:37549183-1:38731847
4200 1 38147241 38156192 C1orf109 cmc.brain.rnaseq_splicing 3.89e-01 0.000218 0 1:37549183-1:38731847
4181 1 38147242 38157914 C1orf109 thyroid -9.44e-01 0.000276 0 1:37549183-1:38731847
4126 1 38326764 38412729 INPP5B brain_cortex -3.07e+00 0.013000 1 1:37549183-1:38731847
4149 1 38326368 38412729 INPP5B cmc.brain.rnaseq_splicing 1.73e+00 0.000944 0 1:37549183-1:38731847
4197 1 38422651 38455761 SF3A3 cmc.brain.rnaseq -2.79e-01 0.000224 0 1:37549183-1:38731847
4134 1 38326764 38412729 INPP5B thyroid -2.50e+00 0.003040 0 1:37549183-1:38731847
4143 1 38147249 38157921 C1orf109 ntr.blood.rnaarr 2.19e+00 0.001580 0 1:37549183-1:38731847
4138 1 38326764 38412729 INPP5B brain_nucleus_accumbens_basal_ganglia -2.32e+00 0.002080 0 1:37549183-1:38731847
4187 1 38462442 38471278 FHL3 thyroid 4.10e-01 0.000247 0 1:37549183-1:38731847
4139 1 38326764 38412729 INPP5B whole_blood -2.26e+00 0.002040 0 1:37549183-1:38731847
12744 1 38462442 38471278 FHL3 psychencode 4.32e-01 0.000237 0 1:37549183-1:38731847
4162 1 38000049 38019945 SNIP1 cmc.brain.rnaseq_splicing 1.49e+00 0.000562 0 1:37549183-1:38731847
4141 1 38179552 38230805 EPHA10 brain_cortex 2.11e+00 0.001910 0 1:37549183-1:38731847
4127 1 38326764 38412729 INPP5B brain_hippocampus -3.03e+00 0.012100 1 1:37549183-1:38731847
4190 1 38462442 38471278 FHL3 whole_blood 3.79e-01 0.000237 0 1:37549183-1:38731847
4170 1 38147241 38156192 C1orf109 cmc.brain.rnaseq_splicing 1.28e+00 0.000444 0 1:37549183-1:38731847
4128 1 37958178 37980658 MEAF6 ntr.blood.rnaarr -2.99e+00 0.012100 0 1:37549183-1:38731847
4177 1 38147241 38156192 C1orf109 cmc.brain.rnaseq -1.06e+00 0.000295 0 1:37549183-1:38731847
4326 1 40235195 40237020 OXCT2 brain_caudate_basal_ganglia -5.72e-01 0.000254 0 1:40200894-1:41975327
4378 1 39980628 39982162 OXCT2P1 thyroid -3.48e-01 0.000192 0 1:40200894-1:41975327
12001 1 40361098 40367928 MYCL psychencode -4.31e-01 0.000214 0 1:40200894-1:41975327
4304 1 40157854 40229586 PPIE whole_blood 8.29e-01 0.000288 0 1:40200894-1:41975327
4262 1 40420802 40435638 MFSD2A brain_nucleus_accumbens_basal_ganglia -1.36e+00 0.000447 0 1:40200894-1:41975327
4339 1 40420802 40435638 MFSD2A thyroid -7.58e-01 0.000234 0 1:40200894-1:41975327
4300 1 40505720 40538320 CAP1 ntr.blood.rnaarr -1.01e+00 0.000292 0 1:40200894-1:41975327
4319 1 40538381 40563142 PPT1 cmc.brain.rnaseq -7.95e-01 0.000268 0 1:40200894-1:41975327
4374 1 42007740 42010258 RP11-486B10.4 thyroid -3.70e-01 0.000201 0 1:40200894-1:41975327
4310 1 40157854 40229586 PPIE brain_putamen_basal_ganglia 7.42e-01 0.000277 0 1:40200894-1:41975327
4311 1 40157854 40229586 PPIE thyroid 7.54e-01 0.000276 0 1:40200894-1:41975327
4312 1 40157854 40229586 PPIE brain_caudate_basal_ganglia 7.65e-01 0.000276 0 1:40200894-1:41975327
4330 1 40222854 40254533 BMP8B brain_cerebellar_hemisphere 7.38e-01 0.000249 0 1:40200894-1:41975327
4295 1 40306723 40349183 TRIT1 yfs.blood.rnaarr -8.43e-01 0.000310 0 1:40200894-1:41975327
4313 1 40157854 40229586 PPIE brain_cortex 7.44e-01 0.000276 0 1:40200894-1:41975327
4315 1 40157854 40229586 PPIE brain_hypothalamus 7.60e-01 0.000273 0 1:40200894-1:41975327
4243 1 39957318 39991607 BMP8A brain_caudate_basal_ganglia 1.88e+00 0.001120 0 1:40200894-1:41975327
13194 1 40958829 40974333 RP11-656D10.3 psychencode -2.32e-01 0.000204 0 1:40200894-1:41975327
4379 1 41156052 41157679 RP4-739H11.4 brain_nucleus_accumbens_basal_ganglia -1.45e-01 0.000191 0 1:40200894-1:41975327
4316 1 40157854 40229586 PPIE adrenal_gland 6.42e-01 0.000272 0 1:40200894-1:41975327
4222 1 39957318 39991607 BMP8A adrenal_gland 2.78e+00 0.006880 1 1:40200894-1:41975327
4318 1 40157854 40229586 PPIE brain_nucleus_accumbens_basal_ganglia 6.99e-01 0.000271 0 1:40200894-1:41975327
12170 1 40538379 40563375 PPT1 psychencode -1.67e+00 0.000668 0 1:40200894-1:41975327
4307 1 40306723 40349183 TRIT1 brain_nucleus_accumbens_basal_ganglia -7.69e-01 0.000285 0 1:40200894-1:41975327
4322 1 40505905 40538321 CAP1 thyroid 3.99e-01 0.000257 0 1:40200894-1:41975327
4338 1 40505905 40538321 CAP1 brain_cortex 7.64e-01 0.000234 0 1:40200894-1:41975327
4240 1 39957318 39991607 BMP8A brain_cerebellar_hemisphere 1.91e+00 0.001410 0 1:40200894-1:41975327
4267 1 40974413 40982228 EXO5 adrenal_gland 1.29e+00 0.000405 0 1:40200894-1:41975327
12169 1 40505905 40538321 CAP1 psychencode 1.23e+00 0.000369 0 1:40200894-1:41975327
4232 1 39987952 40011859 RP11-69E11.4 brain_substantia_nigra 2.46e+00 0.002920 0 1:40200894-1:41975327
4238 1 39987952 40011859 RP11-69E11.4 brain_putamen_basal_ganglia 2.14e+00 0.001570 0 1:40200894-1:41975327
4324 1 40974413 40982228 EXO5 whole_blood -8.36e-01 0.000256 0 1:40200894-1:41975327
4381 1 41708045 41750533 RP11-399E6.1 brain_putamen_basal_ganglia 2.58e-01 0.000188 0 1:40200894-1:41975327
4292 1 39987952 40011859 RP11-69E11.4 brain_hippocampus 9.21e-01 0.000318 0 1:40200894-1:41975327
4336 1 40144320 40157361 HPCAL4 pituitary -7.19e-01 0.000239 0 1:40200894-1:41975327
4367 1 40958829 40974333 RP11-656D10.3 brain_anterior_cingulate_cortex_ba24 -2.32e-01 0.000206 0 1:40200894-1:41975327
12714 1 39987952 40011859 RP11-69E11.4 psychencode -2.69e-01 0.000189 0 1:40200894-1:41975327
4369 1 39997510 40024379 PPIEL thyroid -4.45e-01 0.000205 0 1:40200894-1:41975327
4289 1 40942887 40962015 ZFP69 brain_substantia_nigra -9.18e-01 0.000338 0 1:40200894-1:41975327
4331 1 40974413 40982228 EXO5 pituitary 7.27e-01 0.000247 0 1:40200894-1:41975327
13496 1 41156052 41157738 NFYC-AS1 psychencode 7.52e-01 0.000246 0 1:40200894-1:41975327
4305 1 40942887 40962015 ZFP69 brain_cerebellar_hemisphere 5.56e-01 0.000287 0 1:40200894-1:41975327
4352 1 40235195 40237020 OXCT2 brain_anterior_cingulate_cortex_ba24 -3.96e-01 0.000217 0 1:40200894-1:41975327
12919 1 40235195 40237020 OXCT2 psychencode -1.93e+00 0.000999 0 1:40200894-1:41975327
12000 1 40222854 40254533 BMP8B psychencode 2.01e+00 0.001180 0 1:40200894-1:41975327
4227 1 40506254 40538321 CAP1 cmc.brain.rnaseq_splicing 2.52e+00 0.003860 0 1:40200894-1:41975327
4323 1 40157854 40229586 PPIE brain_cerebellar_hemisphere 5.51e-01 0.000257 0 1:40200894-1:41975327
4282 1 40506254 40538321 CAP1 cmc.brain.rnaseq_splicing 1.11e+00 0.000351 0 1:40200894-1:41975327
4328 1 40157854 40229586 PPIE brain_anterior_cingulate_cortex_ba24 5.04e-01 0.000253 0 1:40200894-1:41975327
4360 1 40958829 40974333 RP11-656D10.3 brain_cortex -2.12e-02 0.000212 0 1:40200894-1:41975327
4260 1 40254648 40255843 RP1-118J21.25 thyroid -1.46e+00 0.000557 0 1:40200894-1:41975327
4306 1 40942887 40962015 ZFP69 thyroid 4.26e-01 0.000287 0 1:40200894-1:41975327
4296 1 40026488 40042462 PABPC4 adrenal_gland 1.10e+00 0.000309 0 1:40200894-1:41975327
4263 1 40722099 40723639 RP1-39G22.7 brain_cortex 1.38e+00 0.000439 0 1:40200894-1:41975327
4246 1 40306705 40349177 TRIT1 cmc.brain.rnaseq_splicing 1.85e+00 0.000950 0 1:40200894-1:41975327
4229 1 39980628 39982162 OXCT2P1 brain_hippocampus -2.49e+00 0.003390 0 1:40200894-1:41975327
4353 1 40958829 40974333 RP11-656D10.3 brain_caudate_basal_ganglia -5.15e-01 0.000217 0 1:40200894-1:41975327
4348 1 40722099 40723639 RP1-39G22.7 brain_frontal_cortex_ba9 4.44e-01 0.000221 0 1:40200894-1:41975327
4252 1 40306705 40349177 TRIT1 cmc.brain.rnaseq -1.73e+00 0.000786 0 1:40200894-1:41975327
12147 1 39546988 39952849 MACF1 psychencode -2.81e+00 0.007550 1 1:40200894-1:41975327
4247 1 40538379 40563375 PPT1 yfs.blood.rnaarr -1.82e+00 0.000924 0 1:40200894-1:41975327
4302 1 40026488 40042462 PABPC4 yfs.blood.rnaarr 9.13e-01 0.000291 0 1:40200894-1:41975327
4341 1 40026488 40042462 PABPC4 whole_blood 1.16e-01 0.000228 0 1:40200894-1:41975327
4274 1 40235195 40237020 OXCT2 brain_cerebellar_hemisphere -9.86e-01 0.000378 0 1:40200894-1:41975327
4219 1 40997232 41013841 ZNF684 cmc.brain.rnaseq_splicing 2.92e+00 0.011300 1 1:40200894-1:41975327
12487 1 40089825 40105617 HEYL psychencode 4.85e-01 0.000207 0 1:40200894-1:41975327
4237 1 40306722 40349178 TRIT1 ntr.blood.rnaarr -2.19e+00 0.001800 0 1:40200894-1:41975327
13385 1 40722099 40723639 RP1-39G22.7 psychencode 1.52e+00 0.000522 0 1:40200894-1:41975327
4309 1 40942887 40962015 ZFP69 brain_nucleus_accumbens_basal_ganglia -9.44e-01 0.000278 0 1:40200894-1:41975327
4239 1 39980628 39982162 OXCT2P1 brain_cerebellar_hemisphere 2.11e+00 0.001430 0 1:40200894-1:41975327
4321 1 40306723 40349183 TRIT1 brain_putamen_basal_ganglia -6.27e-01 0.000262 0 1:40200894-1:41975327
4380 1 40144320 40157361 HPCAL4 brain_caudate_basal_ganglia 2.39e-01 0.000189 0 1:40200894-1:41975327
4320 1 40942887 40962015 ZFP69 pituitary 4.82e-01 0.000266 0 1:40200894-1:41975327
4345 1 40974413 40982228 EXO5 brain_nucleus_accumbens_basal_ganglia -6.19e-01 0.000222 0 1:40200894-1:41975327
11763 1 40026488 40042462 PABPC4 psychencode -3.18e+00 0.020800 1 1:40200894-1:41975327
4327 1 40942887 40962015 ZFP69 brain_anterior_cingulate_cortex_ba24 -7.93e-01 0.000253 0 1:40200894-1:41975327
4332 1 40157854 40229586 PPIE yfs.blood.rnaarr 6.11e-01 0.000245 0 1:40200894-1:41975327
4373 1 41156052 41157679 RP4-739H11.4 brain_hypothalamus -3.26e-01 0.000202 0 1:40200894-1:41975327
4228 1 40029287 40035327 PABPC4 ntr.blood.rnaarr 2.56e+00 0.003750 0 1:40200894-1:41975327
4256 1 39957318 39991607 BMP8A brain_cortex 1.63e+00 0.000723 0 1:40200894-1:41975327
4280 1 41157320 41237275 NFYC yfs.blood.rnaarr -1.11e+00 0.000362 0 1:40200894-1:41975327
4357 1 41708045 41750533 RP11-399E6.1 pituitary 5.73e-01 0.000213 0 1:40200894-1:41975327
4382 1 40974413 40982228 EXO5 brain_anterior_cingulate_cortex_ba24 -2.40e-01 0.000187 0 1:40200894-1:41975327
11684 1 41157320 41237275 NFYC psychencode 8.62e-01 0.000287 0 1:40200894-1:41975327
4221 1 40306723 40349183 TRIT1 pituitary -2.75e+00 0.008190 1 1:40200894-1:41975327
4276 1 40538379 40563375 PPT1 thyroid -1.24e+00 0.000371 0 1:40200894-1:41975327
4355 1 40958829 40974333 RP11-656D10.3 pituitary -1.15e-01 0.000216 0 1:40200894-1:41975327
4329 1 40942887 40962015 ZFP69 brain_hippocampus 3.69e-02 0.000250 0 1:40200894-1:41975327
4218 1 39549838 39952810 MACF1 cmc.brain.rnaseq_splicing -3.03e+00 0.013600 1 1:40200894-1:41975327
4259 1 39987952 40011859 RP11-69E11.4 adrenal_gland -1.40e+00 0.000584 0 1:40200894-1:41975327
4384 1 41708045 41750533 RP11-399E6.1 adrenal_gland 2.14e-01 0.000185 0 1:40200894-1:41975327
4257 1 41157739 41237275 NFYC thyroid -1.55e+00 0.000591 0 1:40200894-1:41975327
4265 1 41157739 41237275 NFYC brain_cerebellum 1.24e+00 0.000414 0 1:40200894-1:41975327
4351 1 41157739 41237275 NFYC brain_anterior_cingulate_cortex_ba24 5.47e-01 0.000219 0 1:40200894-1:41975327
4372 1 40958829 40974333 RP11-656D10.3 adrenal_gland -3.78e-01 0.000204 0 1:40200894-1:41975327
4233 1 40982667 40982846 RP11-656D10.6 thyroid -2.38e+00 0.002910 0 1:40200894-1:41975327
4363 1 40958829 40974333 RP11-656D10.3 brain_amygdala -1.71e-01 0.000209 0 1:40200894-1:41975327
11999 1 40144320 40157361 HPCAL4 psychencode 3.26e-02 0.000185 0 1:40200894-1:41975327
4266 1 39980628 39982162 OXCT2P1 brain_caudate_basal_ganglia 1.33e+00 0.000410 0 1:40200894-1:41975327
12004 1 41086351 41131329 RIMS3 psychencode -2.41e+00 0.002810 0 1:40200894-1:41975327
4231 1 39987952 40011859 RP11-69E11.4 brain_hypothalamus 2.48e+00 0.003150 0 1:40200894-1:41975327
4224 1 41249684 41306124 KCNQ4 thyroid -2.64e+00 0.005180 1 1:40200894-1:41975327
4343 1 40942887 40962015 ZFP69 brain_cortex 1.00e-01 0.000227 0 1:40200894-1:41975327
4230 1 40144644 40157089 HPCAL4 cmc.brain.rnaseq_splicing 2.48e+00 0.003260 0 1:40200894-1:41975327
4388 1 41708045 41750533 RP11-399E6.1 thyroid -1.93e-02 0.000182 0 1:40200894-1:41975327
4223 1 41326729 41328018 CITED4 brain_putamen_basal_ganglia 2.67e+00 0.005310 1 1:40200894-1:41975327
13170 1 41708045 41750533 RP11-399E6.1 psychencode 6.96e-02 0.000182 0 1:40200894-1:41975327
4347 1 40942887 40962015 ZFP69 brain_caudate_basal_ganglia -6.93e-02 0.000221 0 1:40200894-1:41975327
4303 1 40157853 40229585 PPIE ntr.blood.rnaarr 8.22e-01 0.000289 0 1:40200894-1:41975327
4349 1 40942887 40962015 ZFP69 adrenal_gland 1.01e-01 0.000221 0 1:40200894-1:41975327
4235 1 40306723 40349183 TRIT1 whole_blood -2.19e+00 0.001830 0 1:40200894-1:41975327
4370 1 40942887 40962015 ZFP69 brain_putamen_basal_ganglia -2.85e-01 0.000205 0 1:40200894-1:41975327
11740 1 40157854 40229586 PPIE psychencode 7.77e-01 0.000282 0 1:40200894-1:41975327
12825 1 40942887 40962015 ZFP69 psychencode 1.05e-01 0.000304 0 1:40200894-1:41975327
4337 1 39875175 39882158 KIAA0754 ntr.blood.rnaarr 6.08e-01 0.000237 0 1:40200894-1:41975327
4273 1 40157854 40229586 PPIE brain_hippocampus 1.11e+00 0.000381 0 1:40200894-1:41975327
4298 1 40958829 40974333 RP11-656D10.3 brain_hippocampus 9.08e-01 0.000305 0 1:40200894-1:41975327
4333 1 40306723 40349183 TRIT1 brain_cerebellum 5.95e-01 0.000243 0 1:40200894-1:41975327
4334 1 40306723 40349183 TRIT1 brain_cerebellar_hemisphere 3.41e-01 0.000241 0 1:40200894-1:41975327
4361 1 40723779 40759856 ZMPSTE24 yfs.blood.rnaarr -5.63e-01 0.000210 0 1:40200894-1:41975327
4249 1 40538381 40563375 PPT1 ntr.blood.rnaarr -1.80e+00 0.000870 0 1:40200894-1:41975327
4325 1 40958829 40974333 RP11-656D10.3 brain_putamen_basal_ganglia -6.37e-01 0.000255 0 1:40200894-1:41975327
4254 1 40306723 40349183 TRIT1 adrenal_gland -1.73e+00 0.000780 0 1:40200894-1:41975327
4255 1 40997232 41013841 ZNF684 cmc.brain.rnaseq_splicing -1.73e+00 0.000736 0 1:40200894-1:41975327
4383 1 41827594 41849262 FOXO6 adrenal_gland 2.23e-01 0.000185 0 1:40200894-1:41975327
4250 1 40033046 40033180 SNORA55 thyroid -1.69e+00 0.000806 0 1:40200894-1:41975327
11741 1 40723779 40759856 ZMPSTE24 psychencode 7.22e-01 0.000233 0 1:40200894-1:41975327
4279 1 40538379 40563375 PPT1 whole_blood -1.14e+00 0.000366 0 1:40200894-1:41975327
4314 1 40204516 40229586 PPIE cmc.brain.rnaseq_splicing 7.98e-01 0.000273 0 1:40200894-1:41975327
4264 1 40839377 40888998 SMAP2 cmc.brain.rnaseq_splicing 1.32e+00 0.000415 0 1:40200894-1:41975327
4275 1 40144320 40157361 HPCAL4 whole_blood 1.27e+00 0.000376 0 1:40200894-1:41975327
12824 1 40915774 40929390 ZFP69B psychencode 7.58e-01 0.000242 0 1:40200894-1:41975327
4335 1 40958829 40974333 RP11-656D10.3 brain_cerebellum 1.86e-01 0.000240 0 1:40200894-1:41975327
4258 1 40306723 40349183 TRIT1 brain_cortex -1.52e+00 0.000586 0 1:40200894-1:41975327
4346 1 40958829 40974333 RP11-656D10.3 whole_blood 1.78e-01 0.000222 0 1:40200894-1:41975327
4261 1 39987952 40011859 RP11-69E11.4 brain_nucleus_accumbens_basal_ganglia 1.49e+00 0.000512 0 1:40200894-1:41975327
4244 1 41326729 41328018 CITED4 thyroid -1.88e+00 0.000994 0 1:40200894-1:41975327
4220 1 39987952 40011859 RP11-69E11.4 brain_cerebellar_hemisphere 2.86e+00 0.008760 1 1:40200894-1:41975327
4268 1 40306723 40349183 TRIT1 brain_caudate_basal_ganglia -1.24e+00 0.000405 0 1:40200894-1:41975327
4242 1 40974420 40982212 DEM1 ntr.blood.rnaarr -2.00e+00 0.001270 0 1:40200894-1:41975327
4290 1 40915776 40929512 ZNF643 ntr.blood.rnaarr -1.11e+00 0.000332 0 1:40200894-1:41975327
4294 1 40997233 41013841 ZNF684 whole_blood -1.08e+00 0.000313 0 1:40200894-1:41975327
11649 1 40306723 40349183 TRIT1 psychencode -2.29e+00 0.002230 0 1:40200894-1:41975327
4277 1 41326729 41328018 CITED4 whole_blood 1.23e+00 0.000369 0 1:40200894-1:41975327
4278 1 40157854 40229586 PPIE brain_frontal_cortex_ba9 9.96e-01 0.000367 0 1:40200894-1:41975327
13188 1 39980628 39982162 OXCT2P1 psychencode 2.58e+00 0.004230 0 1:40200894-1:41975327
4283 1 40235195 40237020 OXCT2 brain_cerebellum -1.13e+00 0.000348 0 1:40200894-1:41975327
4291 1 40157854 40229586 PPIE brain_cerebellum 9.24e-01 0.000321 0 1:40200894-1:41975327
12003 1 40997233 41013841 ZNF684 psychencode -1.29e+00 0.000426 0 1:40200894-1:41975327
4385 1 41827594 41849262 FOXO6 brain_cerebellum 1.89e-01 0.000184 0 1:40200894-1:41975327
4217 1 41086351 41131324 RIMS3 cmc.brain.rnaseq_splicing 2.99e+00 0.014200 1 1:40200894-1:41975327
4269 1 40306723 40349183 TRIT1 thyroid -1.08e+00 0.000392 0 1:40200894-1:41975327
4241 1 39987951 40025370 PPIEL cmc.brain.rnaseq -2.07e+00 0.001350 0 1:40200894-1:41975327
4364 1 40958829 40974333 RP11-656D10.3 thyroid -1.69e-01 0.000209 0 1:40200894-1:41975327
4358 1 40958829 40974333 RP11-656D10.3 brain_nucleus_accumbens_basal_ganglia -2.84e-01 0.000213 0 1:40200894-1:41975327
4253 1 40222854 40254533 BMP8B thyroid -1.67e+00 0.000780 0 1:40200894-1:41975327
4293 1 40157854 40229586 PPIE brain_amygdala 8.11e-01 0.000315 0 1:40200894-1:41975327
4284 1 40538379 40563375 PPT1 adrenal_gland -1.18e+00 0.000347 0 1:40200894-1:41975327
4365 1 40958829 40974333 RP11-656D10.3 brain_substantia_nigra -1.18e-01 0.000207 0 1:40200894-1:41975327
4225 1 39987952 40011859 RP11-69E11.4 brain_amygdala 2.63e+00 0.004590 1 1:40200894-1:41975327
12691 1 41326729 41328018 CITED4 psychencode -3.51e-01 0.000193 0 1:40200894-1:41975327
4308 1 40222854 40254533 BMP8B brain_cerebellum 8.24e-01 0.000282 0 1:40200894-1:41975327
4366 1 40958829 40974333 RP11-656D10.3 brain_hypothalamus -2.55e-01 0.000206 0 1:40200894-1:41975327
4285 1 40942887 40962015 ZFP69 brain_cerebellum -2.42e-02 0.000346 0 1:40200894-1:41975327
4288 1 40235195 40237020 OXCT2 thyroid -1.03e+00 0.000341 0 1:40200894-1:41975327
4375 1 40974413 40982228 EXO5 thyroid -4.43e-01 0.000200 0 1:40200894-1:41975327
4350 1 40958829 40974333 RP11-656D10.3 brain_frontal_cortex_ba9 5.23e-02 0.000220 0 1:40200894-1:41975327
4281 1 41445007 41478235 CTPS1 adrenal_gland -1.17e+00 0.000359 0 1:40200894-1:41975327
4271 1 40361098 40367928 MYCL thyroid 1.27e+00 0.000389 0 1:40200894-1:41975327
13327 1 39876151 39882154 KIAA0754 psychencode -2.75e+00 0.006510 1 1:40200894-1:41975327
4299 1 40157854 40229586 PPIE brain_substantia_nigra 8.96e-01 0.000300 0 1:40200894-1:41975327
4359 1 41445007 41478235 CTPS1 whole_blood -5.62e-01 0.000212 0 1:40200894-1:41975327
4301 1 40157854 40229586 PPIE pituitary 8.40e-01 0.000292 0 1:40200894-1:41975327
4226 1 39980628 39982162 OXCT2P1 pituitary 2.60e+00 0.004240 1 1:40200894-1:41975327
4342 1 41481269 41488909 SLFNL1 pituitary 6.73e-01 0.000227 0 1:40200894-1:41975327
4377 1 41154751 41157933 LOC100130557 cmc.brain.rnaseq 3.29e-01 0.000198 0 1:40200894-1:41975327
4245 1 39980628 39982162 OXCT2P1 brain_cortex 1.89e+00 0.000954 0 1:40200894-1:41975327
4354 1 41481269 41488909 SLFNL1 brain_cerebellum 5.69e-01 0.000216 0 1:40200894-1:41975327
4387 1 41827594 41849262 FOXO6 brain_cerebellar_hemisphere -2.25e-02 0.000182 0 1:40200894-1:41975327
4251 1 41326729 41328018 CITED4 yfs.blood.rnaarr 1.77e+00 0.000803 0 1:40200894-1:41975327
4356 1 41481269 41488909 SLFNL1 brain_cerebellar_hemisphere 5.64e-01 0.000215 0 1:40200894-1:41975327
4362 1 39980628 39982162 OXCT2P1 brain_nucleus_accumbens_basal_ganglia 1.52e-01 0.000210 0 1:40200894-1:41975327
4386 1 41492870 41707815 SCMH1 cmc.brain.rnaseq_splicing -1.83e-02 0.000184 0 1:40200894-1:41975327
4270 1 41156052 41157679 RP4-739H11.4 pituitary 1.24e+00 0.000390 0 1:40200894-1:41975327
4248 1 41492872 41707826 SCMH1 brain_anterior_cingulate_cortex_ba24 1.84e+00 0.000911 0 1:40200894-1:41975327
4297 1 41156052 41157679 RP4-739H11.4 brain_amygdala -9.39e-01 0.000306 0 1:40200894-1:41975327
4376 1 41156052 41157679 RP4-739H11.4 brain_cerebellar_hemisphere -3.05e-01 0.000199 0 1:40200894-1:41975327
4317 1 41156052 41157679 RP4-739H11.4 brain_frontal_cortex_ba9 8.76e-01 0.000272 0 1:40200894-1:41975327
4371 1 41492872 41707826 SCMH1 thyroid -4.37e-01 0.000204 0 1:40200894-1:41975327
4286 1 40942887 40962015 ZFP69 brain_hypothalamus 1.03e+00 0.000345 0 1:40200894-1:41975327
4344 1 41156052 41157679 RP4-739H11.4 thyroid -5.42e-01 0.000222 0 1:40200894-1:41975327
4272 1 39987952 40011859 RP11-69E11.4 thyroid 1.26e+00 0.000382 0 1:40200894-1:41975327
4368 1 41156052 41157679 RP4-739H11.4 brain_cerebellum -3.81e-01 0.000205 0 1:40200894-1:41975327
4287 1 40942887 40962015 ZFP69 brain_frontal_cortex_ba9 5.80e-01 0.000343 0 1:40200894-1:41975327
11607 1 41492872 41707826 SCMH1 psychencode -5.73e-01 0.000215 0 1:40200894-1:41975327
4234 1 41086351 41131329 RIMS3 thyroid -2.32e+00 0.002290 0 1:40200894-1:41975327
12144 1 41972036 42501596 HIVEP3 psychencode 4.38e-01 0.000200 0 1:40200894-1:41975327
4340 1 41708045 41750533 RP11-399E6.1 brain_frontal_cortex_ba9 7.26e-01 0.000232 0 1:40200894-1:41975327
4236 1 41086351 41131329 RIMS3 yfs.blood.rnaarr -2.16e+00 0.001830 0 1:40200894-1:41975327
4389 1 48761044 48937845 SPATA6 yfs.blood.rnaarr 1.98e+00 0.001060 0 1:48978188-1:49894177
12793 1 48998527 50489585 AGBL4 psychencode 2.75e-01 0.000164 0 1:48978188-1:49894177
4391 1 49193195 49242641 BEND5 thyroid 1.92e+00 0.000948 0 1:48978188-1:49894177
4408 1 49193539 49242547 BEND5 cmc.brain.rnaseq_splicing -3.67e-01 0.000169 0 1:48978188-1:49894177
4406 1 48693560 48695233 RP5-1024N4.4 thyroid 3.84e-01 0.000170 0 1:48978188-1:49894177
13214 1 48561764 48648100 SKINTL psychencode 9.05e-01 0.000235 0 1:48978188-1:49894177
4399 1 48688356 48714316 SLC5A9 cmc.brain.rnaseq -9.36e-01 0.000242 0 1:48978188-1:49894177
13143 1 48962935 48963408 RP11-329A14.2 psychencode -8.98e-01 0.000234 0 1:48978188-1:49894177
4397 1 48688357 48714316 SLC5A9 adrenal_gland -1.25e+00 0.000336 0 1:48978188-1:49894177
4390 1 48761044 48937845 SPATA6 thyroid 1.98e+00 0.001050 0 1:48978188-1:49894177
4402 1 48688357 48714316 SLC5A9 brain_amygdala 5.69e-01 0.000185 0 1:48978188-1:49894177
4407 1 48688357 48714316 SLC5A9 brain_hypothalamus 3.73e-01 0.000169 0 1:48978188-1:49894177
4412 1 48688357 48714316 SLC5A9 brain_substantia_nigra -9.53e-02 0.000159 0 1:48978188-1:49894177
12448 1 49193195 49242641 BEND5 psychencode -1.11e+00 0.000286 0 1:48978188-1:49894177
4393 1 48693560 48695233 RP5-1024N4.4 brain_cortex 1.68e+00 0.000628 0 1:48978188-1:49894177
4394 1 48693560 48695233 RP5-1024N4.4 brain_caudate_basal_ganglia 1.66e+00 0.000602 0 1:48978188-1:49894177
4396 1 48693560 48695233 RP5-1024N4.4 brain_cerebellar_hemisphere 1.37e+00 0.000394 0 1:48978188-1:49894177
4395 1 48761044 48937845 SPATA6 pituitary -1.43e+00 0.000429 0 1:48978188-1:49894177
4398 1 48693560 48695233 RP5-1024N4.4 adrenal_gland -1.03e+00 0.000265 0 1:48978188-1:49894177
4400 1 48693560 48695233 RP5-1024N4.4 brain_anterior_cingulate_cortex_ba24 8.13e-01 0.000218 0 1:48978188-1:49894177
4403 1 48693560 48695233 RP5-1024N4.4 brain_putamen_basal_ganglia -5.46e-01 0.000183 0 1:48978188-1:49894177
4411 1 48693560 48695233 RP5-1024N4.4 pituitary 1.37e-01 0.000159 0 1:48978188-1:49894177
4404 1 48693560 48695233 RP5-1024N4.4 brain_hippocampus -4.70e-01 0.000176 0 1:48978188-1:49894177
4413 1 48693560 48695233 RP5-1024N4.4 brain_nucleus_accumbens_basal_ganglia 4.15e-02 0.000158 0 1:48978188-1:49894177
4405 1 48693560 48695233 RP5-1024N4.4 whole_blood -4.66e-01 0.000176 0 1:48978188-1:49894177
12178 1 48761044 48937845 SPATA6 psychencode -6.27e-01 0.000191 0 1:48978188-1:49894177
4401 1 48761043 48937876 SPATA6 cmc.brain.rnaseq_splicing 6.85e-01 0.000199 0 1:48978188-1:49894177
4410 1 48998526 50489626 AGBL4 cmc.brain.rnaseq 1.49e-01 0.000160 0 1:48978188-1:49894177
4392 1 48790752 48791795 PPP1R8P1 brain_nucleus_accumbens_basal_ganglia 1.72e+00 0.000665 0 1:48978188-1:49894177
4409 1 48761043 48937876 SPATA6 cmc.brain.rnaseq_splicing 3.23e-01 0.000166 0 1:48978188-1:49894177
4422 1 48998526 50489626 AGBL4 cmc.brain.rnaseq -6.88e-01 0.000207 0 1:49894177-1:51713726
4421 1 52027538 52060569 CALR4P brain_amygdala -9.23e-01 0.000249 0 1:49894177-1:51713726
4423 1 51819935 51985000 EPS15 thyroid -6.97e-01 0.000205 0 1:49894177-1:51713726
12005 1 52042851 52254889 OSBPL9 psychencode 1.78e-01 0.000162 0 1:49894177-1:51713726
13149 1 50482764 50483175 MTND2P29 psychencode -1.32e+00 0.000371 0 1:49894177-1:51713726
4427 1 50513685 50667540 ELAVL4 cmc.brain.rnaseq -4.49e-01 0.000178 0 1:49894177-1:51713726
11747 1 51752930 51810788 TTC39A psychencode 1.85e+00 0.000845 0 1:49894177-1:51713726
4426 1 51819935 51985000 EPS15 yfs.blood.rnaarr 4.41e-01 0.000178 0 1:49894177-1:51713726
12449 1 50513686 50669458 ELAVL4 psychencode -2.11e+00 0.001430 0 1:49894177-1:51713726
4417 1 50791803 50792682 RP11-183G22.1 brain_putamen_basal_ganglia -9.93e-01 0.000362 0 1:49894177-1:51713726
4414 1 50902700 50902978 RP5-850O15.4 thyroid -2.79e+00 0.006970 0 1:49894177-1:51713726
4415 1 50906934 51425936 FAF1 cmc.brain.rnaseq_splicing 2.68e+00 0.005170 0 1:49894177-1:51713726
12087 1 51426417 51440305 CDKN2C psychencode 1.75e+00 0.000711 0 1:49894177-1:51713726
12927 1 51660767 51700768 RP11-296A18.3 psychencode 3.55e-01 0.000171 0 1:49894177-1:51713726
12088 1 51701943 51739127 RNF11 psychencode -1.54e+00 0.000511 0 1:49894177-1:51713726
4416 1 51819934 51984995 EPS15 cmc.brain.rnaseq_splicing 2.64e+00 0.004800 0 1:49894177-1:51713726
4428 1 51716270 51717144 RP11-296A18.5 brain_hypothalamus -1.75e-01 0.000167 0 1:49894177-1:51713726
11748 1 51819935 51985000 EPS15 psychencode 7.56e-02 0.000163 0 1:49894177-1:51713726
4418 1 51752930 51810788 TTC39A thyroid 1.26e+00 0.000349 0 1:49894177-1:51713726
4419 1 52027538 52060569 CALR4P brain_putamen_basal_ganglia -1.03e+00 0.000271 0 1:49894177-1:51713726
4429 1 51819934 51984995 EPS15 cmc.brain.rnaseq_splicing 2.17e-02 0.000161 0 1:49894177-1:51713726
4420 1 52027538 52060569 CALR4P brain_hypothalamus -9.93e-01 0.000268 0 1:49894177-1:51713726
4424 1 51819934 51984995 EPS15 cmc.brain.rnaseq_splicing -4.86e-01 0.000179 0 1:49894177-1:51713726
4425 1 51752929 51810785 TTC39A cmc.brain.rnaseq -4.40e-01 0.000179 0 1:49894177-1:51713726
4440 1 59762624 60228402 FGGY cmc.brain.rnaseq_splicing -5.91e-01 0.000188 0 1:59890409-1:61922365
4448 1 59762624 60228402 FGGY cmc.brain.rnaseq_splicing -3.43e-01 0.000168 0 1:59890409-1:61922365
4443 1 60238467 60254520 RP4-782L23.1 thyroid 4.11e-01 0.000173 0 1:59890409-1:61922365
12204 1 60280458 60342050 HOOK1 psychencode -1.30e+00 0.000359 0 1:59890409-1:61922365
4436 1 60280462 60342050 HOOK1 cmc.brain.rnaseq -1.35e+00 0.000383 0 1:59890409-1:61922365
4446 1 60358980 60392462 CYP2J2 brain_cortex 3.71e-01 0.000170 0 1:59890409-1:61922365
13072 1 61005921 61106163 RP11-776H12.1 psychencode 5.37e-01 0.000183 0 1:59890409-1:61922365
4447 1 60358980 60392462 CYP2J2 pituitary 3.41e-01 0.000168 0 1:59890409-1:61922365
12190 1 62208149 62629592 INADL psychencode 1.62e+00 0.000564 0 1:59890409-1:61922365
12205 1 60358980 60392462 CYP2J2 psychencode 1.03e+00 0.000267 0 1:59890409-1:61922365
4451 1 60452941 60539442 C1orf87 pituitary 1.87e-01 0.000161 0 1:59890409-1:61922365
4432 1 62146718 62191095 TM2D1 brain_hypothalamus 2.25e+00 0.001850 0 1:59890409-1:61922365
4435 1 62208137 62629587 INADL ntr.blood.rnaarr 1.35e+00 0.000386 0 1:59890409-1:61922365
4444 1 60456066 60538348 C1orf87 ntr.blood.rnaarr 4.04e-01 0.000172 0 1:59890409-1:61922365
4442 1 59762310 60233347 FGGY brain_caudate_basal_ganglia -4.37e-01 0.000174 0 1:59890409-1:61922365
4445 1 59762310 60233347 FGGY brain_cortex -3.77e-01 0.000170 0 1:59890409-1:61922365
13470 1 59754975 59755312 RP11-467C18.1 psychencode -4.32e-01 0.000174 0 1:59890409-1:61922365
4434 1 61005921 61106163 RP11-776H12.1 brain_cortex 1.53e+00 0.000499 0 1:59890409-1:61922365
4439 1 62146718 62191095 TM2D1 yfs.blood.rnaarr -6.46e-01 0.000197 0 1:59890409-1:61922365
4438 1 62208148 62629591 INADL cmc.brain.rnaseq 7.65e-01 0.000211 0 1:59890409-1:61922365
4431 1 62208149 62629592 INADL adrenal_gland 2.55e+00 0.003740 0 1:59890409-1:61922365
4441 1 59762310 60233347 FGGY brain_amygdala -5.86e-01 0.000188 0 1:59890409-1:61922365
4437 1 61005921 61106163 RP11-776H12.1 brain_amygdala 9.73e-01 0.000252 0 1:59890409-1:61922365
4449 1 59762310 60233347 FGGY brain_hippocampus 3.08e-01 0.000166 0 1:59890409-1:61922365
13128 1 61125303 61291256 RP11-436K8.1 psychencode 4.84e-01 0.000178 0 1:59890409-1:61922365
4433 1 62208149 62629592 INADL brain_cerebellar_hemisphere -1.62e+00 0.000572 0 1:59890409-1:61922365
4450 1 59762310 60233347 FGGY brain_cerebellar_hemisphere -2.20e-01 0.000163 0 1:59890409-1:61922365
4430 1 62207670 62208096 RP11-430G17.3 brain_cortex 2.75e+00 0.006200 0 1:59890409-1:61922365
4452 1 59762310 60233347 FGGY thyroid -7.32e-02 0.000159 0 1:59890409-1:61922365
12619 1 59762310 60233347 FGGY psychencode -2.03e-01 0.000162 0 1:59890409-1:61922365
4470 1 71318036 71513491 PTGER3 brain_frontal_cortex_ba9 -2.22e+00 0.000441 0 1:71684606-1:74326484
4462 1 74701085 75010112 TNNI3K brain_frontal_cortex_ba9 -3.40e+00 0.001770 0 1:71684606-1:74326484
4465 1 74663895 75010116 FPGT-TNNI3K cmc.brain.rnaseq -2.79e+00 0.001240 0 1:71684606-1:74326484
4477 1 74663896 74699770 FPGT brain_frontal_cortex_ba9 1.32e-01 0.000215 0 1:71684606-1:74326484
4488 1 74491699 74663871 LRRIQ3 brain_hypothalamus 3.07e-01 0.000135 0 1:71684606-1:74326484
4459 1 74663922 74699770 FPGT yfs.blood.rnaarr -2.66e+00 0.003810 0 1:71684606-1:74326484
4464 1 71318035 71513491 PTGER3 cmc.brain.rnaseq 2.73e+00 0.001250 0 1:71684606-1:74326484
12616 1 71861623 72748417 NEGR1 psychencode 5.96e+00 0.000324 0 1:71684606-1:74326484
4484 1 74491699 74663871 LRRIQ3 brain_frontal_cortex_ba9 -3.22e-02 0.000174 0 1:71684606-1:74326484
4487 1 74663895 74674148 FPGT cmc.brain.rnaseq -1.30e+00 0.000147 0 1:71684606-1:74326484
4471 1 72767155 72767512 RPL31P12 brain_cerebellum -7.53e+00 0.000407 0 1:71684606-1:74326484
4473 1 72767155 72767512 RPL31P12 brain_cerebellar_hemisphere -7.48e+00 0.000323 0 1:71684606-1:74326484
13083 1 72767155 72767512 RPL31P12 psychencode -7.69e+00 0.000644 0 1:71684606-1:74326484
12451 1 74491699 74663871 LRRIQ3 psychencode 9.20e-01 0.000151 0 1:71684606-1:74326484
4458 1 74663895 75010116 FPGT-TNNI3K cmc.brain.rnaseq_splicing 3.42e+00 0.003830 0 1:71684606-1:74326484
4478 1 74663896 74699770 FPGT adrenal_gland -6.34e-01 0.000212 0 1:71684606-1:74326484
4480 1 71528973 71546972 ZRANB2 cmc.brain.rnaseq_splicing -1.04e+00 0.000186 0 1:71684606-1:74326484
4454 1 74491699 74663871 LRRIQ3 brain_hippocampus -4.25e+00 0.442000 1 1:71684606-1:74326484
4461 1 74491699 74663871 LRRIQ3 adrenal_gland -3.14e+00 0.001940 0 1:71684606-1:74326484
13112 1 71547007 71955652 ZRANB2-AS2 psychencode -1.72e+00 0.000274 0 1:71684606-1:74326484
4463 1 74491699 74663871 LRRIQ3 pituitary 1.42e+00 0.001480 0 1:71684606-1:74326484
4453 1 71861623 72748417 NEGR1 whole_blood 8.76e+00 1.000000 1 1:71684606-1:74326484
4486 1 74491699 74663871 LRRIQ3 thyroid -5.54e-01 0.000164 0 1:71684606-1:74326484
13322 1 74663896 74699770 FPGT psychencode -3.32e+00 0.004000 0 1:71684606-1:74326484
4466 1 74491699 74663871 LRRIQ3 brain_putamen_basal_ganglia -2.33e+00 0.001060 0 1:71684606-1:74326484
4460 1 74701085 75010112 TNNI3K brain_nucleus_accumbens_basal_ganglia -2.39e+00 0.003080 0 1:71684606-1:74326484
4469 1 74491699 74663871 LRRIQ3 brain_amygdala -1.17e+00 0.000556 0 1:71684606-1:74326484
11993 1 74663947 75010112 TNNI3K psychencode -5.26e-01 0.000146 0 1:71684606-1:74326484
11659 1 71318036 71513491 PTGER3 psychencode 2.03e-01 0.000146 0 1:71684606-1:74326484
4456 1 71471537 71472185 RP3-333A15.2 brain_cortex -2.99e+00 0.016900 0 1:71684606-1:74326484
4468 1 74701085 75010112 TNNI3K brain_cerebellum 5.61e-01 0.000665 0 1:71684606-1:74326484
4455 1 74701085 75010112 TNNI3K brain_putamen_basal_ganglia -3.66e+00 0.177000 0 1:71684606-1:74326484
4472 1 74491699 74663871 LRRIQ3 brain_substantia_nigra 1.61e+00 0.000342 0 1:71684606-1:74326484
4475 1 71861623 72748417 NEGR1 brain_anterior_cingulate_cortex_ba24 4.37e+00 0.000248 0 1:71684606-1:74326484
13371 1 74663919 75009666 FPGT-TNNI3K psychencode -2.18e+00 0.000665 0 1:71684606-1:74326484
13459 1 71471537 71472185 RP3-333A15.2 psychencode 1.06e+00 0.000247 0 1:71684606-1:74326484
4474 1 74663896 74699770 FPGT brain_anterior_cingulate_cortex_ba24 1.80e+00 0.000252 0 1:71684606-1:74326484
4479 1 74701085 75010112 TNNI3K thyroid -1.69e+00 0.000202 0 1:71684606-1:74326484
4483 1 74491699 74663871 LRRIQ3 brain_nucleus_accumbens_basal_ganglia -2.20e-01 0.000178 0 1:71684606-1:74326484
4467 1 71318036 71513491 PTGER3 thyroid 2.12e+00 0.000913 0 1:71684606-1:74326484
4476 1 71861623 72748417 NEGR1 brain_caudate_basal_ganglia 5.91e+00 0.000216 0 1:71684606-1:74326484
4481 1 71861623 72748417 NEGR1 brain_putamen_basal_ganglia 5.66e+00 0.000185 0 1:71684606-1:74326484
4482 1 71861623 72748417 NEGR1 brain_cerebellum 3.05e+00 0.000181 0 1:71684606-1:74326484
4485 1 74701085 75010112 TNNI3K brain_hypothalamus 1.55e-01 0.000173 0 1:71684606-1:74326484
4457 1 74701085 75010112 TNNI3K adrenal_gland -2.55e+00 0.004130 0 1:71684606-1:74326484
4489 1 81771844 82458107 LPHN2 cmc.brain.rnaseq_splicing 1.06e+00 0.000270 0 1:79661361-1:81353920
12298 1 87794151 87814606 LMO4 psychencode -3.22e+00 0.023800 0 1:86454751-1:88128631
4540 1 86814344 86862023 ODF2L pituitary 4.36e-01 0.000198 0 1:86454751-1:88128631
4532 1 85784167 86044046 DDAH1 cmc.brain.rnaseq_splicing -5.63e-01 0.000212 0 1:86454751-1:88128631
12383 1 87380331 87602334 HS2ST1 psychencode 5.59e-01 0.000263 0 1:86454751-1:88128631
4535 1 86814344 86862023 ODF2L whole_blood 5.59e-01 0.000203 0 1:86454751-1:88128631
4543 1 86194916 86622626 COL24A1 thyroid -3.56e-01 0.000191 0 1:86454751-1:88128631
4513 1 87328132 87380107 SEP15 brain_hippocampus -1.44e+00 0.000506 0 1:86454751-1:88128631
12382 1 85784164 86043933 DDAH1 psychencode -9.11e-01 0.000267 0 1:86454751-1:88128631
4531 1 86814344 86862023 ODF2L brain_cerebellar_hemisphere 5.41e-01 0.000219 0 1:86454751-1:88128631
4534 1 87012758 87046432 CLCA4 cmc.brain.rnaseq -5.57e-01 0.000208 0 1:86454751-1:88128631
4506 1 87595448 87634881 RP5-1052I5.1 brain_cerebellum 1.93e+00 0.000902 0 1:86454751-1:88128631
13448 1 87595448 87634881 LINC01140 psychencode 1.81e+00 0.000746 0 1:86454751-1:88128631
4500 1 87012761 87046437 CLCA4 brain_hypothalamus -2.29e+00 0.001960 0 1:86454751-1:88128631
4538 1 86194916 86622626 COL24A1 brain_putamen_basal_ganglia -5.28e-01 0.000200 0 1:86454751-1:88128631
12609 1 86194916 86622626 COL24A1 psychencode -1.80e+00 0.000806 0 1:86454751-1:88128631
4502 1 87380208 87575658 HS2ST1 ntr.blood.rnaarr 2.25e+00 0.001730 0 1:86454751-1:88128631
4517 1 86115106 86174116 ZNHIT6 adrenal_gland -1.17e+00 0.000346 0 1:86454751-1:88128631
11617 1 87012761 87046437 CLCA4 psychencode -8.92e-01 0.000260 0 1:86454751-1:88128631
4541 1 86814344 86862023 ODF2L adrenal_gland 3.60e-01 0.000194 0 1:86454751-1:88128631
4518 1 87170259 87213867 SH3GLB1 adrenal_gland -1.12e+00 0.000296 0 1:86454751-1:88128631
4542 1 86814344 86862023 ODF2L brain_cortex 3.47e-01 0.000191 0 1:86454751-1:88128631
4546 1 86812506 86862025 ODF2L cmc.brain.rnaseq 2.51e-01 0.000186 0 1:86454751-1:88128631
4539 1 87595448 87634881 RP5-1052I5.1 brain_cerebellar_hemisphere -1.10e-01 0.000200 0 1:86454751-1:88128631
11789 1 87170259 87213867 SH3GLB1 psychencode 2.28e-01 0.000199 0 1:86454751-1:88128631
4526 1 86115106 86174116 ZNHIT6 pituitary 8.22e-01 0.000242 0 1:86454751-1:88128631
4544 1 86814344 86862023 ODF2L yfs.blood.rnaarr -3.86e-01 0.000188 0 1:86454751-1:88128631
4545 1 86889769 86922241 CLCA2 adrenal_gland 3.01e-01 0.000188 0 1:86454751-1:88128631
4512 1 87328132 87380107 SEP15 brain_hypothalamus 3.96e-01 0.000552 0 1:86454751-1:88128631
4509 1 86812506 86862025 ODF2L cmc.brain.rnaseq_splicing -1.68e+00 0.000739 0 1:86454751-1:88128631
4536 1 86814344 86862023 ODF2L brain_nucleus_accumbens_basal_ganglia 5.04e-01 0.000203 0 1:86454751-1:88128631
4498 1 87328127 87380107 SEP15 cmc.brain.rnaseq_splicing 2.43e+00 0.002560 0 1:86454751-1:88128631
4548 1 86115106 86174116 ZNHIT6 yfs.blood.rnaarr 2.71e-01 0.000182 0 1:86454751-1:88128631
4501 1 87328127 87380107 SEP15 cmc.brain.rnaseq -2.27e+00 0.001810 0 1:86454751-1:88128631
4525 1 86194915 86622154 COL24A1 cmc.brain.rnaseq -8.69e-01 0.000249 0 1:86454751-1:88128631
4504 1 87036938 87158886 RP4-651E10.4 brain_caudate_basal_ganglia -2.00e+00 0.001060 0 1:86454751-1:88128631
4524 1 86812506 86862025 ODF2L cmc.brain.rnaseq_splicing -8.89e-01 0.000250 0 1:86454751-1:88128631
4491 1 87380331 87575681 HS2ST1 brain_putamen_basal_ganglia 3.01e+00 0.012000 0 1:86454751-1:88128631
4507 1 87036938 87158886 RP4-651E10.4 pituitary -1.89e+00 0.000837 0 1:86454751-1:88128631
4494 1 87328132 87380107 SEP15 brain_caudate_basal_ganglia -2.60e+00 0.003930 0 1:86454751-1:88128631
4495 1 87328132 87380107 SEP15 brain_cortex -2.57e+00 0.003650 0 1:86454751-1:88128631
4522 1 86814344 86862023 ODF2L brain_hypothalamus 8.71e-01 0.000262 0 1:86454751-1:88128631
4514 1 87328132 87380107 SEP15 brain_cerebellum -1.37e+00 0.000429 0 1:86454751-1:88128631
4496 1 87328132 87380107 SEP15 thyroid -2.50e+00 0.003030 0 1:86454751-1:88128631
4499 1 87380331 87575681 HS2ST1 brain_frontal_cortex_ba9 2.35e+00 0.002150 0 1:86454751-1:88128631
4528 1 86814344 86862023 ODF2L brain_cerebellum 6.56e-01 0.000222 0 1:86454751-1:88128631
4497 1 87328132 87380107 SEP15 brain_putamen_basal_ganglia -2.49e+00 0.003020 0 1:86454751-1:88128631
4533 1 87169185 87170145 RP4-612B15.3 whole_blood 6.48e-01 0.000209 0 1:86454751-1:88128631
4510 1 86194916 86622626 COL24A1 brain_frontal_cortex_ba9 -1.73e+00 0.000733 0 1:86454751-1:88128631
4508 1 87380331 87575681 HS2ST1 brain_hippocampus 1.87e+00 0.000833 0 1:86454751-1:88128631
4503 1 87328132 87380107 SEP15 pituitary -2.04e+00 0.001190 0 1:86454751-1:88128631
12073 1 86814344 86862023 ODF2L psychencode -1.66e-01 0.000179 0 1:86454751-1:88128631
4493 1 87380331 87602334 HS2ST1 yfs.blood.rnaarr 2.64e+00 0.004310 0 1:86454751-1:88128631
13420 1 87169185 87170145 RP4-612B15.3 psychencode -7.42e-01 0.000377 0 1:86454751-1:88128631
4515 1 86194916 86622626 COL24A1 brain_anterior_cingulate_cortex_ba24 -1.30e+00 0.000395 0 1:86454751-1:88128631
4516 1 87170259 87213867 SH3GLB1 yfs.blood.rnaarr -9.98e-01 0.000390 0 1:86454751-1:88128631
4520 1 86194916 86622626 COL24A1 brain_nucleus_accumbens_basal_ganglia -9.60e-01 0.000270 0 1:86454751-1:88128631
4527 1 86115105 86174116 ZNHIT6 cmc.brain.rnaseq -7.40e-01 0.000233 0 1:86454751-1:88128631
4547 1 86814344 86862023 ODF2L thyroid -2.71e-01 0.000184 0 1:86454751-1:88128631
4537 1 86194916 86622626 COL24A1 adrenal_gland -4.29e-01 0.000203 0 1:86454751-1:88128631
4530 1 86814344 86862023 ODF2L brain_caudate_basal_ganglia 6.18e-01 0.000220 0 1:86454751-1:88128631
4529 1 86812506 86862025 ODF2L cmc.brain.rnaseq_splicing -6.07e-01 0.000221 0 1:86454751-1:88128631
4505 1 87328132 87380107 SEP15 brain_frontal_cortex_ba9 -1.98e+00 0.001040 0 1:86454751-1:88128631
4519 1 86115106 86174116 ZNHIT6 whole_blood 1.02e+00 0.000291 0 1:86454751-1:88128631
4492 1 87380331 87575681 HS2ST1 brain_anterior_cingulate_cortex_ba24 2.69e+00 0.004970 0 1:86454751-1:88128631
12740 1 87328132 87380107 SEP15 psychencode -2.25e+00 0.001740 0 1:86454751-1:88128631
4511 1 87328132 87380107 SEP15 brain_nucleus_accumbens_basal_ganglia -1.45e+00 0.000604 0 1:86454751-1:88128631
4521 1 87794151 87814606 LMO4 yfs.blood.rnaarr 7.39e-01 0.000263 0 1:86454751-1:88128631
4549 1 86194916 86622626 COL24A1 brain_caudate_basal_ganglia 9.45e-03 0.000178 0 1:86454751-1:88128631
4523 1 87380331 87575681 HS2ST1 brain_amygdala 7.50e-01 0.000262 0 1:86454751-1:88128631
4490 1 87595448 87634881 RP5-1052I5.1 adrenal_gland 3.59e+00 0.075500 0 1:86454751-1:88128631
13169 1 87510618 87511554 RP11-384B12.2 psychencode -2.67e-01 0.000184 0 1:86454751-1:88128631
4571 1 91726323 91870426 HFM1 brain_cerebellar_hemisphere -1.39e+00 0.000419 0 1:90066303-1:91885970
4566 1 91966408 91991321 CDC7 pituitary 1.50e+00 0.000476 0 1:90066303-1:91885970
4562 1 91726323 91870426 HFM1 brain_cortex -1.59e+00 0.000550 0 1:90066303-1:91885970
4569 1 91966408 91991321 CDC7 brain_nucleus_accumbens_basal_ganglia 1.45e+00 0.000467 0 1:90066303-1:91885970
4576 1 91726323 91870426 HFM1 brain_putamen_basal_ganglia -9.82e-01 0.000258 0 1:90066303-1:91885970
12453 1 91726323 91870426 HFM1 psychencode -1.30e+00 0.000370 0 1:90066303-1:91885970
4581 1 91966408 91991321 CDC7 yfs.blood.rnaarr 8.18e-01 0.000223 0 1:90066303-1:91885970
4552 1 91966408 91991321 CDC7 brain_cortex 2.58e+00 0.004060 0 1:90066303-1:91885970
4556 1 90287479 90401987 LRRC8D ntr.blood.rnaarr -2.00e+00 0.001120 0 1:90066303-1:91885970
4570 1 91726323 91870426 HFM1 brain_cerebellum -1.47e+00 0.000464 0 1:90066303-1:91885970
4567 1 91726323 91870426 HFM1 adrenal_gland -1.49e+00 0.000474 0 1:90066303-1:91885970
12074 1 91380859 91487829 ZNF644 psychencode -9.70e-01 0.000254 0 1:90066303-1:91885970
4595 1 91966408 91991321 CDC7 brain_amygdala -3.84e-01 0.000174 0 1:90066303-1:91885970
4555 1 89990396 90063420 LRRC8B cmc.brain.rnaseq_splicing 2.05e+00 0.001240 0 1:90066303-1:91885970
4563 1 91726323 91870426 HFM1 thyroid -1.59e+00 0.000549 0 1:90066303-1:91885970
12452 1 89646831 89664615 GBP4 psychencode 2.52e-01 0.000171 0 1:90066303-1:91885970
11790 1 91966408 91991321 CDC7 psychencode 1.59e+00 0.000556 0 1:90066303-1:91885970
4579 1 90405160 90405706 RP11-302M6.5 brain_hippocampus 8.92e-01 0.000239 0 1:90066303-1:91885970
4592 1 90254473 90256051 RP5-943J3.1 pituitary -4.55e-01 0.000181 0 1:90066303-1:91885970
4600 1 89724633 89738544 GBP5 yfs.blood.rnaarr 2.00e-03 0.000165 0 1:90066303-1:91885970
4573 1 91966408 91991321 CDC7 brain_anterior_cingulate_cortex_ba24 1.32e+00 0.000375 0 1:90066303-1:91885970
4599 1 90254473 90256051 RP5-943J3.1 brain_putamen_basal_ganglia -9.92e-02 0.000165 0 1:90066303-1:91885970
13513 1 90405160 90405706 RP11-302M6.5 psychencode 1.80e+00 0.000790 0 1:90066303-1:91885970
4565 1 91726322 91870426 HFM1 cmc.brain.rnaseq -1.50e+00 0.000480 0 1:90066303-1:91885970
4572 1 89990395 90063423 LRRC8B brain_cerebellar_hemisphere 1.38e+00 0.000402 0 1:90066303-1:91885970
4577 1 89990395 90063423 LRRC8B brain_cerebellum -9.61e-01 0.000253 0 1:90066303-1:91885970
4586 1 89571815 89591797 GBP2 brain_amygdala 7.08e-01 0.000207 0 1:90066303-1:91885970
4589 1 89990395 90063423 LRRC8B brain_anterior_cingulate_cortex_ba24 5.87e-01 0.000191 0 1:90066303-1:91885970
4557 1 89597434 89641723 GBP7 brain_caudate_basal_ganglia 1.98e+00 0.001070 0 1:90066303-1:91885970
4593 1 89990396 90063420 LRRC8B cmc.brain.rnaseq 4.36e-01 0.000178 0 1:90066303-1:91885970
4558 1 89597434 89641723 GBP7 brain_putamen_basal_ganglia 1.89e+00 0.000908 0 1:90066303-1:91885970
4580 1 90254473 90256051 RP5-943J3.1 brain_anterior_cingulate_cortex_ba24 -8.49e-01 0.000231 0 1:90066303-1:91885970
4564 1 91726323 91870426 HFM1 brain_caudate_basal_ganglia -1.52e+00 0.000493 0 1:90066303-1:91885970
4596 1 89990395 90063423 LRRC8B brain_cortex -2.24e-01 0.000171 0 1:90066303-1:91885970
4578 1 89646831 89664615 GBP4 yfs.blood.rnaarr 9.26e-01 0.000252 0 1:90066303-1:91885970
13140 1 90048800 90098453 RP5-1007M22.2 psychencode -3.47e-01 0.000173 0 1:90066303-1:91885970
4554 1 91966408 91991321 CDC7 whole_blood -2.31e+00 0.002140 0 1:90066303-1:91885970
4598 1 89597434 89641723 GBP7 thyroid 2.56e-01 0.000168 0 1:90066303-1:91885970
4601 1 91966403 91991321 CDC7 cmc.brain.rnaseq -1.84e-01 0.000165 0 1:90066303-1:91885970
4553 1 91248543 91317207 RP4-665J23.1 brain_cortex -2.43e+00 0.002840 0 1:90066303-1:91885970
4568 1 90286573 90402170 LRRC8D whole_blood -1.49e+00 0.000469 0 1:90066303-1:91885970
12886 1 89990395 90063423 LRRC8B psychencode -1.28e-02 0.000172 0 1:90066303-1:91885970
4582 1 90254473 90256051 RP5-943J3.1 adrenal_gland -7.86e-01 0.000221 0 1:90066303-1:91885970
4590 1 90098643 90185094 LRRC8C cmc.brain.rnaseq -5.13e-01 0.000187 0 1:90066303-1:91885970
4594 1 90254473 90256051 RP5-943J3.1 brain_hypothalamus -3.49e-01 0.000176 0 1:90066303-1:91885970
4574 1 91726323 91870426 HFM1 brain_frontal_cortex_ba9 -1.23e+00 0.000336 0 1:90066303-1:91885970
4588 1 90254473 90256051 RP5-943J3.1 brain_amygdala -6.49e-01 0.000198 0 1:90066303-1:91885970
4550 1 90098631 90235462 LRRC8C yfs.blood.rnaarr 2.79e+00 0.006940 0 1:90066303-1:91885970
4583 1 90254473 90256051 RP5-943J3.1 thyroid -7.50e-01 0.000215 0 1:90066303-1:91885970
4561 1 90286573 90402170 LRRC8D yfs.blood.rnaarr -1.61e+00 0.000565 0 1:90066303-1:91885970
13148 1 91248543 91317207 RP4-665J23.1 psychencode -1.13e+00 0.000298 0 1:90066303-1:91885970
4584 1 90254473 90256051 RP5-943J3.1 brain_frontal_cortex_ba9 -7.47e-01 0.000214 0 1:90066303-1:91885970
4585 1 90254473 90256051 RP5-943J3.1 brain_hippocampus -7.15e-01 0.000209 0 1:90066303-1:91885970
13132 1 90254473 90256051 RP5-943J3.1 psychencode 1.30e-01 0.000167 0 1:90066303-1:91885970
4551 1 90098631 90235462 LRRC8C thyroid -2.58e+00 0.004100 0 1:90066303-1:91885970
4587 1 90254473 90256051 RP5-943J3.1 brain_cortex -6.78e-01 0.000205 0 1:90066303-1:91885970
4575 1 90254473 90256051 RP5-943J3.1 brain_caudate_basal_ganglia 8.48e-01 0.000270 0 1:90066303-1:91885970
4591 1 91380859 91487829 ZNF644 brain_cerebellar_hemisphere 5.23e-01 0.000184 0 1:90066303-1:91885970
4560 1 90285733 90286427 RP5-943J3.2 whole_blood -1.64e+00 0.000595 0 1:90066303-1:91885970
4597 1 90254473 90256051 RP5-943J3.1 whole_blood -2.12e-01 0.000169 0 1:90066303-1:91885970
4559 1 90098631 90235462 LRRC8C adrenal_gland -1.79e+00 0.000761 0 1:90066303-1:91885970
4631 1 175036993 175117202 TNN cmc.brain.rnaseq -8.85e-01 0.000276 0 1:175089768-1:177433331
4638 1 175036994 175117202 TNN pituitary 3.81e-03 0.000233 0 1:175089768-1:177433331
4636 1 177140633 177251558 BRINP2 brain_frontal_cortex_ba9 5.80e-02 0.000244 0 1:175089768-1:177433331
4614 1 175126123 175162135 KIAA0040 brain_caudate_basal_ganglia 1.11e+00 0.000780 0 1:175089768-1:177433331
4612 1 176826440 177134024 ASTN1 cmc.brain.rnaseq_splicing 2.19e+00 0.001070 0 1:175089768-1:177433331
4613 1 175126123 175162135 KIAA0040 whole_blood -1.34e+00 0.000944 0 1:175089768-1:177433331
4620 1 175126123 175162135 KIAA0040 thyroid -1.03e+00 0.000405 0 1:175089768-1:177433331
4624 1 175913967 176176629 RFWD2 brain_cerebellum 7.06e-01 0.000301 0 1:175089768-1:177433331
4632 1 175126123 175162135 KIAA0040 yfs.blood.rnaarr 7.53e-01 0.000265 0 1:175089768-1:177433331
4634 1 175126123 175162135 KIAA0040 brain_cerebellum -2.02e-01 0.000259 0 1:175089768-1:177433331
13173 1 175126123 175162135 KIAA0040 psychencode 1.22e+00 0.000604 0 1:175089768-1:177433331
4609 1 177897488 178007142 SEC16B cmc.brain.rnaseq -2.37e+00 0.002390 0 1:175089768-1:177433331
4627 1 175913967 176176629 RFWD2 brain_cortex -1.51e+00 0.000284 0 1:175089768-1:177433331
4628 1 176826438 177134109 ASTN1 brain_cerebellar_hemisphere -8.19e-01 0.000282 0 1:175089768-1:177433331
4621 1 177140633 177251558 BRINP2 thyroid 1.23e+00 0.000375 0 1:175089768-1:177433331
11989 1 175284330 175712906 TNR psychencode 1.16e+00 0.000396 0 1:175089768-1:177433331
4626 1 175036994 175117202 TNN adrenal_gland 1.07e+00 0.000294 0 1:175089768-1:177433331
4604 1 175873898 175889649 RP11-318C24.2 whole_blood -4.65e+00 0.142000 1 1:175089768-1:177433331
4622 1 175036994 175117202 TNN brain_cortex -1.06e+00 0.000373 0 1:175089768-1:177433331
4619 1 174128551 174927327 RABGAP1L cmc.brain.rnaseq 7.57e-01 0.000428 0 1:175089768-1:177433331
12921 1 177140633 177251558 BRINP2 psychencode -8.60e-01 0.000256 0 1:175089768-1:177433331
4629 1 175873898 175889649 RP11-318C24.2 pituitary -2.77e-02 0.000281 0 1:175089768-1:177433331
4617 1 177897488 178007142 SEC16B cmc.brain.rnaseq_splicing 1.36e+00 0.000454 0 1:175089768-1:177433331
13089 1 177362423 177566844 RP1-35C21.2 psychencode -1.23e+00 0.000527 0 1:175089768-1:177433331
13307 1 177897923 178007142 RP4-798P15.3 psychencode 7.03e-02 0.000242 0 1:175089768-1:177433331
4630 1 175913967 176176629 RFWD2 yfs.blood.rnaarr 1.19e+00 0.000279 0 1:175089768-1:177433331
12059 1 175036994 175117202 TNN psychencode 2.09e-01 0.000265 0 1:175089768-1:177433331
4616 1 175126122 175162229 KIAA0040 cmc.brain.rnaseq 9.79e-01 0.000486 0 1:175089768-1:177433331
4603 1 175873898 175889649 RP11-318C24.2 thyroid -4.88e+00 0.613000 1 1:175089768-1:177433331
4635 1 175036994 175117202 TNN brain_frontal_cortex_ba9 -1.88e-01 0.000246 0 1:175089768-1:177433331
12299 1 175913967 176176629 RFWD2 psychencode -3.23e+00 0.001120 0 1:175089768-1:177433331
4615 1 177897488 178007142 SEC16B cmc.brain.rnaseq_splicing 1.34e+00 0.000575 0 1:175089768-1:177433331
4637 1 174128548 174964445 RABGAP1L yfs.blood.rnaarr 3.28e-01 0.000236 0 1:175089768-1:177433331
4611 1 175291934 175712752 TNR cmc.brain.rnaseq_splicing -2.24e+00 0.001600 0 1:175089768-1:177433331
13176 1 176176784 176198466 RP11-195C7.1 psychencode -1.66e-02 0.000329 0 1:175089768-1:177433331
4608 1 176241619 176242538 RP11-195C7.3 thyroid -2.85e+00 0.003460 0 1:175089768-1:177433331
4605 1 175913966 176176370 RFWD2 cmc.brain.rnaseq_splicing -4.54e+00 0.088200 1 1:175089768-1:177433331
4625 1 176432306 176811970 PAPPA2 cmc.brain.rnaseq -3.55e-01 0.000295 0 1:175089768-1:177433331
4607 1 176432307 176814735 PAPPA2 brain_substantia_nigra 3.95e+00 0.004230 0 1:175089768-1:177433331
13174 1 174891244 174891577 RP1-102G20.4 psychencode 3.16e-01 0.000243 0 1:175089768-1:177433331
4623 1 176432307 176814735 PAPPA2 brain_cerebellum -1.36e+00 0.000328 0 1:175089768-1:177433331
11990 1 176432307 176814735 PAPPA2 psychencode 1.38e+00 0.001310 0 1:175089768-1:177433331
13090 1 175873898 175889649 RP11-318C24.2 psychencode -4.20e+00 0.051300 0 1:175089768-1:177433331
4602 1 176826438 177134109 ASTN1 pituitary -4.16e+00 0.697000 1 1:175089768-1:177433331
4610 1 176826438 177134109 ASTN1 brain_caudate_basal_ganglia 9.55e-01 0.001650 0 1:175089768-1:177433331
4633 1 174982093 174992591 MRPS14 cmc.brain.rnaseq -7.71e-01 0.000262 0 1:175089768-1:177433331
4606 1 175913966 176176370 RFWD2 cmc.brain.rnaseq_splicing -4.35e+00 0.084500 0 1:175089768-1:177433331
4618 1 176826438 177134109 ASTN1 thyroid 1.46e+00 0.000444 0 1:175089768-1:177433331
4660 1 181003067 181031074 MR1 brain_hippocampus 8.74e-01 0.000388 0 1:181144121-1:182755356
4639 1 181452685 181775921 CACNA1E cmc.brain.rnaseq_splicing -4.79e+00 0.518000 1 1:181144121-1:182755356
4651 1 181003067 181031074 MR1 thyroid 1.24e+00 0.000624 0 1:181144121-1:182755356
13498 1 181060245 181062035 RP11-309G3.3 psychencode -8.57e-01 0.000541 0 1:181144121-1:182755356
4640 1 181452685 181775921 CACNA1E cmc.brain.rnaseq -3.97e+00 0.016700 0 1:181144121-1:182755356
4657 1 181003067 181031074 MR1 yfs.blood.rnaarr 4.93e-01 0.000434 0 1:181144121-1:182755356
4647 1 181057638 181059977 IER5 yfs.blood.rnaarr -1.33e+00 0.001380 0 1:181144121-1:182755356
12907 1 181382238 181777219 CACNA1E psychencode -4.77e+00 0.461000 1 1:181144121-1:182755356
4679 1 181002509 181026119 MR1 ntr.blood.rnaarr -3.33e-01 0.000252 0 1:181144121-1:182755356
4661 1 183107537 183110417 RP11-181K3.4 brain_cerebellum 1.12e+00 0.000387 0 1:181144121-1:182755356
4653 1 183107537 183110417 RP11-181K3.4 thyroid -1.56e+00 0.000588 0 1:181144121-1:182755356
4649 1 183155373 183214035 LAMC2 brain_putamen_basal_ganglia 1.83e+00 0.001240 0 1:181144121-1:182755356
12219 1 182542769 182558391 RNASEL psychencode -6.97e-01 0.000304 0 1:181144121-1:182755356
4656 1 183155373 183214035 LAMC2 brain_anterior_cingulate_cortex_ba24 -1.15e+00 0.000449 0 1:181144121-1:182755356
4665 1 183155373 183214035 LAMC2 brain_cerebellar_hemisphere 9.86e-01 0.000321 0 1:181144121-1:182755356
4682 1 183155373 183214035 LAMC2 brain_cerebellum 4.49e-01 0.000240 0 1:181144121-1:182755356
4652 1 182367252 182369751 TEDDM1 thyroid 1.18e+00 0.000623 0 1:181144121-1:182755356
4668 1 182542768 182558394 RNASEL cmc.brain.rnaseq -7.19e-01 0.000308 0 1:181144121-1:182755356
4674 1 182542769 182558391 RNASEL thyroid -5.83e-01 0.000284 0 1:181144121-1:182755356
12408 1 183217372 183387737 NMNAT2 psychencode 2.31e+00 0.003650 0 1:181144121-1:182755356
4643 1 182542769 182558391 RNASEL yfs.blood.rnaarr -2.15e+00 0.003510 0 1:181144121-1:182755356
4677 1 182542769 182558391 RNASEL pituitary -4.95e-01 0.000258 0 1:181144121-1:182755356
4650 1 182542769 182558391 RNASEL adrenal_gland -1.15e+00 0.000661 0 1:181144121-1:182755356
4662 1 182542769 182558391 RNASEL brain_cortex -9.68e-01 0.000382 0 1:181144121-1:182755356
4666 1 182542769 182558391 RNASEL brain_anterior_cingulate_cortex_ba24 -7.49e-01 0.000312 0 1:181144121-1:182755356
4672 1 181003067 181031074 MR1 adrenal_gland 6.71e-01 0.000289 0 1:181144121-1:182755356
4675 1 182367252 182369751 TEDDM1 brain_cerebellum 4.34e-01 0.000274 0 1:181144121-1:182755356
4648 1 182992595 183114727 LAMC1 brain_cerebellum 1.64e+00 0.001340 0 1:181144121-1:182755356
4667 1 182542769 182558391 RNASEL whole_blood -6.93e-01 0.000311 0 1:181144121-1:182755356
4669 1 182542769 182558391 RNASEL brain_cerebellar_hemisphere -7.46e-01 0.000307 0 1:181144121-1:182755356
4678 1 182992595 183114727 LAMC1 yfs.blood.rnaarr 4.52e-01 0.000252 0 1:181144121-1:182755356
13518 1 181781840 181782396 RP11-33M22.2 psychencode -9.25e-01 0.000323 0 1:181144121-1:182755356
4659 1 181003067 181031074 MR1 brain_frontal_cortex_ba9 -1.43e+00 0.000399 0 1:181144121-1:182755356
4680 1 182992595 183114727 LAMC1 whole_blood 1.96e-01 0.000249 0 1:181144121-1:182755356
4655 1 182367253 182369751 TEDDM1 ntr.blood.rnaarr 1.08e+00 0.000541 0 1:181144121-1:182755356
4670 1 182350839 182361341 GLUL thyroid -3.96e-01 0.000300 0 1:181144121-1:182755356
4663 1 180882290 180920750 KIAA1614 brain_nucleus_accumbens_basal_ganglia -6.77e-01 0.000379 0 1:181144121-1:182755356
12221 1 182758428 182799519 NPL psychencode 1.56e-01 0.000241 0 1:181144121-1:182755356
4646 1 182992595 183114727 LAMC1 brain_cerebellar_hemisphere 2.01e+00 0.001830 0 1:181144121-1:182755356
4671 1 182542769 182558391 RNASEL brain_frontal_cortex_ba9 -6.48e-01 0.000298 0 1:181144121-1:182755356
4664 1 181060245 181062035 RP11-309G3.3 brain_amygdala 9.84e-01 0.000349 0 1:181144121-1:182755356
4676 1 180882290 180920750 KIAA1614 brain_caudate_basal_ganglia 8.96e-01 0.000273 0 1:181144121-1:182755356
12220 1 180882290 180920750 KIAA1614 psychencode -6.58e-01 0.000296 0 1:181144121-1:182755356
4658 1 181002560 181031074 MR1 cmc.brain.rnaseq 1.61e-01 0.000429 0 1:181144121-1:182755356
12222 1 182992595 183114727 LAMC1 psychencode 2.97e-01 0.000264 0 1:181144121-1:182755356
13287 1 180933647 180935045 RP11-46A10.6 psychencode -7.95e-01 0.000299 0 1:181144121-1:182755356
12218 1 180941861 180992047 STX6 psychencode 1.28e+00 0.000305 0 1:181144121-1:182755356
4642 1 182350839 182361341 GLUL brain_anterior_cingulate_cortex_ba24 2.35e+00 0.009780 0 1:181144121-1:182755356
4673 1 182542769 182558391 RNASEL brain_cerebellum -5.89e-01 0.000284 0 1:181144121-1:182755356
4645 1 180941861 180992047 STX6 brain_hypothalamus -2.23e+00 0.001890 0 1:181144121-1:182755356
4654 1 180941861 180992047 STX6 whole_blood 8.58e-01 0.000581 0 1:181144121-1:182755356
4641 1 181781840 181782396 RP11-33M22.2 brain_cerebellar_hemisphere 3.93e+00 0.016400 0 1:181144121-1:182755356
4644 1 181781840 181782396 RP11-33M22.2 brain_frontal_cortex_ba9 -2.70e+00 0.002100 0 1:181144121-1:182755356
4681 1 180941861 180992047 STX6 yfs.blood.rnaarr 7.86e-01 0.000248 0 1:181144121-1:182755356
4684 1 198607801 198726545 PTPRC adrenal_gland -2.61e+00 0.003040 0 1:197311514-1:199239815
4691 1 198126107 198291548 NEK7 cmc.brain.rnaseq_splicing 1.04e+00 0.000534 0 1:197311514-1:199239815
11733 1 198607801 198726545 PTPRC psychencode 4.38e-01 0.000227 0 1:197311514-1:199239815
4686 1 197170592 197447585 CRB1 brain_cortex -3.93e+00 0.001900 0 1:197311514-1:199239815
13192 1 197191352 197192385 RP11-332L8.1 psychencode 1.36e+00 0.000456 0 1:197311514-1:199239815
11685 1 197053258 197115824 ASPM psychencode 5.41e-01 0.000436 0 1:197311514-1:199239815
4689 1 197122810 197169672 ZBTB41 brain_cerebellum -1.79e+00 0.000710 0 1:197311514-1:199239815
12667 1 197122810 197169672 ZBTB41 psychencode -2.14e+00 0.000256 0 1:197311514-1:199239815
4694 1 197122813 197169672 ZBTB41 cmc.brain.rnaseq -1.49e+00 0.000266 0 1:197311514-1:199239815
4683 1 197473878 197744623 DENND1B cmc.brain.rnaseq 5.37e+00 0.991000 1 1:197311514-1:199239815
4688 1 197170591 197447585 CRB1 cmc.brain.rnaseq -2.49e+00 0.000769 0 1:197311514-1:199239815
4692 1 197170591 197447585 CRB1 cmc.brain.rnaseq_splicing 2.91e+00 0.000445 0 1:197311514-1:199239815
4685 1 197473878 197744826 DENND1B brain_cerebellum 4.04e+00 0.002700 0 1:197311514-1:199239815
4693 1 197473878 197744623 DENND1B cmc.brain.rnaseq_splicing -2.34e+00 0.000437 0 1:197311514-1:199239815
4696 1 197473878 197744623 DENND1B cmc.brain.rnaseq_splicing -1.83e+00 0.000252 0 1:197311514-1:199239815
4687 1 197871777 197876497 C1orf53 thyroid 2.79e+00 0.001080 0 1:197311514-1:199239815
4695 1 197871777 197876497 C1orf53 brain_nucleus_accumbens_basal_ganglia -2.29e-01 0.000259 0 1:197311514-1:199239815
4690 1 198126093 198291550 NEK7 brain_cerebellum -1.28e+00 0.000679 0 1:197311514-1:199239815
12369 1 198126093 198291550 NEK7 psychencode 3.43e-01 0.000227 0 1:197311514-1:199239815
4697 1 197170591 197447585 CRB1 cmc.brain.rnaseq_splicing -2.14e+00 0.000249 0 1:197311514-1:199239815
12455 1 217804666 218045038 SPATA17 psychencode 1.21e+00 0.000319 0 1:216243848-1:218705513
4704 1 218458629 218511325 RRP15 brain_hippocampus -5.99e-01 0.000189 0 1:216243848-1:218705513
4709 1 218458629 218511325 RRP15 brain_hypothalamus -4.05e-01 0.000172 0 1:216243848-1:218705513
4706 1 218458629 218511325 RRP15 thyroid -5.24e-01 0.000181 0 1:216243848-1:218705513
4710 1 218458629 218511325 RRP15 pituitary -3.85e-01 0.000170 0 1:216243848-1:218705513
4711 1 218458629 218511325 RRP15 brain_anterior_cingulate_cortex_ba24 -3.77e-01 0.000170 0 1:216243848-1:218705513
11693 1 218458629 218511325 RRP15 psychencode -6.13e-01 0.000190 0 1:216243848-1:218705513
4705 1 218458628 218511325 RRP15 cmc.brain.rnaseq -5.62e-01 0.000184 0 1:216243848-1:218705513
4700 1 218458629 218511325 RRP15 brain_nucleus_accumbens_basal_ganglia -1.21e+00 0.000322 0 1:216243848-1:218705513
4698 1 216676587 217311097 ESRRG cmc.brain.rnaseq_splicing -2.50e+00 0.003280 0 1:216243848-1:218705513
4699 1 216676587 217311097 ESRRG cmc.brain.rnaseq_splicing 2.06e+00 0.001240 0 1:216243848-1:218705513
4714 1 216676588 217311097 ESRRG adrenal_gland -6.75e-02 0.000158 0 1:216243848-1:218705513
13109 1 217665317 217667625 RP11-361K17.2 psychencode -7.55e-01 0.000208 0 1:216243848-1:218705513
4707 1 218458629 218511325 RRP15 brain_cortex -4.85e-01 0.000177 0 1:216243848-1:218705513
4712 1 218517538 218519020 RP11-224O19.2 thyroid 3.35e-01 0.000166 0 1:216243848-1:218705513
4703 1 218519577 218617961 TGFB2 thyroid 6.30e-01 0.000191 0 1:216243848-1:218705513
4713 1 217600334 217804424 GPATCH2 brain_frontal_cortex_ba9 -1.10e-01 0.000158 0 1:216243848-1:218705513
4708 1 218458629 218511325 RRP15 brain_putamen_basal_ganglia -4.18e-01 0.000172 0 1:216243848-1:218705513
11779 1 217600334 217804424 GPATCH2 psychencode 3.93e-01 0.000170 0 1:216243848-1:218705513
4702 1 218458629 218511325 RRP15 brain_caudate_basal_ganglia -6.64e-01 0.000196 0 1:216243848-1:218705513
4701 1 218458629 218511325 RRP15 adrenal_gland -6.73e-01 0.000197 0 1:216243848-1:218705513
11778 1 218519577 218617961 TGFB2 psychencode -6.61e-01 0.000195 0 1:216243848-1:218705513
4715 1 241753404 241840678 OPN3 yfs.blood.rnaarr 5.26e+00 0.906000 1 1:241582519-1:242071602
11664 1 241753404 241840678 OPN3 psychencode 1.58e+00 0.000742 0 1:241582519-1:242071602
13517 1 242310816 242372431 RP11-561I11.4 psychencode -1.06e+00 0.000274 0 1:241582519-1:242071602
4717 1 241753416 241840678 OPN3 whole_blood 4.36e+00 0.013900 0 1:241582519-1:242071602
4730 1 241587592 241596792 RP11-527D7.1 brain_substantia_nigra -1.03e+00 0.000244 0 1:241582519-1:242071602
4719 1 241753416 241840678 OPN3 thyroid 4.29e+00 0.010500 0 1:241582519-1:242071602
4721 1 242366857 242374129 RP11-561I11.3 brain_hypothalamus -1.32e+00 0.001890 0 1:241582519-1:242071602
4718 1 242011492 242053241 EXO1 cmc.brain.rnaseq -1.94e+00 0.011800 0 1:241582519-1:242071602
4722 1 242366857 242374129 RP11-561I11.3 brain_putamen_basal_ganglia 1.34e+00 0.001010 0 1:241582519-1:242071602
4728 1 241587592 241596792 RP11-527D7.1 brain_cerebellar_hemisphere 1.86e+00 0.000255 0 1:241582519-1:242071602
4726 1 242366857 242374129 RP11-561I11.3 brain_cortex -1.03e+00 0.000294 0 1:241582519-1:242071602
4734 1 240938816 241520478 RGS7 cmc.brain.rnaseq_splicing 2.01e-01 0.000223 0 1:241582519-1:242071602
4716 1 242310816 242372431 RP11-561I11.4 brain_amygdala -1.49e+00 0.129000 1 1:241582519-1:242071602
4732 1 241587592 241596792 RP11-527D7.1 brain_frontal_cortex_ba9 5.04e-01 0.000238 0 1:241582519-1:242071602
12002 1 241695434 241758944 KMO psychencode 1.10e-01 0.000223 0 1:241582519-1:242071602
12929 1 241792155 241799232 CHML psychencode -9.06e-01 0.000226 0 1:241582519-1:242071602
4727 1 242366857 242374129 RP11-561I11.3 brain_caudate_basal_ganglia -1.64e-01 0.000277 0 1:241582519-1:242071602
4733 1 241587592 241596792 RP11-527D7.1 brain_anterior_cingulate_cortex_ba24 -4.18e-01 0.000224 0 1:241582519-1:242071602
13062 1 241587592 241596792 RP11-527D7.1 psychencode 1.07e+00 0.000240 0 1:241582519-1:242071602
13052 1 242366857 242374129 RP11-561I11.3 psychencode -1.50e+00 0.000571 0 1:241582519-1:242071602
4731 1 241815579 241965434 WDR64 cmc.brain.rnaseq -4.47e-01 0.000240 0 1:241582519-1:242071602
4720 1 242310816 242372431 RP11-561I11.4 brain_cerebellum -1.66e+00 0.002070 0 1:241582519-1:242071602
11773 1 241660903 241683061 FH psychencode 4.76e+00 0.072400 0 1:241582519-1:242071602
4723 1 241695434 241758944 KMO yfs.blood.rnaarr -1.56e+00 0.000631 0 1:241582519-1:242071602
4725 1 241815580 241965435 WDR64 brain_cortex -1.32e+00 0.000380 0 1:241582519-1:242071602
12456 1 241815580 241965435 WDR64 psychencode -4.67e-01 0.000232 0 1:241582519-1:242071602
12635 1 242011269 242058450 EXO1 psychencode -1.14e+00 0.000664 0 1:241582519-1:242071602
12731 1 240931554 241520530 RGS7 psychencode 3.25e+00 0.000561 0 1:241582519-1:242071602
4729 1 242310816 242372431 RP11-561I11.4 brain_caudate_basal_ganglia 3.76e-01 0.000252 0 1:241582519-1:242071602
4724 1 242310816 242372431 RP11-561I11.4 brain_substantia_nigra 1.53e+00 0.000567 0 1:241582519-1:242071602
13104 2 22167481 22188423 AC068490.1 psychencode 4.39e+00 0.655000 1 2:21051230-2:23341383
13391 2 20877569 20879005 AC012065.7 psychencode -1.31e+00 0.000474 0 2:21051230-2:23341383
6035 2 20883788 21022882 C2orf43 pituitary 1.93e+00 0.002430 0 2:21051230-2:23341383
6038 2 20877569 20879005 AC012065.7 whole_blood -1.07e+00 0.000430 0 2:21051230-2:23341383
6036 2 20883788 21022882 C2orf43 whole_blood 2.08e+00 0.001820 0 2:21051230-2:23341383
6047 2 20866424 20873418 GDF7 brain_anterior_cingulate_cortex_ba24 3.34e-01 0.000227 0 2:21051230-2:23341383
6037 2 20883788 21022882 C2orf43 brain_caudate_basal_ganglia -1.63e+00 0.000709 0 2:21051230-2:23341383
6039 2 20883788 21022882 C2orf43 adrenal_gland 1.14e+00 0.000419 0 2:21051230-2:23341383
12300 2 20866424 20873418 GDF7 psychencode 3.30e-01 0.000246 0 2:21051230-2:23341383
6040 2 20883788 21022882 C2orf43 brain_cerebellum 4.86e-01 0.000265 0 2:21051230-2:23341383
6042 2 20883788 21022882 C2orf43 thyroid 3.89e-01 0.000245 0 2:21051230-2:23341383
6044 2 20883788 21022882 C2orf43 brain_frontal_cortex_ba9 -5.02e-01 0.000238 0 2:21051230-2:23341383
6050 2 20760208 20850849 HS1BP3 yfs.blood.rnaarr 2.49e-01 0.000220 0 2:21051230-2:23341383
6043 2 20646835 20649200 RHOB yfs.blood.rnaarr 5.04e-01 0.000244 0 2:21051230-2:23341383
6049 2 20817563 20850864 HS1BP3 cmc.brain.rnaseq_splicing 2.32e-01 0.000221 0 2:21051230-2:23341383
6045 2 20883788 21022882 C2orf43 brain_nucleus_accumbens_basal_ganglia -5.57e-01 0.000231 0 2:21051230-2:23341383
6041 2 20760208 20850849 HS1BP3 thyroid 7.37e-01 0.000246 0 2:21051230-2:23341383
6048 2 20883788 21022882 C2orf43 brain_hippocampus -3.50e-01 0.000226 0 2:21051230-2:23341383
6051 2 20883788 21022882 C2orf43 brain_putamen_basal_ganglia -1.12e-01 0.000218 0 2:21051230-2:23341383
13042 2 23580387 23583247 AC012506.3 psychencode 7.88e-01 0.000259 0 2:21051230-2:23341383
12017 2 20883788 21022882 C2orf43 psychencode -7.93e-01 0.000301 0 2:21051230-2:23341383
12016 2 20760208 20850849 HS1BP3 psychencode -9.11e-01 0.000303 0 2:21051230-2:23341383
12048 2 23608088 23931481 KLHL29 psychencode -1.11e+00 0.000307 0 2:21051230-2:23341383
6046 2 21224300 21266945 APOB cmc.brain.rnaseq 4.95e-01 0.000228 0 2:21051230-2:23341383
6052 2 50145642 51259674 NRXN1 cmc.brain.rnaseq_splicing -1.86e+00 0.000850 0 2:50818928-2:52491133
6053 2 50145642 51259674 NRXN1 cmc.brain.rnaseq_splicing 4.83e-02 0.000157 0 2:50818928-2:52491133
6059 2 57982563 57993187 CTD-2026C7.1 pituitary -2.61e+00 0.002540 0 2:57429100-2:58296890
6060 2 58134785 58387055 VRK2 cmc.brain.rnaseq -2.47e+00 0.000599 0 2:57429100-2:58296890
6056 2 58386378 58468483 FANCL thyroid -4.03e+00 0.008690 0 2:57429100-2:58296890
6061 2 58386377 58468515 FANCL cmc.brain.rnaseq_splicing 9.98e-01 0.000373 0 2:57429100-2:58296890
11634 2 58134786 58387055 VRK2 psychencode -8.08e-01 0.000296 0 2:57429100-2:58296890
6058 2 58134786 58387055 VRK2 whole_blood -2.81e+00 0.004480 0 2:57429100-2:58296890
6062 2 58134786 58387055 VRK2 yfs.blood.rnaarr 1.71e+00 0.000307 0 2:57429100-2:58296890
6064 2 58134786 58387055 VRK2 thyroid 6.72e-01 0.000269 0 2:57429100-2:58296890
6055 2 58654934 59290901 AC007092.1 brain_frontal_cortex_ba9 -5.26e+00 0.194000 0 2:57429100-2:58296890
6057 2 58386377 58468515 FANCL cmc.brain.rnaseq -4.41e+00 0.007500 0 2:57429100-2:58296890
6063 2 58386377 58468515 FANCL cmc.brain.rnaseq_splicing -7.69e-01 0.000284 0 2:57429100-2:58296890
6054 2 58386377 58468515 FANCL cmc.brain.rnaseq_splicing 5.54e+00 0.800000 1 2:57429100-2:58296890
13153 2 58654934 59290901 LINC01122 psychencode 3.45e-01 0.000729 0 2:57429100-2:58296890
11978 2 58386378 58468507 FANCL psychencode -1.09e+00 0.000472 0 2:57429100-2:58296890
6065 2 58134786 58387055 VRK2 adrenal_gland -2.12e+00 0.000257 0 2:57429100-2:58296890
6067 2 57982563 57993187 CTD-2026C7.1 pituitary -3.30e+00 0.022200 0 2:58297664-2:60292000
6074 2 58134785 58387055 VRK2 cmc.brain.rnaseq -1.20e+00 0.000348 0 2:58297664-2:60292000
6073 2 58134786 58387055 VRK2 thyroid 7.57e-01 0.000389 0 2:58297664-2:60292000
6069 2 58134786 58387055 VRK2 adrenal_gland 1.55e+00 0.001200 0 2:58297664-2:60292000
11979 2 58386378 58468507 FANCL psychencode -5.05e-01 0.000211 0 2:58297664-2:60292000
6066 2 58386377 58468515 FANCL cmc.brain.rnaseq -4.13e+00 0.389000 0 2:58297664-2:60292000
6072 2 58386377 58468515 FANCL cmc.brain.rnaseq_splicing 1.82e+00 0.000687 0 2:58297664-2:60292000
6068 2 58654934 59290901 AC007092.1 brain_frontal_cortex_ba9 -2.51e+00 0.017400 0 2:58297664-2:60292000
13154 2 58654934 59290901 LINC01122 psychencode -3.41e-01 0.000358 0 2:58297664-2:60292000
6076 2 58386377 58468515 FANCL cmc.brain.rnaseq_splicing 6.22e-01 0.000233 0 2:58297664-2:60292000
6078 2 59444843 59506535 AC007131.1 brain_cortex 2.69e-01 0.000212 0 2:58297664-2:60292000
13040 2 59444843 59506535 AC007131.1 psychencode 2.96e-01 0.000212 0 2:58297664-2:60292000
6077 2 58386378 58468483 FANCL thyroid -2.76e-01 0.000219 0 2:58297664-2:60292000
6075 2 58386377 58468515 FANCL cmc.brain.rnaseq_splicing -7.46e-01 0.000234 0 2:58297664-2:60292000
11635 2 58134786 58387055 VRK2 psychencode -1.57e+00 0.000445 0 2:58297664-2:60292000
6070 2 58134786 58387055 VRK2 whole_blood 4.17e-01 0.000983 0 2:58297664-2:60292000
6071 2 58134786 58387055 VRK2 yfs.blood.rnaarr 9.83e-01 0.000818 0 2:58297664-2:60292000
6139 2 61404553 61418338 AHSA2 brain_hypothalamus 4.66e-01 0.000191 0 2:60292000-2:62429044
6090 2 61705068 61765418 XPO1 cmc.brain.rnaseq_splicing -1.36e+00 0.000422 0 2:60292000-2:62429044
6102 2 62132802 62363205 COMMD1 cmc.brain.rnaseq_splicing 1.01e+00 0.000276 0 2:60292000-2:62429044
6087 2 62423247 62451866 B3GNT2 ntr.blood.rnaarr -1.49e+00 0.000486 0 2:60292000-2:62429044
6155 2 61427114 61427904 RP11-493E12.2 brain_cerebellum 2.54e-01 0.000180 0 2:60292000-2:62429044
6169 2 62051989 62081278 FAM161A thyroid 6.42e-03 0.000173 0 2:60292000-2:62429044
6152 2 61427114 61427904 RP11-493E12.2 brain_frontal_cortex_ba9 1.56e-01 0.000182 0 2:60292000-2:62429044
6160 2 61427114 61427904 RP11-493E12.2 pituitary -2.37e-01 0.000177 0 2:60292000-2:62429044
6161 2 61427114 61427904 RP11-493E12.2 brain_hypothalamus 1.82e-01 0.000176 0 2:60292000-2:62429044
6144 2 61705068 61765418 XPO1 cmc.brain.rnaseq_splicing -3.28e-01 0.000188 0 2:60292000-2:62429044
6135 2 61404553 61418338 AHSA2 brain_putamen_basal_ganglia 4.89e-01 0.000193 0 2:60292000-2:62429044
6080 2 62727356 62733476 TMEM17 brain_nucleus_accumbens_basal_ganglia 2.92e+00 0.009810 0 2:60292000-2:62429044
6140 2 61698323 61711265 RP11-355B11.2 thyroid -5.27e-01 0.000190 0 2:60292000-2:62429044
6147 2 61705068 61765418 XPO1 cmc.brain.rnaseq_splicing -4.35e-01 0.000187 0 2:60292000-2:62429044
6124 2 61378568 61389240 RP11-493E12.1 brain_cortex -6.79e-01 0.000205 0 2:60292000-2:62429044
6083 2 62817390 62889789 AC092155.4 adrenal_gland -2.21e+00 0.001660 0 2:60292000-2:62429044
6082 2 62115859 62374382 COMMD1 yfs.blood.rnaarr 2.50e+00 0.003720 0 2:60292000-2:62429044
6170 2 61698323 61711265 RP11-355B11.2 pituitary 5.62e-02 0.000172 0 2:60292000-2:62429044
6156 2 61404553 61418338 AHSA2 brain_substantia_nigra 2.68e-01 0.000179 0 2:60292000-2:62429044
6166 2 61404553 61414686 AHSA2 yfs.blood.rnaarr 1.18e-01 0.000174 0 2:60292000-2:62429044
13475 2 61698323 61711265 RP11-355B11.2 psychencode 6.34e-01 0.000208 0 2:60292000-2:62429044
6148 2 61705068 61765418 XPO1 cmc.brain.rnaseq -4.58e-01 0.000187 0 2:60292000-2:62429044
6143 2 61698323 61711265 RP11-355B11.2 brain_cerebellum -5.05e-01 0.000188 0 2:60292000-2:62429044
6112 2 61404553 61418338 AHSA2 adrenal_gland -5.26e-01 0.000231 0 2:60292000-2:62429044
12596 2 62051989 62081278 FAM161A psychencode 4.08e-01 0.000185 0 2:60292000-2:62429044
6172 2 61427114 61427904 RP11-493E12.2 brain_caudate_basal_ganglia -3.50e-02 0.000172 0 2:60292000-2:62429044
6128 2 61378568 61389240 RP11-493E12.1 brain_cerebellum -5.74e-01 0.000199 0 2:60292000-2:62429044
6131 2 61427114 61427904 RP11-493E12.2 brain_cerebellar_hemisphere -5.68e-01 0.000198 0 2:60292000-2:62429044
6145 2 61378568 61389240 RP11-493E12.1 thyroid 1.37e-01 0.000188 0 2:60292000-2:62429044
6086 2 62051989 62081278 FAM161A yfs.blood.rnaarr 1.49e+00 0.000507 0 2:60292000-2:62429044
6108 2 62423248 62451866 B3GNT2 adrenal_gland 8.99e-01 0.000245 0 2:60292000-2:62429044
6099 2 62083830 62084190 RP11-681L4.1 brain_hypothalamus -1.10e+00 0.000289 0 2:60292000-2:62429044
6120 2 62051989 62081278 FAM161A pituitary -6.54e-01 0.000208 0 2:60292000-2:62429044
6126 2 62051989 62081278 FAM161A brain_caudate_basal_ganglia 6.49e-01 0.000203 0 2:60292000-2:62429044
13533 2 61427114 61427904 RP11-493E12.2 psychencode -2.05e-01 0.000171 0 2:60292000-2:62429044
6079 2 62095224 62115858 CCT4 thyroid 3.27e+00 0.028400 0 2:60292000-2:62429044
6104 2 62095224 62115858 CCT4 brain_cerebellar_hemisphere 7.37e-01 0.000266 0 2:60292000-2:62429044
6134 2 61427114 61427904 RP11-493E12.2 thyroid 3.43e-01 0.000195 0 2:60292000-2:62429044
6150 2 61427114 61427904 RP11-493E12.2 whole_blood -4.23e-01 0.000184 0 2:60292000-2:62429044
11739 2 61704984 61765761 XPO1 psychencode -2.19e-01 0.000171 0 2:60292000-2:62429044
6094 2 61368726 61372110 LOC339803 cmc.brain.rnaseq -1.32e+00 0.000380 0 2:60292000-2:62429044
6154 2 61368732 61372104 AC016747.3 pituitary 3.59e-01 0.000180 0 2:60292000-2:62429044
6115 2 62095224 62115939 CCT4 yfs.blood.rnaarr 2.31e-01 0.000223 0 2:60292000-2:62429044
12625 2 61404553 61418338 AHSA2 psychencode 1.38e+00 0.000432 0 2:60292000-2:62429044
6130 2 61404553 61418338 AHSA2 thyroid 5.37e-01 0.000199 0 2:60292000-2:62429044
6173 2 61378568 61389240 RP11-493E12.1 brain_cerebellar_hemisphere -8.79e-03 0.000171 0 2:60292000-2:62429044
6117 2 61404553 61418338 AHSA2 pituitary 6.35e-01 0.000211 0 2:60292000-2:62429044
6088 2 61404553 61418338 AHSA2 brain_cerebellum 1.46e+00 0.000474 0 2:60292000-2:62429044
6164 2 61293362 61365169 KIAA1841 cmc.brain.rnaseq 1.41e-01 0.000175 0 2:60292000-2:62429044
6127 2 61404553 61418338 AHSA2 brain_hippocampus 5.59e-01 0.000201 0 2:60292000-2:62429044
6121 2 61414268 61697856 USP34 ntr.blood.rnaarr 6.44e-01 0.000207 0 2:60292000-2:62429044
6151 2 61378568 61389240 RP11-493E12.1 pituitary -3.32e-01 0.000182 0 2:60292000-2:62429044
6136 2 62051989 62081278 FAM161A adrenal_gland 2.08e-01 0.000192 0 2:60292000-2:62429044
6081 2 62727356 62733476 TMEM17 brain_amygdala -2.87e+00 0.008500 0 2:60292000-2:62429044
6165 2 61293362 61365169 KIAA1841 cmc.brain.rnaseq_splicing 9.37e-02 0.000175 0 2:60292000-2:62429044
6132 2 61404553 61418338 AHSA2 brain_cortex 5.35e-01 0.000198 0 2:60292000-2:62429044
6114 2 61169104 61245296 PUS10 thyroid 8.12e-01 0.000225 0 2:60292000-2:62429044
13484 2 61378568 61389240 RP11-493E12.1 psychencode -1.05e-01 0.000175 0 2:60292000-2:62429044
6168 2 61698323 61711265 RP11-355B11.2 whole_blood -2.65e-01 0.000173 0 2:60292000-2:62429044
6142 2 61169104 61245296 PUS10 whole_blood -4.70e-01 0.000190 0 2:60292000-2:62429044
6098 2 61420036 61697904 USP34 thyroid 1.06e+00 0.000296 0 2:60292000-2:62429044
6119 2 61293362 61365169 KIAA1841 cmc.brain.rnaseq_splicing -6.87e-01 0.000210 0 2:60292000-2:62429044
6111 2 61427114 61427904 RP11-493E12.2 brain_hippocampus -8.12e-01 0.000232 0 2:60292000-2:62429044
6158 2 61169104 61245296 PUS10 pituitary 3.66e-01 0.000178 0 2:60292000-2:62429044
6146 2 61404552 61414686 AHSA2 cmc.brain.rnaseq 4.19e-01 0.000188 0 2:60292000-2:62429044
6084 2 60983365 61029220 PAPOLG thyroid 2.06e+00 0.001250 0 2:60292000-2:62429044
6095 2 61108656 61150645 REL yfs.blood.rnaarr 1.15e+00 0.000313 0 2:60292000-2:62429044
6133 2 61108751 61150178 REL cmc.brain.rnaseq_splicing -5.80e-01 0.000197 0 2:60292000-2:62429044
6110 2 61244360 61276394 PEX13 yfs.blood.rnaarr 7.98e-01 0.000239 0 2:60292000-2:62429044
6141 2 61244360 61279125 PEX13 brain_cerebellum 5.30e-01 0.000190 0 2:60292000-2:62429044
12458 2 61244360 61279125 PEX13 psychencode 2.43e-01 0.000170 0 2:60292000-2:62429044
13453 2 61153044 61158745 RP11-373L24.1 psychencode -2.13e-01 0.000172 0 2:60292000-2:62429044
6101 2 61293006 61390108 KIAA1841 brain_nucleus_accumbens_basal_ganglia 1.01e+00 0.000277 0 2:60292000-2:62429044
12989 2 61368732 61372104 AC016747.3 psychencode 5.00e-02 0.000171 0 2:60292000-2:62429044
6123 2 61167357 61245394 PUS10 yfs.blood.rnaarr 6.68e-01 0.000205 0 2:60292000-2:62429044
6167 2 61378568 61389240 RP11-493E12.1 adrenal_gland -7.71e-02 0.000174 0 2:60292000-2:62429044
6092 2 61404553 61418338 AHSA2 brain_anterior_cingulate_cortex_ba24 1.25e+00 0.000395 0 2:60292000-2:62429044
6116 2 61293006 61390108 KIAA1841 brain_putamen_basal_ganglia 6.63e-01 0.000212 0 2:60292000-2:62429044
6113 2 61404553 61418338 AHSA2 brain_caudate_basal_ganglia 7.65e-01 0.000227 0 2:60292000-2:62429044
6107 2 61169104 61245296 PUS10 brain_cerebellum 9.32e-01 0.000252 0 2:60292000-2:62429044
12457 2 61167357 61245394 PUS10 psychencode 6.93e-01 0.000208 0 2:60292000-2:62429044
6093 2 61404553 61418338 AHSA2 brain_cerebellar_hemisphere 1.29e+00 0.000384 0 2:60292000-2:62429044
6125 2 61293006 61390108 KIAA1841 brain_cerebellum 5.82e-01 0.000205 0 2:60292000-2:62429044
6149 2 61293006 61390108 KIAA1841 brain_substantia_nigra -4.71e-01 0.000185 0 2:60292000-2:62429044
6109 2 61368732 61372104 AC016747.3 whole_blood 8.55e-01 0.000243 0 2:60292000-2:62429044
6106 2 61368732 61372104 AC016747.3 thyroid -7.58e-01 0.000259 0 2:60292000-2:62429044
6157 2 61293006 61390108 KIAA1841 brain_caudate_basal_ganglia 2.92e-01 0.000179 0 2:60292000-2:62429044
6174 2 61293006 61390108 KIAA1841 brain_cortex -5.96e-02 0.000171 0 2:60292000-2:62429044
6105 2 61404553 61418338 AHSA2 brain_frontal_cortex_ba9 9.34e-01 0.000265 0 2:60292000-2:62429044
12459 2 61293006 61391960 KIAA1841 psychencode -7.50e-01 0.000218 0 2:60292000-2:62429044
6171 2 61167547 61245365 PUS10 cmc.brain.rnaseq 2.36e-01 0.000172 0 2:60292000-2:62429044
6096 2 61293362 61365169 KIAA1841 cmc.brain.rnaseq_splicing -1.13e+00 0.000302 0 2:60292000-2:62429044
6137 2 61404552 61414686 AHSA2 cmc.brain.rnaseq_splicing 5.12e-01 0.000192 0 2:60292000-2:62429044
6085 2 61169104 61245296 PUS10 brain_nucleus_accumbens_basal_ganglia 2.04e+00 0.001210 0 2:60292000-2:62429044
6163 2 61388957 61391964 C2orf74 ntr.blood.rnaarr -9.02e-02 0.000175 0 2:60292000-2:62429044
6153 2 61368732 61372104 AC016747.3 adrenal_gland -2.06e-01 0.000182 0 2:60292000-2:62429044
6091 2 61169104 61245296 PUS10 brain_caudate_basal_ganglia 1.36e+00 0.000395 0 2:60292000-2:62429044
6162 2 61372242 61391964 C2orf74 cmc.brain.rnaseq -2.55e-02 0.000176 0 2:60292000-2:62429044
6129 2 62727356 62733476 TMEM17 adrenal_gland 5.63e-01 0.000199 0 2:60292000-2:62429044
6159 2 61404552 61414686 AHSA2 cmc.brain.rnaseq_splicing -3.22e-01 0.000177 0 2:60292000-2:62429044
13189 2 61372243 61391964 C2orf74 psychencode -1.38e-02 0.000174 0 2:60292000-2:62429044
6097 2 61404553 61418338 AHSA2 brain_amygdala 1.06e+00 0.000298 0 2:60292000-2:62429044
6100 2 61404553 61418338 AHSA2 whole_blood 1.03e+00 0.000288 0 2:60292000-2:62429044
6103 2 61404553 61418338 AHSA2 brain_nucleus_accumbens_basal_ganglia 9.32e-01 0.000268 0 2:60292000-2:62429044
6138 2 62727356 62733476 TMEM17 brain_caudate_basal_ganglia 5.52e-01 0.000192 0 2:60292000-2:62429044
6122 2 61427114 61427904 RP11-493E12.2 brain_anterior_cingulate_cortex_ba24 -6.01e-01 0.000206 0 2:60292000-2:62429044
6089 2 62727761 62762780 TMEM17 cmc.brain.rnaseq -1.45e+00 0.000440 0 2:60292000-2:62429044
6118 2 61378568 61389240 RP11-493E12.1 brain_nucleus_accumbens_basal_ganglia -6.53e-01 0.000210 0 2:60292000-2:62429044
6178 2 127413509 127454246 GYPC brain_hippocampus 1.25e+00 0.000350 0 2:125840921-2:127372728
6179 2 127805606 127864864 BIN1 ntr.blood.rnaarr -1.15e+00 0.000307 0 2:125840921-2:127372728
6180 2 127413509 127454246 GYPC thyroid -4.00e-01 0.000174 0 2:125840921-2:127372728
6176 2 124782863 125672863 CNTNAP5 cmc.brain.rnaseq_splicing 3.14e+00 0.018700 0 2:125840921-2:127372728
12237 2 127413509 127454246 GYPC psychencode 1.76e+00 0.000738 0 2:125840921-2:127372728
6175 2 124782863 125672863 CNTNAP5 cmc.brain.rnaseq_splicing -3.15e+00 0.018900 0 2:125840921-2:127372728
12236 2 127805603 127864931 BIN1 psychencode -4.82e-01 0.000181 0 2:125840921-2:127372728
6177 2 127781828 127782786 RP11-521O16.1 brain_cerebellar_hemisphere 1.58e+00 0.000538 0 2:125840921-2:127372728
6183 2 136597196 136633996 MCM6 brain_caudate_basal_ganglia -1.31e+00 0.000379 0 2:137042794-2:138698117
6186 2 136597196 136633996 MCM6 thyroid 9.27e-01 0.000250 0 2:137042794-2:138698117
6189 2 136597196 136633996 MCM6 yfs.blood.rnaarr 7.38e-01 0.000214 0 2:137042794-2:138698117
6191 2 136597196 136633996 MCM6 whole_blood 4.66e-01 0.000184 0 2:137042794-2:138698117
6184 2 137523115 138435287 THSD7B thyroid -1.15e+00 0.000303 0 2:137042794-2:138698117
6193 2 137523115 138435287 THSD7B brain_cerebellum -3.37e-01 0.000174 0 2:137042794-2:138698117
6197 2 137523115 138435287 THSD7B brain_cerebellar_hemisphere 1.13e-02 0.000164 0 2:137042794-2:138698117
6190 2 138721590 138773930 HNMT yfs.blood.rnaarr 7.19e-01 0.000208 0 2:137042794-2:138698117
6181 2 138721807 138773934 HNMT cmc.brain.rnaseq_splicing -3.53e+00 0.064400 0 2:137042794-2:138698117
6187 2 136742746 136779888 AC093391.2 brain_caudate_basal_ganglia -8.39e-01 0.000231 0 2:137042794-2:138698117
6188 2 136597196 136633996 MCM6 brain_cortex 7.35e-01 0.000218 0 2:137042794-2:138698117
6192 2 136742746 136779888 AC093391.2 adrenal_gland 3.81e-01 0.000177 0 2:137042794-2:138698117
6195 2 136597196 136633996 MCM6 brain_cerebellum -3.04e-01 0.000172 0 2:137042794-2:138698117
11983 2 136664247 136743670 DARS psychencode 7.29e-01 0.000209 0 2:137042794-2:138698117
11715 2 136597196 136633996 MCM6 psychencode -4.61e-01 0.000182 0 2:137042794-2:138698117
6182 2 136664247 136743447 DARS whole_blood 2.12e+00 0.001470 0 2:137042794-2:138698117
6194 2 136664247 136743670 DARS yfs.blood.rnaarr -3.58e-01 0.000173 0 2:137042794-2:138698117
6185 2 136664247 136743447 DARS brain_cerebellum -9.83e-01 0.000263 0 2:137042794-2:138698117
6196 2 136664247 136743447 DARS brain_cerebellar_hemisphere 8.10e-02 0.000165 0 2:137042794-2:138698117
11985 2 143635067 143799890 KYNU psychencode -7.04e-01 0.000204 0 2:142518602-2:144519455
13356 2 144433734 144498863 RP11-434H14.1 psychencode 2.54e+00 0.003550 0 2:142518602-2:144519455
12070 2 144695635 145090135 GTDC1 psychencode -4.15e-01 0.000176 0 2:142518602-2:144519455
6209 2 143848931 144525921 ARHGAP15 thyroid -4.71e-01 0.000179 0 2:142518602-2:144519455
6211 2 143635067 143799890 KYNU whole_blood -4.13e-01 0.000176 0 2:142518602-2:144519455
6201 2 143848931 144525921 ARHGAP15 yfs.blood.rnaarr -1.60e+00 0.000548 0 2:142518602-2:144519455
6213 2 140988992 142889270 LRP1B brain_substantia_nigra -3.23e-01 0.000169 0 2:142518602-2:144519455
6214 2 140988992 142889270 LRP1B thyroid -2.52e-01 0.000166 0 2:142518602-2:144519455
6206 2 144703580 145090083 GTDC1 cmc.brain.rnaseq_splicing -9.88e-01 0.000258 0 2:142518602-2:144519455
6215 2 140988992 142889270 LRP1B adrenal_gland -2.34e-01 0.000165 0 2:142518602-2:144519455
6199 2 143848931 144525921 ARHGAP15 brain_cortex -2.39e+00 0.002490 0 2:142518602-2:144519455
6207 2 143635066 143799880 KYNU ntr.blood.rnaarr -7.75e-01 0.000214 0 2:142518602-2:144519455
6202 2 140988992 142889270 LRP1B brain_cortex -1.40e+00 0.000412 0 2:142518602-2:144519455
6205 2 140988992 142889270 LRP1B brain_putamen_basal_ganglia -1.08e+00 0.000282 0 2:142518602-2:144519455
6210 2 143635067 143799890 KYNU thyroid 4.50e-01 0.000178 0 2:142518602-2:144519455
6208 2 140988992 142889270 LRP1B brain_caudate_basal_ganglia -6.23e-01 0.000194 0 2:142518602-2:144519455
6212 2 140988992 142889270 LRP1B brain_nucleus_accumbens_basal_ganglia 3.20e-01 0.000170 0 2:142518602-2:144519455
6204 2 143856467 143857502 AC013437.6 whole_blood 1.10e+00 0.000291 0 2:142518602-2:144519455
6198 2 143848931 144525921 ARHGAP15 brain_substantia_nigra 2.76e+00 0.006640 0 2:142518602-2:144519455
11713 2 143848931 144525921 ARHGAP15 psychencode -3.10e+00 0.017100 0 2:142518602-2:144519455
6203 2 143856053 143856398 MTND3P9 whole_blood 1.38e+00 0.000403 0 2:142518602-2:144519455
6200 2 143886882 144526643 ARHGAP15 ntr.blood.rnaarr -1.63e+00 0.000578 0 2:142518602-2:144519455
13357 2 144053155 144329674 RP11-570L15.2 psychencode -2.70e-01 0.000167 0 2:142518602-2:144519455
13136 2 144398325 144413748 AC092652.1 psychencode 9.81e-01 0.000254 0 2:142518602-2:144519455
6223 2 155554811 155714863 KCNJ3 brain_cerebellar_hemisphere -1.11e+00 0.000297 0 2:155391135-2:157560635
6219 2 157291874 157443924 GPD2 ntr.blood.rnaarr 1.70e+00 0.000636 0 2:155391135-2:157560635
12461 2 155554811 155714863 KCNJ3 psychencode -6.49e-01 0.000198 0 2:155391135-2:157560635
6220 2 154728425 155310489 GALNT13 cmc.brain.rnaseq_splicing 1.58e+00 0.000538 0 2:155391135-2:157560635
6222 2 155292365 155313950 AC009227.2 pituitary -1.39e+00 0.000411 0 2:155391135-2:157560635
6224 2 156868129 156881125 AC093375.1 pituitary 9.86e-01 0.000254 0 2:155391135-2:157560635
6227 2 156868129 156881125 AC093375.1 adrenal_gland 6.29e-01 0.000194 0 2:155391135-2:157560635
6221 2 154728425 155310489 GALNT13 cmc.brain.rnaseq -1.54e+00 0.000507 0 2:155391135-2:157560635
6217 2 155554811 155714863 KCNJ3 pituitary -1.76e+00 0.000720 0 2:155391135-2:157560635
6226 2 155554811 155714863 KCNJ3 brain_nucleus_accumbens_basal_ganglia 8.13e-01 0.000223 0 2:155391135-2:157560635
6229 2 157291802 157470247 GPD2 whole_blood 4.00e-01 0.000176 0 2:155391135-2:157560635
6231 2 155554811 155714863 KCNJ3 brain_cerebellum -3.69e-01 0.000172 0 2:155391135-2:157560635
6228 2 156868129 156881125 AC093375.1 thyroid -2.66e-01 0.000180 0 2:155391135-2:157560635
6230 2 157180944 157198860 NR4A2 brain_cerebellar_hemisphere -2.78e-01 0.000173 0 2:155391135-2:157560635
6216 2 157291802 157470247 GPD2 thyroid 3.32e+00 0.032800 0 2:155391135-2:157560635
6218 2 157291802 157470247 GPD2 yfs.blood.rnaarr 1.70e+00 0.000638 0 2:155391135-2:157560635
6225 2 155554811 155714863 KCNJ3 brain_cortex -8.77e-01 0.000233 0 2:155391135-2:157560635
6288 2 160175490 160472071 BAZ2B thyroid 7.61e-01 0.000301 0 2:159577307-2:161769733
6266 2 160788519 160919121 PLA2R1 thyroid 1.71e+00 0.001090 0 2:159577307-2:161769733
12090 2 160175490 160473203 BAZ2B psychencode 3.28e-01 0.000207 0 2:159577307-2:161769733
6283 2 160569000 160625359 MARCH7 yfs.blood.rnaarr -1.58e+00 0.000551 0 2:159577307-2:161769733
6262 2 160659866 160761260 LY75 brain_caudate_basal_ganglia 2.23e+00 0.001550 0 2:159577307-2:161769733
6267 2 160659866 160761260 LY75 brain_frontal_cortex_ba9 1.97e+00 0.001030 0 2:159577307-2:161769733
6271 2 160659866 160761260 LY75 brain_anterior_cingulate_cortex_ba24 1.90e+00 0.000866 0 2:159577307-2:161769733
6256 2 160627539 160654753 CD302 brain_cerebellum -2.26e+00 0.001770 0 2:159577307-2:161769733
13067 2 160527219 160568946 AC009961.3 psychencode 4.23e-01 0.000217 0 2:159577307-2:161769733
6278 2 160625364 160654753 CD302 yfs.blood.rnaarr -1.59e+00 0.000672 0 2:159577307-2:161769733
6281 2 160659866 160761260 LY75 brain_cerebellar_hemisphere 1.66e+00 0.000588 0 2:159577307-2:161769733
6304 2 160092304 160143310 WDSUB1 brain_nucleus_accumbens_basal_ganglia -1.50e-01 0.000217 0 2:159577307-2:161769733
6237 2 160175489 160473112 BAZ2B cmc.brain.rnaseq_splicing 2.85e+00 0.007910 1 2:159577307-2:161769733
6275 2 160627539 160654753 CD302 whole_blood -1.71e+00 0.000740 0 2:159577307-2:161769733
6249 2 160956177 161128399 ITGB6 brain_substantia_nigra -2.39e+00 0.002310 0 2:159577307-2:161769733
6233 2 160659865 160761262 LY75 ntr.blood.rnaarr 3.40e+00 0.034200 1 2:159577307-2:161769733
6259 2 160527219 160568946 AC009961.3 whole_blood 2.27e+00 0.001690 0 2:159577307-2:161769733
6280 2 160545728 160546802 AC009961.2 thyroid 1.62e+00 0.000622 0 2:159577307-2:161769733
13049 2 160471807 160473593 AC009506.1 psychencode 2.38e+00 0.002350 0 2:159577307-2:161769733
6255 2 160956177 161128399 ITGB6 brain_hypothalamus -2.29e+00 0.001830 0 2:159577307-2:161769733
6318 2 160092304 160143310 WDSUB1 brain_cerebellum 2.61e-01 0.000202 0 2:159577307-2:161769733
6260 2 160659866 160761260 LY75 adrenal_gland 1.96e+00 0.001640 0 2:159577307-2:161769733
6257 2 160956177 161128399 ITGB6 adrenal_gland -2.25e+00 0.001710 0 2:159577307-2:161769733
6232 2 160659866 160761260 LY75 brain_hypothalamus 3.75e+00 0.118000 1 2:159577307-2:161769733
6312 2 160092304 160143310 WDSUB1 brain_hypothalamus 8.02e-02 0.000208 0 2:159577307-2:161769733
6277 2 160788519 160919121 PLA2R1 adrenal_gland 1.78e+00 0.000704 0 2:159577307-2:161769733
6314 2 160092304 160143310 WDSUB1 brain_amygdala -5.68e-02 0.000206 0 2:159577307-2:161769733
6279 2 160627539 160654753 CD302 brain_frontal_cortex_ba9 -1.72e+00 0.000663 0 2:159577307-2:161769733
6258 2 160659867 160761267 LY75 cmc.brain.rnaseq 1.77e+00 0.001700 0 2:159577307-2:161769733
12852 2 160092304 160143310 WDSUB1 psychencode 7.01e-01 0.000232 0 2:159577307-2:161769733
6247 2 160175489 160473059 BAZ2B ntr.blood.rnaarr 2.13e+00 0.002570 0 2:159577307-2:161769733
6307 2 160175489 160473112 BAZ2B cmc.brain.rnaseq_splicing -4.34e-01 0.000215 0 2:159577307-2:161769733
6298 2 160092304 160143310 WDSUB1 adrenal_gland -3.28e-01 0.000229 0 2:159577307-2:161769733
6236 2 160471807 160473593 AC009506.1 brain_cortex -2.91e+00 0.008590 1 2:159577307-2:161769733
6319 2 160092308 160143310 WDSUB1 ntr.blood.rnaarr 2.63e-01 0.000201 0 2:159577307-2:161769733
6251 2 159027593 159313265 CCDC148 brain_frontal_cortex_ba9 2.24e+00 0.002000 0 2:159577307-2:161769733
6243 2 160175490 160473203 BAZ2B yfs.blood.rnaarr 2.68e+00 0.005260 0 2:159577307-2:161769733
6272 2 160175490 160472071 BAZ2B whole_blood 1.71e+00 0.000854 0 2:159577307-2:161769733
11977 2 160956177 161128399 ITGB6 psychencode -1.96e+00 0.000997 0 2:159577307-2:161769733
6235 2 160659866 160761260 LY75 pituitary 3.08e+00 0.012400 1 2:159577307-2:161769733
6296 2 161128662 161350305 RBMS1 pituitary -6.92e-01 0.000234 0 2:159577307-2:161769733
6241 2 160471807 160473593 AC009506.1 whole_blood 2.75e+00 0.006390 0 2:159577307-2:161769733
11663 2 160628362 160761260 LY75 psychencode 2.24e+00 0.001720 0 2:159577307-2:161769733
6305 2 160092304 160143310 WDSUB1 brain_caudate_basal_ganglia -1.74e-01 0.000217 0 2:159577307-2:161769733
6301 2 160092304 160143310 WDSUB1 brain_putamen_basal_ganglia 5.66e-01 0.000224 0 2:159577307-2:161769733
6317 2 160092304 160143310 WDSUB1 brain_cerebellar_hemisphere 3.76e-01 0.000204 0 2:159577307-2:161769733
6238 2 160659866 160761260 LY75 thyroid 2.91e+00 0.007770 1 2:159577307-2:161769733
6240 2 160659866 160761260 LY75 brain_amygdala 2.85e+00 0.006580 0 2:159577307-2:161769733
6242 2 160659866 160761260 LY75 brain_putamen_basal_ganglia 2.84e+00 0.006290 0 2:159577307-2:161769733
6254 2 160659866 160761260 LY75 brain_nucleus_accumbens_basal_ganglia 2.34e+00 0.001930 0 2:159577307-2:161769733
6252 2 159651829 159710266 DAPL1 brain_hypothalamus 1.77e+00 0.001970 0 2:159577307-2:161769733
6244 2 160659866 160761260 LY75 whole_blood 2.69e+00 0.004400 0 2:159577307-2:161769733
6246 2 160659866 160761260 LY75 brain_cortex 2.52e+00 0.002870 0 2:159577307-2:161769733
6294 2 160627539 160654753 CD302 adrenal_gland -6.21e-01 0.000250 0 2:159577307-2:161769733
6300 2 160092304 160143310 WDSUB1 brain_frontal_cortex_ba9 2.76e-01 0.000226 0 2:159577307-2:161769733
6310 2 161128662 161350305 RBMS1 yfs.blood.rnaarr 2.69e-01 0.000209 0 2:159577307-2:161769733
12379 2 161128662 161350305 RBMS1 psychencode 6.48e-01 0.000341 0 2:159577307-2:161769733
6302 2 159313475 159537940 PKP4 cmc.brain.rnaseq_splicing 4.66e-01 0.000222 0 2:159577307-2:161769733
6309 2 160092304 160143310 WDSUB1 brain_cortex -4.69e-02 0.000211 0 2:159577307-2:161769733
12378 2 160788519 160919121 PLA2R1 psychencode 1.01e+00 0.000406 0 2:159577307-2:161769733
6286 2 161993419 162092732 TANK brain_caudate_basal_ganglia 1.09e+00 0.000358 0 2:159577307-2:161769733
6264 2 159718823 159719797 OR7E28P brain_nucleus_accumbens_basal_ganglia -2.00e+00 0.001310 0 2:159577307-2:161769733
12949 2 159514849 159591514 AC005042.4 psychencode -9.72e-01 0.000295 0 2:159577307-2:161769733
6315 2 160092303 160143236 WDSUB1 cmc.brain.rnaseq -5.59e-02 0.000206 0 2:159577307-2:161769733
6285 2 159027593 159313265 CCDC148 thyroid 1.16e+00 0.000387 0 2:159577307-2:161769733
6269 2 160527219 160568946 AC009961.3 thyroid 1.95e+00 0.000996 0 2:159577307-2:161769733
6273 2 159718823 159719797 OR7E28P pituitary -1.77e+00 0.000849 0 2:159577307-2:161769733
6290 2 159651829 159710266 DAPL1 thyroid -9.21e-01 0.000279 0 2:159577307-2:161769733
6274 2 159718823 159719797 OR7E28P thyroid -1.82e+00 0.000842 0 2:159577307-2:161769733
6265 2 160569000 160625363 MARCH7 thyroid 1.37e+00 0.001120 0 2:159577307-2:161769733
6250 2 160624982 160639981 CD302 ntr.blood.rnaarr -2.34e+00 0.002190 0 2:159577307-2:161769733
6248 2 160659866 160761260 LY75 brain_hippocampus 2.42e+00 0.002330 0 2:159577307-2:161769733
6239 2 159313475 159537940 PKP4 cmc.brain.rnaseq -2.78e+00 0.007690 1 2:159577307-2:161769733
6297 2 159651829 159710266 DAPL1 pituitary 6.47e-01 0.000234 0 2:159577307-2:161769733
13085 2 159404937 159405736 AC005042.2 psychencode 7.10e-01 0.000231 0 2:159577307-2:161769733
6306 2 159313476 159539391 PKP4 thyroid 5.17e-01 0.000216 0 2:159577307-2:161769733
12235 2 161993419 162092732 TANK psychencode 4.39e-01 0.000206 0 2:159577307-2:161769733
6316 2 159825146 160089170 TANC1 thyroid -9.02e-02 0.000206 0 2:159577307-2:161769733
6308 2 162101250 162105561 AC009299.3 thyroid -3.64e-01 0.000211 0 2:159577307-2:161769733
11976 2 159825146 160089170 TANC1 psychencode 2.93e+00 0.012000 1 2:159577307-2:161769733
6303 2 160092304 160143310 WDSUB1 brain_anterior_cingulate_cortex_ba24 2.22e-01 0.000222 0 2:159577307-2:161769733
6320 2 160092303 160143236 WDSUB1 cmc.brain.rnaseq_splicing 1.39e-02 0.000196 0 2:159577307-2:161769733
6253 2 160628362 160761260 LY75 yfs.blood.rnaarr 2.33e+00 0.001940 0 2:159577307-2:161769733
6321 2 159027868 159313265 CCDC148 cmc.brain.rnaseq_splicing 1.40e-01 0.000196 0 2:159577307-2:161769733
6263 2 159027868 159313265 CCDC148 cmc.brain.rnaseq -2.13e+00 0.001500 0 2:159577307-2:161769733
13123 2 160545728 160546802 AC009961.2 psychencode 6.09e-01 0.000267 0 2:159577307-2:161769733
6268 2 160527219 160568946 AC009961.3 brain_caudate_basal_ganglia 1.69e+00 0.001020 0 2:159577307-2:161769733
6234 2 159313475 159537940 PKP4 cmc.brain.rnaseq_splicing -3.31e+00 0.032500 1 2:159577307-2:161769733
6299 2 160527219 160568946 AC009961.3 pituitary 2.28e-01 0.000226 0 2:159577307-2:161769733
13207 2 160625364 160654753 CD302 psychencode -2.53e+00 0.003270 0 2:159577307-2:161769733
6287 2 160527219 160568946 AC009961.3 adrenal_gland 1.07e+00 0.000301 0 2:159577307-2:161769733
12377 2 159027593 159313265 CCDC148 psychencode -1.37e+00 0.000462 0 2:159577307-2:161769733
6282 2 160092303 160143236 WDSUB1 cmc.brain.rnaseq_splicing -1.32e+00 0.000569 0 2:159577307-2:161769733
6245 2 159027868 159313265 CCDC148 cmc.brain.rnaseq_splicing 2.57e+00 0.004050 0 2:159577307-2:161769733
6289 2 159825146 160089170 TANC1 brain_cerebellum -8.76e-01 0.000295 0 2:159577307-2:161769733
6291 2 160092304 160143310 WDSUB1 pituitary 6.49e-01 0.000259 0 2:159577307-2:161769733
6311 2 160092303 160143236 WDSUB1 cmc.brain.rnaseq_splicing -2.87e-01 0.000208 0 2:159577307-2:161769733
6313 2 159651829 159710266 DAPL1 adrenal_gland -4.18e-01 0.000208 0 2:159577307-2:161769733
6292 2 160092304 160143310 WDSUB1 thyroid -6.54e-01 0.000259 0 2:159577307-2:161769733
6293 2 160092304 160143310 WDSUB1 brain_hippocampus -5.16e-01 0.000257 0 2:159577307-2:161769733
6276 2 159718823 159719797 OR7E28P adrenal_gland -1.72e+00 0.000715 0 2:159577307-2:161769733
6270 2 160092304 160143310 WDSUB1 whole_blood -1.82e+00 0.000957 0 2:159577307-2:161769733
12468 2 159651829 159719293 DAPL1 psychencode 1.23e+00 0.000380 0 2:159577307-2:161769733
6261 2 160092304 160143310 WDSUB1 brain_substantia_nigra 2.23e+00 0.001570 0 2:159577307-2:161769733
6295 2 160092304 160143310 WDSUB1 yfs.blood.rnaarr -6.26e-01 0.000242 0 2:159577307-2:161769733
6284 2 159825146 160089170 TANC1 brain_cerebellar_hemisphere -1.22e+00 0.000410 0 2:159577307-2:161769733
6367 2 172640880 172856352 SLC25A12 brain_hippocampus -1.46e+00 0.000586 0 2:173139071-2:175588718
6335 2 173292081 173371181 ITGA6 cmc.brain.rnaseq 2.25e+00 0.002350 0 2:173139071-2:175588718
6372 2 172640880 172856352 SLC25A12 brain_hypothalamus -1.35e+00 0.000510 0 2:173139071-2:175588718
6362 2 173420101 173489823 PDK1 brain_putamen_basal_ganglia -1.40e+00 0.000614 0 2:173139071-2:175588718
6402 2 173541869 173600934 RAPGEF4-AS1 brain_nucleus_accumbens_basal_ganglia -1.61e-01 0.000228 0 2:173139071-2:175588718
6391 2 172864490 172947158 METAP1D brain_cerebellar_hemisphere 7.26e-01 0.000295 0 2:173139071-2:175588718
6347 2 175424300 175547644 WIPF1 brain_hypothalamus 2.04e+00 0.001510 0 2:173139071-2:175588718
6388 2 176040985 176046490 ATP5G3 cmc.brain.rnaseq 8.15e-01 0.000310 0 2:173139071-2:175588718
12623 2 172864490 172947158 METAP1D psychencode 2.68e+00 0.006770 0 2:173139071-2:175588718
6371 2 174937174 175113365 OLA1 cmc.brain.rnaseq -2.01e-02 0.000515 0 2:173139071-2:175588718
6375 2 176040986 176048942 ATP5G3 pituitary 1.14e+00 0.000490 0 2:173139071-2:175588718
6379 2 176040986 176048942 ATP5G3 adrenal_gland 7.67e-01 0.000430 0 2:173139071-2:175588718
6390 2 174833079 174834146 RP11-394I13.2 brain_cerebellum -3.57e-01 0.000303 0 2:173139071-2:175588718
6383 2 176040986 176048942 ATP5G3 brain_frontal_cortex_ba9 -1.16e+00 0.000331 0 2:173139071-2:175588718
12388 2 176040986 176049335 ATP5G3 psychencode 2.73e-01 0.000222 0 2:173139071-2:175588718
6331 2 173420101 173489823 PDK1 brain_cerebellar_hemisphere 2.52e+00 0.004980 0 2:173139071-2:175588718
6339 2 174937175 175113426 OLA1 ntr.blood.rnaarr 1.99e+00 0.002190 0 2:173139071-2:175588718
13108 2 176032632 176033250 AC096649.2 psychencode -2.28e-01 0.000223 0 2:173139071-2:175588718
6360 2 175424300 175547644 WIPF1 brain_putamen_basal_ganglia 1.58e+00 0.000710 0 2:173139071-2:175588718
6404 2 172640880 172856352 SLC25A12 thyroid 2.80e-02 0.000215 0 2:173139071-2:175588718
6329 2 173420101 173489823 PDK1 brain_cerebellum 2.72e+00 0.008800 0 2:173139071-2:175588718
6386 2 173541869 173600934 RAPGEF4-AS1 brain_amygdala -7.79e-01 0.000314 0 2:173139071-2:175588718
6361 2 173292082 173371181 ITGA6 whole_blood -1.60e+00 0.000668 0 2:173139071-2:175588718
11982 2 172640880 172864766 SLC25A12 psychencode -6.45e-01 0.000270 0 2:173139071-2:175588718
6396 2 173541869 173600934 RAPGEF4-AS1 brain_cerebellum -3.36e-01 0.000240 0 2:173139071-2:175588718
6338 2 173420101 173489823 PDK1 brain_caudate_basal_ganglia 2.23e+00 0.002220 0 2:173139071-2:175588718
6381 2 173541869 173600934 RAPGEF4-AS1 pituitary -8.82e-01 0.000359 0 2:173139071-2:175588718
6350 2 175424300 175547644 WIPF1 brain_frontal_cortex_ba9 2.02e+00 0.001360 0 2:173139071-2:175588718
11772 2 173940163 174132738 MLTK psychencode 1.09e+00 0.000324 0 2:173139071-2:175588718
6403 2 173292082 173371181 ITGA6 yfs.blood.rnaarr -1.48e-01 0.000223 0 2:173139071-2:175588718
11771 2 173292082 173371181 ITGA6 psychencode 2.16e+00 0.002180 0 2:173139071-2:175588718
6344 2 175424300 175547644 WIPF1 brain_nucleus_accumbens_basal_ganglia 2.16e+00 0.001880 0 2:173139071-2:175588718
6370 2 172778958 172848599 HAT1 yfs.blood.rnaarr -1.35e+00 0.000523 0 2:173139071-2:175588718
6330 2 173940555 174132737 ZAK ntr.blood.rnaarr 2.71e+00 0.005060 0 2:173139071-2:175588718
6376 2 175424300 175547644 WIPF1 brain_cerebellar_hemisphere 1.23e+00 0.000481 0 2:173139071-2:175588718
6364 2 175612322 175629200 CHRNA1 cmc.brain.rnaseq -1.22e+00 0.000602 0 2:173139071-2:175588718
6342 2 175664091 175870097 CHN1 brain_cerebellar_hemisphere 2.33e+00 0.001990 0 2:173139071-2:175588718
6349 2 174937175 175113426 OLA1 brain_caudate_basal_ganglia 2.13e+00 0.001410 0 2:173139071-2:175588718
6355 2 175424300 175547644 WIPF1 brain_substantia_nigra 1.88e+00 0.001130 0 2:173139071-2:175588718
6405 2 172864490 172947158 METAP1D brain_cortex -1.31e-01 0.000215 0 2:173139071-2:175588718
6346 2 175424300 175547644 WIPF1 brain_caudate_basal_ganglia 2.04e+00 0.001530 0 2:173139071-2:175588718
6353 2 173541869 173600934 RAPGEF4-AS1 brain_frontal_cortex_ba9 -1.78e+00 0.001270 0 2:173139071-2:175588718
6333 2 172864490 172947158 METAP1D pituitary 2.22e+00 0.003630 0 2:173139071-2:175588718
6348 2 175424301 175547627 WIPF1 cmc.brain.rnaseq 2.03e+00 0.001460 0 2:173139071-2:175588718
6387 2 173600002 173917621 RAPGEF4 thyroid -5.08e-02 0.000312 0 2:173139071-2:175588718
6334 2 172864490 172947158 METAP1D brain_frontal_cortex_ba9 2.14e+00 0.002360 0 2:173139071-2:175588718
6324 2 173600524 173917620 RAPGEF4 cmc.brain.rnaseq_splicing 3.71e+00 0.089100 1 2:173139071-2:175588718
6358 2 173328990 173330750 AC078883.3 whole_blood 1.52e+00 0.000817 0 2:173139071-2:175588718
12156 2 172778958 172848599 HAT1 psychencode 1.46e+00 0.000630 0 2:173139071-2:175588718
6354 2 174937175 175113426 OLA1 brain_hypothalamus 2.14e+00 0.001240 0 2:173139071-2:175588718
6382 2 175424300 175547644 WIPF1 yfs.blood.rnaarr -8.88e-01 0.000339 0 2:173139071-2:175588718
6351 2 175424300 175547644 WIPF1 brain_hippocampus 1.96e+00 0.001350 0 2:173139071-2:175588718
6341 2 175260458 175294303 SCRN3 adrenal_gland 1.84e+00 0.002000 0 2:173139071-2:175588718
6384 2 175296299 175351816 GPR155 cmc.brain.rnaseq_splicing 1.00e+00 0.000322 0 2:173139071-2:175588718
6374 2 175296298 175351843 GPR155 ntr.blood.rnaarr -1.23e+00 0.000497 0 2:173139071-2:175588718
6395 2 175424300 175547644 WIPF1 thyroid 6.38e-01 0.000248 0 2:173139071-2:175588718
11986 2 175424300 175547644 WIPF1 psychencode 2.03e+00 0.001450 0 2:173139071-2:175588718
6356 2 172639914 172750816 SLC25A12 cmc.brain.rnaseq_splicing -1.61e+00 0.000870 0 2:173139071-2:175588718
6337 2 175296299 175351816 GPR155 cmc.brain.rnaseq_splicing 1.83e+00 0.002240 0 2:173139071-2:175588718
6352 2 175260456 175294306 SCRN3 ntr.blood.rnaarr -1.82e+00 0.001290 0 2:173139071-2:175588718
6369 2 173541869 173600934 RAPGEF4-AS1 brain_hypothalamus -9.76e-01 0.000526 0 2:173139071-2:175588718
6343 2 175296299 175351816 GPR155 cmc.brain.rnaseq_splicing -2.28e+00 0.001920 0 2:173139071-2:175588718
6399 2 175260456 175294303 SCRN3 cmc.brain.rnaseq -4.60e-01 0.000232 0 2:173139071-2:175588718
6373 2 175352117 175353114 AC010894.3 brain_cerebellum 1.30e+00 0.000500 0 2:173139071-2:175588718
13473 2 175036619 175037453 RP11-451F14.1 psychencode -9.74e-01 0.000473 0 2:173139071-2:175588718
6398 2 174219548 174233725 CDCA7 thyroid -5.67e-01 0.000234 0 2:173139071-2:175588718
6357 2 175296966 175351822 GPR155 thyroid -1.48e+00 0.000824 0 2:173139071-2:175588718
6359 2 172639914 172750816 SLC25A12 cmc.brain.rnaseq_splicing 1.52e+00 0.000762 0 2:173139071-2:175588718
6368 2 175664091 175870097 CHN1 brain_cerebellum 1.49e+00 0.000558 0 2:173139071-2:175588718
6327 2 173345568 173421292 AC093818.1 whole_blood 3.06e+00 0.016900 0 2:173139071-2:175588718
6380 2 175411869 175639555 AC018890.6 brain_caudate_basal_ganglia 1.18e+00 0.000384 0 2:173139071-2:175588718
13130 2 175190755 175195371 AC018470.4 psychencode 3.89e+00 0.283000 1 2:173139071-2:175588718
6365 2 175424300 175547644 WIPF1 brain_cerebellum 1.52e+00 0.000592 0 2:173139071-2:175588718
12258 2 174937175 175113426 OLA1 psychencode 9.00e-01 0.000623 0 2:173139071-2:175588718
6392 2 173345568 173421292 AC093818.1 pituitary -9.42e-01 0.000285 0 2:173139071-2:175588718
6393 2 174833079 174834146 RP11-394I13.2 thyroid 8.30e-02 0.000281 0 2:173139071-2:175588718
6332 2 173420100 173489823 PDK1 cmc.brain.rnaseq_splicing 2.40e+00 0.004350 0 2:173139071-2:175588718
6340 2 173420100 173489823 PDK1 cmc.brain.rnaseq_splicing -2.07e+00 0.002180 0 2:173139071-2:175588718
12467 2 175296966 175351822 GPR155 psychencode 2.39e+00 0.003800 0 2:173139071-2:175588718
6378 2 174771186 174830430 SP3 cmc.brain.rnaseq 1.29e+00 0.000441 0 2:173139071-2:175588718
6336 2 172864490 172947158 METAP1D brain_cerebellum -2.18e+00 0.002260 0 2:173139071-2:175588718
6397 2 173541869 173600934 RAPGEF4-AS1 brain_cortex -3.21e-01 0.000240 0 2:173139071-2:175588718
6366 2 173420101 173489823 PDK1 whole_blood 1.32e+00 0.000589 0 2:173139071-2:175588718
6322 2 173600524 173917620 RAPGEF4 cmc.brain.rnaseq_splicing -3.90e+00 0.193000 1 2:173139071-2:175588718
13093 2 173541869 173600934 RAPGEF4-AS1 psychencode -6.06e-01 0.000293 0 2:173139071-2:175588718
6325 2 175212749 175260443 CIR1 ntr.blood.rnaarr -3.37e+00 0.039700 1 2:173139071-2:175588718
6394 2 174771187 174830430 SP3 thyroid -9.40e-02 0.000274 0 2:173139071-2:175588718
6400 2 173541869 173600934 RAPGEF4-AS1 brain_cerebellar_hemisphere 3.61e-01 0.000229 0 2:173139071-2:175588718
6323 2 175212750 175260443 CIR1 thyroid -3.49e+00 0.129000 1 2:173139071-2:175588718
6401 2 173541869 173600934 RAPGEF4-AS1 brain_putamen_basal_ganglia 4.26e-01 0.000228 0 2:173139071-2:175588718
6389 2 174876584 174877703 RP11-394I13.3 thyroid 7.18e-02 0.000307 0 2:173139071-2:175588718
6377 2 174937175 175113426 OLA1 yfs.blood.rnaarr 3.61e-01 0.000462 0 2:173139071-2:175588718
6363 2 174937175 175113426 OLA1 brain_cortex 9.33e-01 0.000613 0 2:173139071-2:175588718
6345 2 175296299 175351816 GPR155 cmc.brain.rnaseq_splicing -2.15e+00 0.001560 0 2:173139071-2:175588718
6326 2 175212750 175260443 CIR1 yfs.blood.rnaarr -2.99e+00 0.022500 1 2:173139071-2:175588718
6328 2 175260456 175294303 SCRN3 cmc.brain.rnaseq_splicing 3.11e+00 0.015300 0 2:173139071-2:175588718
6385 2 175411869 175639555 AC018890.6 brain_frontal_cortex_ba9 9.96e-01 0.000317 0 2:173139071-2:175588718
11680 2 197831741 198175897 ANKRD44 psychencode -9.65e-03 0.000307 0 2:198078110-2:199311125
6422 2 197627756 197664449 GTF3C3 yfs.blood.rnaarr 2.38e+00 0.000848 0 2:198078110-2:199311125
6435 2 197627756 197664449 GTF3C3 whole_blood -1.27e+00 0.000268 0 2:198078110-2:199311125
6415 2 197831741 198175897 ANKRD44 brain_cortex -4.39e+00 0.019700 0 2:198078110-2:199311125
6428 2 198669425 199014608 PLCL1 cmc.brain.rnaseq_splicing -1.81e+00 0.000459 0 2:198078110-2:199311125
12018 2 197627756 197664449 GTF3C3 psychencode 8.12e-01 0.000263 0 2:198078110-2:199311125
6425 2 198669425 199014608 PLCL1 cmc.brain.rnaseq_splicing -3.16e+00 0.000601 0 2:198078110-2:199311125
6420 2 197669726 197675000 C2orf66 brain_hippocampus -1.18e+00 0.001020 0 2:198078110-2:199311125
6436 2 197831741 198175897 ANKRD44 whole_blood -7.70e-01 0.000263 0 2:198078110-2:199311125
6434 2 197831741 198175897 ANKRD44 brain_substantia_nigra -6.70e-01 0.000273 0 2:198078110-2:199311125
6430 2 197669726 197675000 C2orf66 pituitary 1.08e+00 0.000384 0 2:198078110-2:199311125
6426 2 198351307 198364998 HSPD1 cmc.brain.rnaseq_splicing -5.45e-01 0.000504 0 2:198078110-2:199311125
6418 2 198062715 198063997 AC013264.2 whole_blood 2.23e+00 0.002500 0 2:198078110-2:199311125
6432 2 197851385 198175521 ANKRD44 cmc.brain.rnaseq -4.42e-01 0.000313 0 2:198078110-2:199311125
6433 2 197669726 197675000 C2orf66 brain_anterior_cingulate_cortex_ba24 -8.05e-01 0.000290 0 2:198078110-2:199311125
6412 2 198669426 199437305 PLCL1 thyroid 4.59e+00 0.046700 1 2:198078110-2:199311125
6413 2 198669426 199437305 PLCL1 brain_cerebellum -4.56e+00 0.040500 1 2:198078110-2:199311125
6410 2 198432948 198540769 RFTN2 pituitary 4.69e+00 0.073300 1 2:198078110-2:199311125
6429 2 198432948 198540769 RFTN2 thyroid 1.48e+00 0.000435 0 2:198078110-2:199311125
12884 2 197697728 197792520 PGAP1 psychencode 1.57e-01 0.000271 0 2:198078110-2:199311125
6414 2 198256697 198299771 SF3B1 cmc.brain.rnaseq 4.44e+00 0.024700 0 2:198078110-2:199311125
6423 2 198351307 198364998 HSPD1 cmc.brain.rnaseq -8.96e-01 0.000684 0 2:198078110-2:199311125
11980 2 198318147 198340032 COQ10B psychencode -6.89e-01 0.000436 0 2:198078110-2:199311125
6417 2 197859249 198175521 ANKRD44 ntr.blood.rnaarr -3.98e+00 0.004120 0 2:198078110-2:199311125
11981 2 198254508 198299815 SF3B1 psychencode 3.99e+00 0.004170 0 2:198078110-2:199311125
6407 2 198254508 198299815 SF3B1 thyroid 4.83e+00 0.141000 1 2:198078110-2:199311125
6421 2 198669426 199437305 PLCL1 yfs.blood.rnaarr 3.41e+00 0.000864 0 2:198078110-2:199311125
6406 2 197831741 198175897 ANKRD44 yfs.blood.rnaarr -5.00e+00 0.320000 1 2:198078110-2:199311125
6424 2 198669426 199437305 PLCL1 whole_blood 3.16e+00 0.000659 0 2:198078110-2:199311125
12301 2 198351305 198381461 HSPD1 psychencode -4.89e-01 0.000379 0 2:198078110-2:199311125
6411 2 197831741 198175897 ANKRD44 adrenal_gland -4.64e+00 0.058300 1 2:198078110-2:199311125
12460 2 198432948 198540769 RFTN2 psychencode 3.33e-01 0.000314 0 2:198078110-2:199311125
11984 2 198669426 199437305 PLCL1 psychencode 4.54e+00 0.038000 0 2:198078110-2:199311125
6431 2 198669532 199220210 PLCL1 ntr.blood.rnaarr 2.67e+00 0.000366 0 2:198078110-2:199311125
6419 2 198435526 198540584 RFTN2 cmc.brain.rnaseq_splicing 3.66e+00 0.001760 0 2:198078110-2:199311125
13179 2 199164087 199239821 AC005235.1 psychencode 2.46e+00 0.001780 0 2:198078110-2:199311125
6416 2 198254508 198299815 SF3B1 brain_cerebellum 4.28e+00 0.012800 0 2:198078110-2:199311125
6408 2 198254508 198299815 SF3B1 brain_hypothalamus 4.81e+00 0.130000 1 2:198078110-2:199311125
6427 2 198669425 199014608 PLCL1 cmc.brain.rnaseq 2.87e+00 0.000497 0 2:198078110-2:199311125
13239 2 198570087 198573113 MARS2 psychencode -3.81e+00 0.002550 0 2:198078110-2:199311125
6409 2 198254508 198299815 SF3B1 brain_caudate_basal_ganglia 4.71e+00 0.079500 1 2:198078110-2:199311125
6489 2 208972957 208977235 CRYGEP brain_hypothalamus 3.41e-01 0.000183 0 2:206735704-2:208644421
6445 2 209130991 209223475 PIKFYVE adrenal_gland 1.95e+00 0.001050 0 2:206735704-2:208644421
12257 2 207602487 207630271 MDH1B psychencode -1.34e-01 0.000171 0 2:206735704-2:208644421
12672 2 208693027 208890284 PLEKHM3 psychencode -8.10e-01 0.000229 0 2:206735704-2:208644421
6504 2 207516345 207583120 DYTN whole_blood -1.73e-01 0.000171 0 2:206735704-2:208644421
6482 2 206858445 206951027 INO80D yfs.blood.rnaarr 5.71e-01 0.000197 0 2:206735704-2:208644421
6454 2 207551241 207552086 AC010731.6 whole_blood 1.22e+00 0.000351 0 2:206735704-2:208644421
6447 2 207598941 207630050 MDH1B cmc.brain.rnaseq_splicing 1.73e+00 0.000697 0 2:206735704-2:208644421
6478 2 207598941 207630050 MDH1B cmc.brain.rnaseq_splicing -6.23e-01 0.000205 0 2:206735704-2:208644421
6510 2 207598941 207630050 MDH1B cmc.brain.rnaseq -3.58e-02 0.000170 0 2:206735704-2:208644421
12938 2 207139387 207179148 ZDBF2 psychencode 1.15e+00 0.000324 0 2:206735704-2:208644421
6458 2 207602487 207630080 MDH1B brain_caudate_basal_ganglia 1.01e+00 0.000282 0 2:206735704-2:208644421
6459 2 207602487 207630080 MDH1B brain_cerebellar_hemisphere -9.43e-01 0.000267 0 2:206735704-2:208644421
6468 2 207602487 207630080 MDH1B brain_cerebellum -7.47e-01 0.000225 0 2:206735704-2:208644421
6499 2 206858445 206950680 INO80D brain_cerebellar_hemisphere 2.91e-01 0.000176 0 2:206735704-2:208644421
6479 2 206979541 207024308 NDUFS1 thyroid -6.09e-01 0.000203 0 2:206735704-2:208644421
6472 2 207139522 207179148 ZDBF2 cmc.brain.rnaseq 7.05e-01 0.000215 0 2:206735704-2:208644421
6457 2 207308263 207485851 ADAM23 yfs.blood.rnaarr 1.09e+00 0.000299 0 2:206735704-2:208644421
6471 2 207602487 207630080 MDH1B brain_nucleus_accumbens_basal_ganglia -6.88e-01 0.000216 0 2:206735704-2:208644421
6486 2 207602487 207630080 MDH1B brain_hippocampus -5.10e-01 0.000193 0 2:206735704-2:208644421
12463 2 208576264 208626563 CCNYL1 psychencode -2.26e+00 0.004820 0 2:206735704-2:208644421
6450 2 207507142 207514173 AC010731.4 brain_cortex 1.37e+00 0.000412 0 2:206735704-2:208644421
6490 2 207602487 207630080 MDH1B brain_cortex -3.64e-01 0.000182 0 2:206735704-2:208644421
6501 2 207602487 207630080 MDH1B brain_hypothalamus -1.42e-01 0.000172 0 2:206735704-2:208644421
6469 2 208104374 208110611 AC007879.7 adrenal_gland 7.78e-01 0.000221 0 2:206735704-2:208644421
6446 2 209025464 209028300 CRYGA brain_putamen_basal_ganglia -1.73e+00 0.000743 0 2:206735704-2:208644421
6502 2 209025464 209028300 CRYGA brain_caudate_basal_ganglia 7.86e-03 0.000171 0 2:206735704-2:208644421
6506 2 207630081 207657233 FASTKD2 yfs.blood.rnaarr 1.37e-01 0.000171 0 2:206735704-2:208644421
6456 2 209030067 209054797 C2orf80 brain_frontal_cortex_ba9 -9.89e-01 0.000333 0 2:206735704-2:208644421
12007 2 207630081 207657233 FASTKD2 psychencode -1.27e+00 0.000371 0 2:206735704-2:208644421
6503 2 207602487 207630080 MDH1B brain_frontal_cortex_ba9 -1.10e-01 0.000171 0 2:206735704-2:208644421
6505 2 207602487 207630080 MDH1B brain_anterior_cingulate_cortex_ba24 -8.50e-02 0.000171 0 2:206735704-2:208644421
6488 2 207308263 207485851 ADAM23 thyroid 4.74e-01 0.000187 0 2:206735704-2:208644421
11975 2 207308263 207485851 ADAM23 psychencode -7.22e-01 0.000221 0 2:206735704-2:208644421
6441 2 208394615 208470284 CREB1 cmc.brain.rnaseq -2.74e+00 0.005710 0 2:206735704-2:208644421
6480 2 206979541 207024308 NDUFS1 pituitary -5.93e-01 0.000201 0 2:206735704-2:208644421
6453 2 207507141 207514173 LOC200726 cmc.brain.rnaseq 1.21e+00 0.000359 0 2:206735704-2:208644421
6508 2 207602487 207630080 MDH1B brain_putamen_basal_ganglia -9.90e-02 0.000170 0 2:206735704-2:208644421
6483 2 209025464 209028300 CRYGA brain_nucleus_accumbens_basal_ganglia -5.55e-01 0.000196 0 2:206735704-2:208644421
6439 2 208627310 208634287 FZD5 thyroid -2.54e+00 0.006600 0 2:206735704-2:208644421
6477 2 209030067 209054797 C2orf80 brain_anterior_cingulate_cortex_ba24 -5.69e-01 0.000209 0 2:206735704-2:208644421
6493 2 209030067 209054797 C2orf80 brain_hippocampus 3.56e-01 0.000181 0 2:206735704-2:208644421
6497 2 209030067 209054797 C2orf80 brain_cortex 2.59e-01 0.000178 0 2:206735704-2:208644421
12464 2 208627310 208634287 FZD5 psychencode -1.87e+00 0.000905 0 2:206735704-2:208644421
6487 2 207804278 207834198 CPO thyroid -4.59e-01 0.000188 0 2:206735704-2:208644421
6466 2 206979541 207024308 NDUFS1 brain_nucleus_accumbens_basal_ganglia -7.72e-01 0.000228 0 2:206735704-2:208644421
11974 2 206858445 206951027 INO80D psychencode 8.84e-01 0.000246 0 2:206735704-2:208644421
12837 2 209030067 209054797 C2orf80 psychencode 1.32e+00 0.000378 0 2:206735704-2:208644421
6481 2 206979541 207024308 NDUFS1 brain_cerebellar_hemisphere -5.59e-01 0.000198 0 2:206735704-2:208644421
12303 2 207804278 207834198 CPO psychencode 5.35e-01 0.000193 0 2:206735704-2:208644421
6509 2 207602487 207630080 MDH1B adrenal_gland 6.51e-02 0.000170 0 2:206735704-2:208644421
6452 2 207630111 207660911 FASTKD2 cmc.brain.rnaseq_splicing 1.36e+00 0.000408 0 2:206735704-2:208644421
6443 2 208445355 208490652 METTL21A adrenal_gland -2.57e+00 0.003760 0 2:206735704-2:208644421
6442 2 208445355 208490652 METTL21A thyroid -2.62e+00 0.004240 0 2:206735704-2:208644421
6484 2 206979541 207024308 NDUFS1 brain_cerebellum -5.32e-01 0.000195 0 2:206735704-2:208644421
6475 2 207938861 208031991 KLF7 thyroid 6.86e-01 0.000210 0 2:206735704-2:208644421
6444 2 208445355 208490652 METTL21A whole_blood -2.52e+00 0.003290 0 2:206735704-2:208644421
6451 2 209030070 209054773 C2orf80 cmc.brain.rnaseq_splicing -1.25e+00 0.000409 0 2:206735704-2:208644421
13092 2 206949329 206951288 AC007383.3 psychencode 7.68e-02 0.000169 0 2:206735704-2:208644421
6491 2 209030070 209054773 C2orf80 cmc.brain.rnaseq_splicing 3.33e-01 0.000182 0 2:206735704-2:208644421
6473 2 206858445 206950680 INO80D brain_hypothalamus 6.77e-01 0.000211 0 2:206735704-2:208644421
6461 2 206979541 207024308 NDUFS1 brain_amygdala -9.29e-01 0.000261 0 2:206735704-2:208644421
6455 2 208445355 208490652 METTL21A brain_cerebellar_hemisphere -1.21e+00 0.000334 0 2:206735704-2:208644421
6470 2 206858444 206950906 INO80D cmc.brain.rnaseq 7.34e-01 0.000217 0 2:206735704-2:208644421
6494 2 206979541 207024308 NDUFS1 brain_anterior_cingulate_cortex_ba24 -3.39e-01 0.000180 0 2:206735704-2:208644421
12008 2 207938861 208031991 KLF7 psychencode -2.50e+00 0.003450 0 2:206735704-2:208644421
6462 2 206979541 207024308 NDUFS1 brain_caudate_basal_ganglia -9.34e-01 0.000261 0 2:206735704-2:208644421
12302 2 208445355 208490652 METTL21A psychencode -2.69e+00 0.005100 0 2:206735704-2:208644421
6467 2 206979541 207024308 NDUFS1 brain_frontal_cortex_ba9 -7.68e-01 0.000227 0 2:206735704-2:208644421
6496 2 206979541 207024308 NDUFS1 brain_hippocampus -3.25e-01 0.000179 0 2:206735704-2:208644421
6438 2 208445355 208490652 METTL21A pituitary -2.80e+00 0.006710 0 2:206735704-2:208644421
6440 2 208446076 208489973 METTL21A cmc.brain.rnaseq -2.77e+00 0.006220 0 2:206735704-2:208644421
13107 2 207731519 207733013 AC008269.2 psychencode -1.76e+00 0.000743 0 2:206735704-2:208644421
6495 2 209030070 209054773 C2orf80 cmc.brain.rnaseq -2.52e-01 0.000180 0 2:206735704-2:208644421
6492 2 207630272 207657233 FASTKD2 whole_blood 3.50e-01 0.000181 0 2:206735704-2:208644421
6507 2 207985608 207986768 KLF7-IT1 thyroid 8.65e-02 0.000170 0 2:206735704-2:208644421
6474 2 209119971 209120905 IDH1-AS1 brain_cerebellum 6.66e-01 0.000210 0 2:206735704-2:208644421
11626 2 206979541 207024327 NDUFS1 psychencode -4.62e-01 0.000187 0 2:206735704-2:208644421
6437 2 208972957 208977235 CRYGEP brain_amygdala -3.33e+00 0.032600 0 2:206735704-2:208644421
13139 2 206980271 206987047 AC007383.4 psychencode 6.62e-01 0.000213 0 2:206735704-2:208644421
6485 2 208576264 208626563 CCNYL1 thyroid -5.17e-01 0.000195 0 2:206735704-2:208644421
6460 2 208972957 208977235 CRYGEP brain_substantia_nigra -8.00e-01 0.000265 0 2:206735704-2:208644421
6449 2 205410515 206484886 PARD3B cmc.brain.rnaseq -1.36e+00 0.000416 0 2:206735704-2:208644421
11988 2 205410516 206484886 PARD3B psychencode 4.70e-01 0.000189 0 2:206735704-2:208644421
6463 2 206987802 207024243 NDUFS1 cmc.brain.rnaseq -8.58e-01 0.000243 0 2:206735704-2:208644421
6465 2 206979541 207024308 NDUFS1 brain_putamen_basal_ganglia -7.92e-01 0.000233 0 2:206735704-2:208644421
6498 2 207024328 207027652 EEF1B2 thyroid 3.28e-01 0.000178 0 2:206735704-2:208644421
6464 2 207040040 207082771 GPR1 thyroid -8.07e-01 0.000233 0 2:206735704-2:208644421
6500 2 206547223 206662857 NRP2 cmc.brain.rnaseq -2.55e-01 0.000175 0 2:206735704-2:208644421
6476 2 206979541 207024308 NDUFS1 brain_cortex -6.57e-01 0.000210 0 2:206735704-2:208644421
12699 2 206642540 206644433 AC007362.1 psychencode -1.39e+00 0.000435 0 2:206735704-2:208644421
6448 2 208686011 208890284 PLEKHM3 cmc.brain.rnaseq -1.61e+00 0.000590 0 2:206735704-2:208644421
6516 2 213864429 214017151 IKZF2 thyroid 1.17e+00 0.000947 0 2:214014511-2:215573795
11638 2 213864429 214017151 IKZF2 psychencode -5.68e-01 0.000241 0 2:214014511-2:215573795
12637 2 215275789 215443683 VWC2L psychencode 3.44e-01 0.000308 0 2:214014511-2:215573795
6514 2 215590370 215674428 BARD1 thyroid 3.06e+00 0.001530 0 2:214014511-2:215573795
6515 2 214017694 214018383 RP11-105N14.1 brain_cerebellar_hemisphere 1.80e+00 0.001070 0 2:214014511-2:215573795
6517 2 214017694 214018383 RP11-105N14.1 thyroid 1.28e+00 0.000799 0 2:214014511-2:215573795
6518 2 214017694 214018383 RP11-105N14.1 brain_caudate_basal_ganglia 9.42e-01 0.000662 0 2:214014511-2:215573795
6519 2 215590370 215674428 BARD1 whole_blood -2.65e+00 0.000518 0 2:214014511-2:215573795
6528 2 214149113 215275225 SPAG16 adrenal_gland 4.61e-01 0.000232 0 2:214014511-2:215573795
6520 2 215590370 215674428 BARD1 brain_substantia_nigra 1.37e+00 0.000498 0 2:214014511-2:215573795
6521 2 215590370 215674428 BARD1 brain_frontal_cortex_ba9 1.24e+00 0.000439 0 2:214014511-2:215573795
6522 2 215590370 215674428 BARD1 adrenal_gland -4.91e-01 0.000396 0 2:214014511-2:215573795
6527 2 214149102 215275225 SPAG16 cmc.brain.rnaseq_splicing -2.68e-01 0.000234 0 2:214014511-2:215573795
6513 2 215590370 215674428 BARD1 brain_hippocampus -2.76e+00 0.001800 0 2:214014511-2:215573795
6523 2 215590370 215674428 BARD1 yfs.blood.rnaarr 1.09e+00 0.000380 0 2:214014511-2:215573795
12256 2 215590370 215674428 BARD1 psychencode -3.83e-01 0.000254 0 2:214014511-2:215573795
6525 2 215674953 215827998 AC072062.1 thyroid 6.26e-01 0.000243 0 2:214014511-2:215573795
6511 2 215590370 215674428 BARD1 brain_cortex 4.09e+00 0.026700 0 2:214014511-2:215573795
13106 2 215674953 215827998 AC072062.1 psychencode 4.90e+00 0.924000 1 2:214014511-2:215573795
12850 2 214141276 214148929 AC079610.2 psychencode -1.46e+00 0.000474 0 2:214014511-2:215573795
6512 2 215590370 215674428 BARD1 brain_nucleus_accumbens_basal_ganglia 3.26e+00 0.001870 0 2:214014511-2:215573795
6524 2 215796265 216003151 ABCA12 cmc.brain.rnaseq -9.28e-01 0.000355 0 2:214014511-2:215573795
6526 2 214141276 214148929 AC079610.2 thyroid -2.55e-01 0.000235 0 2:214014511-2:215573795
6570 2 220192131 220197899 RESP18 brain_hippocampus 1.08e-01 0.000224 0 2:220454557-2:222521176
6547 2 220041054 220050201 FAM134A pituitary 6.40e-01 0.000302 0 2:220454557-2:222521176
6560 2 220041054 220050201 FAM134A brain_cerebellar_hemisphere 5.45e-01 0.000243 0 2:220454557-2:222521176
6551 2 220192131 220197899 RESP18 brain_cortex -6.34e-01 0.000281 0 2:220454557-2:222521176
6549 2 220192131 220197899 RESP18 brain_nucleus_accumbens_basal_ganglia 5.00e-01 0.000283 0 2:220454557-2:222521176
12094 2 220403669 220408509 CHPF psychencode 2.21e+00 0.000704 0 2:220454557-2:222521176
6544 2 220970377 221315399 AC114765.1 thyroid 6.21e-01 0.000326 0 2:220454557-2:222521176
6571 2 222282747 222437078 EPHA4 thyroid -2.85e-02 0.000224 0 2:220454557-2:222521176
6561 2 220408510 220415317 TMEM198 thyroid 2.59e-02 0.000241 0 2:220454557-2:222521176
6534 2 220074490 220077962 ABCB6 brain_cerebellum 1.56e+00 0.000773 0 2:220454557-2:222521176
11665 2 220154345 220174370 PTPRN psychencode 7.02e-01 0.000311 0 2:220454557-2:222521176
6572 2 222282747 222437078 EPHA4 brain_cerebellum -1.61e-01 0.000223 0 2:220454557-2:222521176
6536 2 220362333 220362968 RP11-316O14.1 brain_cerebellar_hemisphere 2.13e+00 0.000583 0 2:220454557-2:222521176
6541 2 220415449 220436268 OBSL1 cmc.brain.rnaseq_splicing 1.09e+00 0.000410 0 2:220454557-2:222521176
11987 2 222282747 222438922 EPHA4 psychencode -2.75e-01 0.000226 0 2:220454557-2:222521176
6545 2 220192131 220197899 RESP18 brain_frontal_cortex_ba9 -9.39e-01 0.000319 0 2:220454557-2:222521176
6552 2 221315500 221569286 AC067956.1 thyroid 7.41e-01 0.000278 0 2:220454557-2:222521176
6556 2 220363589 220371710 GMPPA brain_cerebellum 9.02e-01 0.000250 0 2:220454557-2:222521176
6562 2 220415449 220436268 OBSL1 cmc.brain.rnaseq_splicing -2.79e-01 0.000241 0 2:220454557-2:222521176
6546 2 220192131 220197899 RESP18 brain_putamen_basal_ganglia -7.79e-01 0.000303 0 2:220454557-2:222521176
6565 2 220101328 220110200 GLB1L yfs.blood.rnaarr -3.36e-01 0.000234 0 2:220454557-2:222521176
6557 2 220415451 220436581 OBSL1 thyroid -6.19e-01 0.000245 0 2:220454557-2:222521176
12096 2 220415451 220436581 OBSL1 psychencode 1.30e+00 0.000442 0 2:220454557-2:222521176
6533 2 220433884 220440435 INHA thyroid 1.75e+00 0.001030 0 2:220454557-2:222521176
6538 2 220143989 220151622 DNAJB2 brain_caudate_basal_ganglia 1.48e+00 0.000478 0 2:220454557-2:222521176
6558 2 220192131 220197899 RESP18 brain_hypothalamus -4.06e-01 0.000244 0 2:220454557-2:222521176
6537 2 222282746 222437010 EPHA4 cmc.brain.rnaseq 1.36e+00 0.000517 0 2:220454557-2:222521176
12095 2 220433884 220440435 INHA psychencode -3.45e-01 0.000236 0 2:220454557-2:222521176
6535 2 220462582 220481173 STK11IP brain_putamen_basal_ganglia 1.50e+00 0.000762 0 2:220454557-2:222521176
6559 2 220192131 220197899 RESP18 brain_anterior_cingulate_cortex_ba24 1.06e-01 0.000244 0 2:220454557-2:222521176
12305 2 220462582 220481173 STK11IP psychencode 1.89e-01 0.000265 0 2:220454557-2:222521176
6550 2 222282747 222437078 EPHA4 brain_caudate_basal_ganglia -7.89e-01 0.000283 0 2:220454557-2:222521176
12223 2 220143989 220151622 DNAJB2 psychencode -1.35e+00 0.000528 0 2:220454557-2:222521176
6573 2 222282754 222438922 EPHA4 ntr.blood.rnaarr 6.33e-02 0.000222 0 2:220454557-2:222521176
6543 2 220144039 220151622 DNAJB2 cmc.brain.rnaseq_splicing -9.95e-01 0.000344 0 2:220454557-2:222521176
6555 2 220144039 220151622 DNAJB2 cmc.brain.rnaseq -5.76e-01 0.000258 0 2:220454557-2:222521176
6563 2 220144039 220151622 DNAJB2 cmc.brain.rnaseq_splicing 3.68e-01 0.000237 0 2:220454557-2:222521176
12726 2 220192131 220197899 RESP18 psychencode -1.69e+00 0.000718 0 2:220454557-2:222521176
6529 2 220362333 220362968 RP11-316O14.1 brain_hypothalamus 4.49e+00 0.739000 1 2:220454557-2:222521176
11973 2 220492049 220506702 SLC4A3 psychencode -7.39e-01 0.000360 0 2:220454557-2:222521176
6542 2 220154344 220174295 PTPRN cmc.brain.rnaseq 9.99e-01 0.000357 0 2:220454557-2:222521176
6553 2 220154344 220174295 PTPRN cmc.brain.rnaseq_splicing -1.04e+00 0.000275 0 2:220454557-2:222521176
6567 2 220154344 220174295 PTPRN cmc.brain.rnaseq_splicing -3.37e-01 0.000232 0 2:220454557-2:222521176
12822 2 219940039 220025587 NHEJ1 psychencode -8.47e-01 0.000359 0 2:220454557-2:222521176
6564 2 220192131 220197899 RESP18 brain_caudate_basal_ganglia -6.39e-01 0.000237 0 2:220454557-2:222521176
11704 2 220378892 220403494 ASIC4 psychencode 1.07e-01 0.000234 0 2:220454557-2:222521176
6539 2 219940045 220034817 NHEJ1 cmc.brain.rnaseq -1.46e+00 0.000470 0 2:220454557-2:222521176
6569 2 220026181 220034817 SLC23A3 thyroid 6.49e-02 0.000226 0 2:220454557-2:222521176
6554 2 220036619 220042644 CNPPD1 brain_substantia_nigra -8.19e-01 0.000260 0 2:220454557-2:222521176
6566 2 220154345 220174370 PTPRN brain_nucleus_accumbens_basal_ganglia -5.80e-01 0.000232 0 2:220454557-2:222521176
6532 2 220192131 220197899 RESP18 brain_amygdala -1.80e+00 0.001050 0 2:220454557-2:222521176
6530 2 220299568 220361838 SPEG brain_cerebellum 3.12e+00 0.004900 0 2:220454557-2:222521176
6548 2 222282746 222437010 EPHA4 cmc.brain.rnaseq_splicing -7.39e-01 0.000289 0 2:220454557-2:222521176
6540 2 222282747 222437078 EPHA4 whole_blood -1.34e+00 0.000467 0 2:220454557-2:222521176
12304 2 220040947 220050201 FAM134A psychencode 5.52e-01 0.000234 0 2:220454557-2:222521176
6531 2 220299568 220361838 SPEG brain_cerebellar_hemisphere 3.05e+00 0.003990 0 2:220454557-2:222521176
6568 2 222282747 222438922 EPHA4 yfs.blood.rnaarr 2.35e-01 0.000226 0 2:220454557-2:222521176
6583 2 240831867 240964819 NDUFA10 brain_putamen_basal_ganglia 1.55e+00 0.000515 0 2:239952643-2:241559339
6616 2 240323130 240324058 AC062017.1 thyroid -4.36e-01 0.000175 0 2:239952643-2:241559339
12674 2 241078446 241083979 OTOS psychencode 1.41e-01 0.000161 0 2:239952643-2:241559339
6605 2 241418839 241508626 ANKMY1 brain_cerebellar_hemisphere -7.94e-01 0.000218 0 2:239952643-2:241559339
6624 2 240831867 240964819 NDUFA10 brain_hippocampus 7.68e-02 0.000161 0 2:239952643-2:241559339
11672 2 241375088 241407493 GPC1 psychencode -2.99e-01 0.000167 0 2:239952643-2:241559339
13029 2 241388732 241396131 AC110619.2 psychencode 1.40e+00 0.000410 0 2:239952643-2:241559339
6620 2 239969864 240322705 HDAC4 brain_amygdala 2.85e-01 0.000166 0 2:239952643-2:241559339
6575 2 241653181 241759725 KIF1A adrenal_gland 1.83e+00 0.000813 0 2:239952643-2:241559339
6621 2 241625751 241629831 AC011298.2 thyroid 2.38e-01 0.000164 0 2:239952643-2:241559339
6608 2 241825465 241836306 C2orf54 brain_cerebellar_hemisphere 7.74e-01 0.000214 0 2:239952643-2:241559339
6619 2 241544848 241570676 GPR35 brain_caudate_basal_ganglia 3.74e-01 0.000171 0 2:239952643-2:241559339
6618 2 241544848 241570676 GPR35 pituitary -4.03e-01 0.000173 0 2:239952643-2:241559339
6601 2 241825465 241836306 C2orf54 brain_caudate_basal_ganglia -9.74e-01 0.000253 0 2:239952643-2:241559339
12675 2 241544848 241570676 GPR35 psychencode -1.16e+00 0.000308 0 2:239952643-2:241559339
6592 2 240900158 240964725 NDUFA10 ntr.blood.rnaarr 1.25e+00 0.000340 0 2:239952643-2:241559339
6603 2 241825465 241836306 C2orf54 thyroid -8.72e-01 0.000235 0 2:239952643-2:241559339
13338 2 241390181 241391848 AC110619.1 psychencode 7.52e-01 0.000210 0 2:239952643-2:241559339
6586 2 240831867 240964819 NDUFA10 yfs.blood.rnaarr 1.46e+00 0.000453 0 2:239952643-2:241559339
6598 2 239756673 239795893 TWIST2 whole_blood -1.07e+00 0.000278 0 2:239952643-2:241559339
6615 2 241526132 241557122 CAPN10 cmc.brain.rnaseq 4.57e-01 0.000178 0 2:239952643-2:241559339
6589 2 242045589 242088898 PASK ntr.blood.rnaarr -1.34e+00 0.000382 0 2:239952643-2:241559339
13150 2 239756673 239795893 TWIST2 psychencode 1.39e+00 0.000412 0 2:239952643-2:241559339
6629 2 239969863 240322643 HDAC4 cmc.brain.rnaseq_splicing 8.65e-02 0.000160 0 2:239952643-2:241559339
6581 2 240831867 240964819 NDUFA10 brain_cortex 1.60e+00 0.000556 0 2:239952643-2:241559339
6604 2 242011584 242041747 MTERFD2 brain_cerebellar_hemisphere 8.39e-01 0.000225 0 2:239952643-2:241559339
12163 2 240831867 240964819 NDUFA10 psychencode 1.46e+00 0.000453 0 2:239952643-2:241559339
6610 2 242011584 242041747 MTERFD2 whole_blood 6.63e-01 0.000198 0 2:239952643-2:241559339
6626 2 242011584 242041747 MTERFD2 brain_putamen_basal_ganglia 9.05e-02 0.000161 0 2:239952643-2:241559339
6622 2 240896788 240964819 NDUFA10 cmc.brain.rnaseq_splicing 2.16e-01 0.000163 0 2:239952643-2:241559339
6597 2 239969864 240322705 HDAC4 thyroid -1.08e+00 0.000282 0 2:239952643-2:241559339
6578 2 241526133 241557122 CAPN10 brain_substantia_nigra -1.71e+00 0.000661 0 2:239952643-2:241559339
6631 2 240323130 240324058 AC062017.1 adrenal_gland 2.46e-02 0.000160 0 2:239952643-2:241559339
6595 2 240831867 240964819 NDUFA10 brain_hypothalamus 1.11e+00 0.000291 0 2:239952643-2:241559339
6590 2 240831867 240964819 NDUFA10 whole_blood 1.31e+00 0.000370 0 2:239952643-2:241559339
13039 2 240323130 240324058 AC062017.1 psychencode 1.31e+00 0.000370 0 2:239952643-2:241559339
6584 2 240896788 240964819 NDUFA10 cmc.brain.rnaseq 1.52e+00 0.000488 0 2:239952643-2:241559339
6596 2 240831867 240964819 NDUFA10 brain_cerebellum 1.11e+00 0.000291 0 2:239952643-2:241559339
6609 2 241418839 241508626 ANKMY1 yfs.blood.rnaarr 7.34e-01 0.000208 0 2:239952643-2:241559339
6607 2 241418839 241508626 ANKMY1 thyroid -7.88e-01 0.000217 0 2:239952643-2:241559339
6628 2 241499471 241503431 DUSP28 yfs.blood.rnaarr 8.93e-02 0.000160 0 2:239952643-2:241559339
6614 2 241526133 241557122 CAPN10 thyroid -4.68e-01 0.000178 0 2:239952643-2:241559339
6576 2 240831867 240964819 NDUFA10 adrenal_gland 1.76e+00 0.000714 0 2:239952643-2:241559339
6600 2 241375088 241407493 GPC1 brain_cerebellum 9.89e-01 0.000256 0 2:239952643-2:241559339
6623 2 241526133 241557122 CAPN10 brain_putamen_basal_ganglia -1.45e-01 0.000162 0 2:239952643-2:241559339
6587 2 240831867 240964819 NDUFA10 brain_nucleus_accumbens_basal_ganglia 1.40e+00 0.000411 0 2:239952643-2:241559339
6588 2 240831867 240964819 NDUFA10 brain_caudate_basal_ganglia 1.36e+00 0.000391 0 2:239952643-2:241559339
6617 2 240831867 240964819 NDUFA10 brain_cerebellar_hemisphere 3.77e-01 0.000174 0 2:239952643-2:241559339
6606 2 241938254 242033643 SNED1 cmc.brain.rnaseq_splicing 7.91e-01 0.000217 0 2:239952643-2:241559339
6627 2 241418838 241500275 ANKMY1 cmc.brain.rnaseq -1.64e-02 0.000161 0 2:239952643-2:241559339
6612 2 241938255 242034011 SNED1 brain_cerebellum -6.48e-01 0.000196 0 2:239952643-2:241559339
6585 2 240831867 240964819 NDUFA10 thyroid 1.47e+00 0.000458 0 2:239952643-2:241559339
6580 2 241858202 241932728 AC104809.3 pituitary 1.62e+00 0.000572 0 2:239952643-2:241559339
6613 2 241938255 242034011 SNED1 pituitary 5.22e-01 0.000182 0 2:239952643-2:241559339
6593 2 241418839 241508626 ANKMY1 brain_anterior_cingulate_cortex_ba24 -1.18e+00 0.000314 0 2:239952643-2:241559339
6582 2 240831867 240964819 NDUFA10 brain_substantia_nigra 1.60e+00 0.000550 0 2:239952643-2:241559339
6577 2 240831867 240964819 NDUFA10 pituitary 1.74e+00 0.000702 0 2:239952643-2:241559339
12072 2 242011584 242041747 MTERFD2 psychencode 8.46e-01 0.000226 0 2:239952643-2:241559339
12454 2 241938255 242034983 SNED1 psychencode 1.68e+00 0.000626 0 2:239952643-2:241559339
6611 2 241544848 241570676 GPR35 brain_nucleus_accumbens_basal_ganglia 6.58e-01 0.000198 0 2:239952643-2:241559339
6625 2 241615835 241622323 AQP12B thyroid -1.27e-01 0.000161 0 2:239952643-2:241559339
6602 2 241825465 241836306 C2orf54 pituitary 9.47e-01 0.000248 0 2:239952643-2:241559339
6594 2 242026510 242041725 MTERFD2 ntr.blood.rnaarr -1.12e+00 0.000297 0 2:239952643-2:241559339
6599 2 241544848 241570676 GPR35 brain_putamen_basal_ganglia 9.94e-01 0.000260 0 2:239952643-2:241559339
12293 2 241526133 241557122 CAPN10 psychencode 6.83e-01 0.000202 0 2:239952643-2:241559339
6630 2 242034544 242041747 MTERFD2 cmc.brain.rnaseq_splicing -3.88e-02 0.000160 0 2:239952643-2:241559339
6579 2 241544848 241570676 GPR35 thyroid -1.69e+00 0.000642 0 2:239952643-2:241559339
6591 2 241544848 241570676 GPR35 whole_blood -1.28e+00 0.000355 0 2:239952643-2:241559339
6574 2 241653181 241759725 KIF1A brain_cerebellum 2.48e+00 0.003140 0 2:239952643-2:241559339
12624 3 35680437 35835988 ARPP21 psychencode 5.89e-01 0.000185 0 3:35283645-3:36486390
6638 3 35682509 35835988 ARPP21 cmc.brain.rnaseq_splicing 2.24e-01 0.000160 0 3:35283645-3:36486390
6633 3 36421836 36589499 STAC brain_cerebellum 1.23e+00 0.000329 0 3:35283645-3:36486390
6636 3 36421836 36589499 STAC thyroid -4.74e-01 0.000175 0 3:35283645-3:36486390
6637 3 36421836 36589499 STAC brain_cerebellar_hemisphere 4.45e-01 0.000173 0 3:35283645-3:36486390
6632 3 36753912 36781352 DCLK3 cmc.brain.rnaseq 1.43e+00 0.000424 0 3:35283645-3:36486390
6634 3 36753913 36781352 DCLK3 brain_cortex -1.20e+00 0.000316 0 3:35283645-3:36486390
6635 3 36868307 36986548 TRANK1 cmc.brain.rnaseq 7.66e-01 0.000208 0 3:35283645-3:36486390
6697 3 42642106 42690227 NKTR thyroid -1.53e+00 0.000909 0 3:42540002-3:45165153
6722 3 42642106 42690227 NKTR whole_blood -1.17e+00 0.000584 0 3:42540002-3:45165153
6748 3 42643455 42695880 RP4-613B23.1 brain_nucleus_accumbens_basal_ganglia -1.17e+00 0.000470 0 3:42540002-3:45165153
6660 3 42642106 42690227 NKTR brain_cerebellum -2.35e+00 0.004760 1 3:42540002-3:45165153
6712 3 42642106 42690227 NKTR brain_frontal_cortex_ba9 -1.24e+00 0.000653 0 3:42540002-3:45165153
6726 3 42643455 42695880 RP4-613B23.1 brain_putamen_basal_ganglia -1.30e+00 0.000548 0 3:42540002-3:45165153
6795 3 42643455 42695880 RP4-613B23.1 brain_anterior_cingulate_cortex_ba24 -8.93e-01 0.000348 0 3:42540002-3:45165153
6826 3 42642106 42690227 NKTR brain_cortex -5.15e-01 0.000286 0 3:42540002-3:45165153
6853 3 42643455 42695880 RP4-613B23.1 brain_frontal_cortex_ba9 2.28e-02 0.000245 0 3:42540002-3:45165153
6819 3 42623332 42636606 SS18L2 brain_cortex 7.14e-01 0.000297 0 3:42540002-3:45165153
6709 3 42643455 42695880 RP4-613B23.1 brain_caudate_basal_ganglia -1.53e+00 0.000688 0 3:42540002-3:45165153
6713 3 42623332 42636606 SS18L2 thyroid -1.27e+00 0.000647 0 3:42540002-3:45165153
6684 3 42642106 42690227 NKTR adrenal_gland -1.60e+00 0.001180 0 3:42540002-3:45165153
6832 3 42745641 42748154 HHATL-AS1 whole_blood 4.61e-01 0.000277 0 3:42540002-3:45165153
6849 3 42745641 42748154 HHATL-AS1 brain_frontal_cortex_ba9 -3.71e-01 0.000248 0 3:42540002-3:45165153
6799 3 42734569 42744319 HHATL brain_caudate_basal_ganglia 1.38e+00 0.000343 0 3:42540002-3:45165153
11972 3 42642106 42690227 NKTR psychencode -1.34e+00 0.000675 0 3:42540002-3:45165153
6852 3 42695176 42709072 ZBTB47 whole_blood 1.45e-01 0.000246 0 3:42540002-3:45165153
11780 3 42589461 42642572 SEC22C psychencode 4.87e-01 0.000250 0 3:42540002-3:45165153
6716 3 42825790 42846023 HIGD1A brain_amygdala -1.64e+00 0.000620 0 3:42540002-3:45165153
6839 3 43407817 43663560 ANO10 cmc.brain.rnaseq -5.47e-01 0.000267 0 3:42540002-3:45165153
6798 3 44754135 44765323 ZNF502 brain_cerebellar_hemisphere -2.77e+00 0.000345 0 3:42540002-3:45165153
6737 3 42825790 42846023 HIGD1A brain_cerebellum -1.29e+00 0.000497 0 3:42540002-3:45165153
6808 3 44771088 44778575 ZNF501 thyroid -2.24e+00 0.000320 0 3:42540002-3:45165153
6811 3 44771088 44778575 ZNF501 brain_frontal_cortex_ba9 -2.22e+00 0.000318 0 3:42540002-3:45165153
6805 3 44754135 44765323 ZNF502 brain_anterior_cingulate_cortex_ba24 -2.29e+00 0.000328 0 3:42540002-3:45165153
6812 3 44771088 44778575 ZNF501 brain_cerebellum -2.22e+00 0.000318 0 3:42540002-3:45165153
6816 3 42643455 42695880 RP4-613B23.1 brain_cortex -7.10e-01 0.000301 0 3:42540002-3:45165153
6809 3 44754135 44765323 ZNF502 brain_cortex -2.22e+00 0.000318 0 3:42540002-3:45165153
6827 3 45429998 45590913 LARS2 brain_nucleus_accumbens_basal_ganglia -1.09e+00 0.000285 0 3:42540002-3:45165153
6815 3 42643455 42695880 RP4-613B23.1 brain_hypothalamus -7.60e-01 0.000308 0 3:42540002-3:45165153
6725 3 42749761 42814696 CCDC13 pituitary 1.18e+00 0.000557 0 3:42540002-3:45165153
13421 3 44158791 44163857 RP4-555D20.2 psychencode -1.25e+00 0.000302 0 3:42540002-3:45165153
12683 3 44379611 44450943 TCAIM psychencode -3.75e+00 0.009510 1 3:42540002-3:45165153
6678 3 42846244 42929466 ACKR2 brain_hypothalamus 1.99e+00 0.001400 0 3:42540002-3:45165153
6778 3 42846244 42929466 ACKR2 brain_cortex 1.12e+00 0.000393 0 3:42540002-3:45165153
12799 3 44771088 44778575 ZNF501 psychencode -3.70e+00 0.002350 1 3:42540002-3:45165153
6650 3 44380045 44450943 TCAIM brain_substantia_nigra -4.25e+00 0.012400 1 3:42540002-3:45165153
6854 3 43731605 43775863 ABHD5 yfs.blood.rnaarr 5.38e-01 0.000242 0 3:42540002-3:45165153
6810 3 44754135 44765323 ZNF502 brain_cerebellum -2.22e+00 0.000318 0 3:42540002-3:45165153
6718 3 42825790 42846023 HIGD1A brain_hypothalamus -1.56e+00 0.000603 0 3:42540002-3:45165153
6806 3 42846244 42929466 ACKR2 brain_hippocampus 6.91e-01 0.000327 0 3:42540002-3:45165153
6741 3 44771097 44778575 ZNF501 cmc.brain.rnaseq -2.91e+00 0.000486 0 3:42540002-3:45165153
6672 3 42734154 42744319 HHATL cmc.brain.rnaseq_splicing -2.10e+00 0.001740 0 3:42540002-3:45165153
6658 3 44380045 44450943 TCAIM brain_cerebellum -2.87e+00 0.005530 1 3:42540002-3:45165153
12868 3 44754135 44765323 ZNF502 psychencode -2.94e+00 0.000468 0 3:42540002-3:45165153
6774 3 45596886 45727830 LIMD1 brain_hypothalamus -1.69e+00 0.000405 0 3:42540002-3:45165153
6719 3 44380045 44450943 TCAIM whole_blood 1.02e+00 0.000600 0 3:42540002-3:45165153
6656 3 44462619 44465499 LINC00694 whole_blood 9.19e-01 0.007120 1 3:42540002-3:45165153
6753 3 44903361 44907162 TMEM42 yfs.blood.rnaarr -1.28e+00 0.000461 0 3:42540002-3:45165153
6663 3 42642106 42690227 NKTR yfs.blood.rnaarr -2.23e+00 0.003160 1 3:42540002-3:45165153
6639 3 44481261 44561226 ZNF445 cmc.brain.rnaseq -5.12e+00 0.308000 1 3:42540002-3:45165153
13203 3 42850975 42984284 KRBOX1 psychencode 1.14e+00 0.000427 0 3:42540002-3:45165153
6821 3 44956749 45017677 ZDHHC3 thyroid -5.34e-01 0.000294 0 3:42540002-3:45165153
6648 3 44626380 44689963 ZNF197 thyroid -4.48e+00 0.017400 1 3:42540002-3:45165153
6641 3 44481262 44519162 ZNF445 brain_nucleus_accumbens_basal_ganglia -4.90e+00 0.105000 1 3:42540002-3:45165153
6693 3 44779153 44803154 KIAA1143 brain_cerebellar_hemisphere 3.39e+00 0.000980 0 3:42540002-3:45165153
6837 3 42774067 42788260 CCDC13-AS1 brain_cortex 3.33e-01 0.000272 0 3:42540002-3:45165153
12478 3 44956749 45017677 ZDHHC3 psychencode -1.57e+00 0.000504 0 3:42540002-3:45165153
6642 3 44481262 44519162 ZNF445 brain_caudate_basal_ganglia -4.84e+00 0.084000 1 3:42540002-3:45165153
12857 3 44596685 44624975 ZKSCAN7 psychencode -3.42e+00 0.000764 0 3:42540002-3:45165153
6674 3 42846244 42929466 ACKR2 brain_frontal_cortex_ba9 2.11e+00 0.001550 0 3:42540002-3:45165153
6703 3 44481262 44519162 ZNF445 brain_frontal_cortex_ba9 -2.29e+00 0.000746 0 3:42540002-3:45165153
6685 3 44626380 44689963 ZNF197 adrenal_gland -3.66e+00 0.001160 0 3:42540002-3:45165153
6747 3 42825790 42846023 HIGD1A brain_nucleus_accumbens_basal_ganglia -1.32e+00 0.000476 0 3:42540002-3:45165153
6655 3 44779153 44803154 KIAA1143 whole_blood 4.07e+00 0.007220 1 3:42540002-3:45165153
6701 3 44779153 44803154 KIAA1143 brain_cerebellum 3.27e+00 0.000849 0 3:42540002-3:45165153
6765 3 42589462 42623480 SEC22C ntr.blood.rnaarr -1.01e+00 0.000440 0 3:42540002-3:45165153
6823 3 42846244 42929466 ACKR2 brain_caudate_basal_ganglia 5.93e-01 0.000292 0 3:42540002-3:45165153
6780 3 44619715 44641186 ZNF660 brain_cerebellum -9.19e-01 0.000392 0 3:42540002-3:45165153
13126 3 42744145 42748154 HHATL-AS1 psychencode 1.77e+00 0.000682 0 3:42540002-3:45165153
6829 3 44481262 44519162 ZNF445 brain_putamen_basal_ganglia -1.80e+00 0.000283 0 3:42540002-3:45165153
6646 3 44619715 44641186 ZNF660 whole_blood -4.46e+00 0.018300 1 3:42540002-3:45165153
6831 3 42589461 42642572 SEC22C brain_cerebellar_hemisphere -4.23e-01 0.000279 0 3:42540002-3:45165153
6756 3 44626380 44689963 ZNF197 whole_blood -2.86e+00 0.000457 0 3:42540002-3:45165153
12800 3 44626380 44689963 ZNF197 psychencode -3.60e+00 0.000934 0 3:42540002-3:45165153
6800 3 42812104 42815127 RP11-70C1.1 whole_blood 6.41e-01 0.000339 0 3:42540002-3:45165153
6669 3 44779153 44803154 KIAA1143 pituitary 3.60e+00 0.002070 0 3:42540002-3:45165153
6698 3 42897497 42917633 CYP8B1 thyroid -1.89e+00 0.000865 0 3:42540002-3:45165153
6657 3 44771088 44778575 ZNF501 whole_blood -4.05e+00 0.005780 1 3:42540002-3:45165153
6776 3 44619715 44641186 ZNF660 thyroid -7.17e-01 0.000402 0 3:42540002-3:45165153
6677 3 42734154 42744319 HHATL cmc.brain.rnaseq 2.11e+00 0.001440 0 3:42540002-3:45165153
6682 3 44771088 44778575 ZNF501 brain_anterior_cingulate_cortex_ba24 -3.61e+00 0.001210 0 3:42540002-3:45165153
6727 3 44771088 44778575 ZNF501 adrenal_gland -3.18e+00 0.000544 0 3:42540002-3:45165153
6750 3 42643455 42695880 RP4-613B23.1 brain_amygdala -1.20e+00 0.000464 0 3:42540002-3:45165153
6730 3 42846244 42929466 ACKR2 brain_nucleus_accumbens_basal_ganglia 1.41e+00 0.000527 0 3:42540002-3:45165153
6676 3 44903361 44907162 TMEM42 whole_blood -3.55e+00 0.001440 0 3:42540002-3:45165153
13495 3 44039573 44040641 RP4-555D20.4 psychencode -1.88e+00 0.001490 0 3:42540002-3:45165153
6782 3 44619715 44641186 ZNF660 adrenal_gland -9.58e-01 0.000385 0 3:42540002-3:45165153
12681 3 44540462 44552128 ZNF852 psychencode -4.01e+00 0.004100 1 3:42540002-3:45165153
6835 3 45596886 45727830 LIMD1 pituitary -4.86e-02 0.000275 0 3:42540002-3:45165153
12779 3 44481262 44519162 ZNF445 psychencode -3.83e+00 0.001760 0 3:42540002-3:45165153
6732 3 42825790 42846023 HIGD1A brain_anterior_cingulate_cortex_ba24 -1.41e+00 0.000520 0 3:42540002-3:45165153
6825 3 42846244 42929466 ACKR2 thyroid 7.11e-01 0.000291 0 3:42540002-3:45165153
6717 3 44658620 44666289 ZNF197-AS1 thyroid -3.16e+00 0.000608 0 3:42540002-3:45165153
6695 3 44666510 44689963 ZNF197 cmc.brain.rnaseq -3.51e+00 0.000919 0 3:42540002-3:45165153
6708 3 42643455 42695880 RP4-613B23.1 brain_hippocampus -1.56e+00 0.000697 0 3:42540002-3:45165153
6645 3 44626380 44689963 ZNF197 brain_nucleus_accumbens_basal_ganglia -4.58e+00 0.028300 1 3:42540002-3:45165153
6842 3 42548016 42574750 VIPR1-AS1 whole_blood 2.50e-01 0.000261 0 3:42540002-3:45165153
6740 3 42643455 42695880 RP4-613B23.1 thyroid 9.72e-01 0.000490 0 3:42540002-3:45165153
6749 3 42825790 42846023 HIGD1A thyroid -1.29e+00 0.000464 0 3:42540002-3:45165153
6686 3 44690219 44702283 ZNF35 adrenal_gland 3.15e+00 0.001130 0 3:42540002-3:45165153
12309 3 44619715 44641186 ZNF660 psychencode -2.65e+00 0.000812 0 3:42540002-3:45165153
6786 3 42825790 42846023 HIGD1A brain_frontal_cortex_ba9 -1.05e+00 0.000365 0 3:42540002-3:45165153
6687 3 44690219 44702283 ZNF35 yfs.blood.rnaarr 7.91e-01 0.001060 0 3:42540002-3:45165153
6846 3 42812104 42815127 RP11-70C1.1 thyroid 1.53e-01 0.000254 0 3:42540002-3:45165153
12706 3 42798669 42846023 HIGD1A psychencode -8.95e-01 0.000333 0 3:42540002-3:45165153
6680 3 42745641 42748154 HHATL-AS1 thyroid 1.81e+00 0.001340 0 3:42540002-3:45165153
6729 3 42589461 42642572 SEC22C brain_cortex -1.28e+00 0.000538 0 3:42540002-3:45165153
6779 3 42589461 42642572 SEC22C brain_amygdala -9.57e-01 0.000393 0 3:42540002-3:45165153
13226 3 42734155 42814745 CCDC13 psychencode -7.25e-02 0.000244 0 3:42540002-3:45165153
6670 3 42774067 42788260 CCDC13-AS1 brain_hippocampus -2.08e+00 0.001980 0 3:42540002-3:45165153
6704 3 44779153 44803154 KIAA1143 thyroid 3.22e+00 0.000709 0 3:42540002-3:45165153
6690 3 42734569 42744319 HHATL brain_cerebellum 2.05e+00 0.001020 0 3:42540002-3:45165153
6840 3 42846244 42929466 ACKR2 pituitary 3.89e-01 0.000263 0 3:42540002-3:45165153
6742 3 44540462 44552128 ZNF852 thyroid -2.11e+00 0.000486 0 3:42540002-3:45165153
6775 3 44771088 44778575 ZNF501 brain_cerebellar_hemisphere -2.91e+00 0.000403 0 3:42540002-3:45165153
6738 3 42749761 42814696 CCDC13 adrenal_gland 8.76e-01 0.000494 0 3:42540002-3:45165153
6746 3 42825790 42846023 HIGD1A brain_caudate_basal_ganglia -1.32e+00 0.000476 0 3:42540002-3:45165153
12476 3 44779153 44803154 KIAA1143 psychencode 5.46e-01 0.000527 0 3:42540002-3:45165153
6707 3 43120724 43147568 POMGNT2 brain_hippocampus 1.67e+00 0.000698 0 3:42540002-3:45165153
6665 3 42530790 42579065 VIPR1 cmc.brain.rnaseq 2.27e+00 0.002420 1 3:42540002-3:45165153
13012 3 44621430 44622518 MPRIPP1 psychencode -2.16e+00 0.000353 0 3:42540002-3:45165153
12594 3 44690219 44702283 ZNF35 psychencode 2.58e+00 0.000646 0 3:42540002-3:45165153
6762 3 43020759 43101703 FAM198A brain_caudate_basal_ganglia -9.81e-01 0.000443 0 3:42540002-3:45165153
6667 3 44596666 44624971 ZNF167 ntr.blood.rnaarr -2.35e+00 0.002190 1 3:42540002-3:45165153
6720 3 44754134 44765323 ZNF502 cmc.brain.rnaseq -3.17e+00 0.000594 0 3:42540002-3:45165153
6752 3 43120724 43147568 POMGNT2 brain_caudate_basal_ganglia 1.26e+00 0.000464 0 3:42540002-3:45165153
6781 3 43396351 43733086 ANO10 whole_blood 8.01e-01 0.000386 0 3:42540002-3:45165153
11609 3 43731605 43775863 ABHD5 psychencode 7.87e-01 0.000324 0 3:42540002-3:45165153
6754 3 43120724 43147568 POMGNT2 brain_putamen_basal_ganglia 1.37e+00 0.000460 0 3:42540002-3:45165153
12308 3 45596886 45727830 LIMD1 psychencode 1.88e+00 0.000564 0 3:42540002-3:45165153
6761 3 43120724 43147568 POMGNT2 brain_frontal_cortex_ba9 1.21e+00 0.000444 0 3:42540002-3:45165153
6643 3 44621430 44622518 MPRIPP1 pituitary -4.73e+00 0.052800 1 3:42540002-3:45165153
6661 3 44619715 44641186 ZNF660 brain_substantia_nigra -2.65e+00 0.003610 1 3:42540002-3:45165153
13478 3 44038388 44038935 RP4-555D20.3 psychencode 1.03e+00 0.000327 0 3:42540002-3:45165153
6681 3 44903361 44907162 TMEM42 adrenal_gland -3.45e+00 0.001260 0 3:42540002-3:45165153
6797 3 44754134 44765315 ZNF502 ntr.blood.rnaarr -2.60e+00 0.000347 0 3:42540002-3:45165153
6644 3 44621430 44622518 MPRIPP1 brain_cerebellum -4.62e+00 0.034800 1 3:42540002-3:45165153
6649 3 44621430 44622518 MPRIPP1 brain_frontal_cortex_ba9 -4.38e+00 0.013900 1 3:42540002-3:45165153
6745 3 42589458 42642572 SEC22C cmc.brain.rnaseq_splicing 1.17e+00 0.000478 0 3:42540002-3:45165153
6820 3 44596685 44624975 ZKSCAN7 whole_blood -1.91e+00 0.000294 0 3:42540002-3:45165153
6731 3 44803208 44894748 KIF15 cmc.brain.rnaseq -1.36e+00 0.000520 0 3:42540002-3:45165153
6705 3 44803209 44914868 KIF15 brain_putamen_basal_ganglia -1.56e+00 0.000705 0 3:42540002-3:45165153
6675 3 44619715 44641186 ZNF660 brain_hypothalamus -2.99e+00 0.001500 0 3:42540002-3:45165153
6654 3 44621430 44622518 MPRIPP1 thyroid -4.27e+00 0.007550 1 3:42540002-3:45165153
6706 3 44754135 44765323 ZNF502 brain_caudate_basal_ganglia -3.26e+00 0.000700 0 3:42540002-3:45165153
6744 3 44754135 44765323 ZNF502 thyroid -2.99e+00 0.000480 0 3:42540002-3:45165153
6699 3 44619715 44641186 ZNF660 brain_frontal_cortex_ba9 -2.01e+00 0.000864 0 3:42540002-3:45165153
6757 3 44754135 44765323 ZNF502 yfs.blood.rnaarr -3.00e+00 0.000455 0 3:42540002-3:45165153
13113 3 42643455 42695880 RP4-613B23.1 psychencode -1.16e+00 0.000464 0 3:42540002-3:45165153
6828 3 45430074 45590328 LARS2 cmc.brain.rnaseq_splicing 6.79e-03 0.000285 0 3:42540002-3:45165153
11971 3 42695176 42709072 ZBTB47 psychencode -6.04e-01 0.000260 0 3:42540002-3:45165153
6653 3 42846244 42929466 ACKR2 brain_cerebellum 2.89e+00 0.008060 1 3:42540002-3:45165153
6833 3 43020759 43101703 FAM198A brain_nucleus_accumbens_basal_ganglia 5.05e-01 0.000277 0 3:42540002-3:45165153
6755 3 44803209 44914868 KIF15 brain_nucleus_accumbens_basal_ganglia 2.23e+00 0.000459 0 3:42540002-3:45165153
6793 3 42734154 42744319 HHATL cmc.brain.rnaseq_splicing 1.03e+00 0.000350 0 3:42540002-3:45165153
6769 3 43120724 43147568 POMGNT2 brain_nucleus_accumbens_basal_ganglia 1.21e+00 0.000416 0 3:42540002-3:45165153
6770 3 43120724 43147568 POMGNT2 brain_cortex 1.34e+00 0.000411 0 3:42540002-3:45165153
6777 3 44956752 45017674 ZDHHC3 cmc.brain.rnaseq_splicing -2.22e-01 0.000397 0 3:42540002-3:45165153
6784 3 42589461 42642572 SEC22C thyroid -8.08e-01 0.000381 0 3:42540002-3:45165153
6694 3 44779153 44803154 KIAA1143 brain_nucleus_accumbens_basal_ganglia 2.69e+00 0.000924 0 3:42540002-3:45165153
6662 3 44621430 44622518 MPRIPP1 brain_hypothalamus -3.85e+00 0.003280 1 3:42540002-3:45165153
6785 3 43120724 43147568 POMGNT2 brain_amygdala 1.34e+00 0.000379 0 3:42540002-3:45165153
6801 3 42643455 42695880 RP4-613B23.1 brain_cerebellum -7.82e-01 0.000337 0 3:42540002-3:45165153
6844 3 43396351 43733086 ANO10 thyroid -5.14e-01 0.000257 0 3:42540002-3:45165153
6830 3 42589461 42642572 SEC22C brain_caudate_basal_ganglia 5.60e-01 0.000281 0 3:42540002-3:45165153
6783 3 45016733 45077558 EXOSC7 yfs.blood.rnaarr 7.59e-01 0.000382 0 3:42540002-3:45165153
6796 3 42824399 42846027 HIGD1A cmc.brain.rnaseq -9.48e-01 0.000347 0 3:42540002-3:45165153
6818 3 44916103 44956482 TGM4 adrenal_gland 5.60e-01 0.000299 0 3:42540002-3:45165153
6733 3 43328004 43466256 SNRK brain_cerebellar_hemisphere -1.13e+00 0.000517 0 3:42540002-3:45165153
12443 3 43396351 43733086 ANO10 psychencode -5.75e-01 0.000244 0 3:42540002-3:45165153
6857 3 43328004 43466256 SNRK brain_cerebellum -1.21e-01 0.000236 0 3:42540002-3:45165153
12475 3 43328004 43466256 SNRK psychencode -1.15e+00 0.000454 0 3:42540002-3:45165153
6766 3 44803209 44914868 KIF15 brain_anterior_cingulate_cortex_ba24 1.68e+00 0.000430 0 3:42540002-3:45165153
6683 3 43407817 43663560 ANO10 cmc.brain.rnaseq_splicing 1.72e+00 0.001190 0 3:42540002-3:45165153
6834 3 45016733 45054160 EXOSC7 thyroid -8.43e-01 0.000276 0 3:42540002-3:45165153
6710 3 44619715 44641186 ZNF660 brain_cerebellar_hemisphere -1.78e+00 0.000670 0 3:42540002-3:45165153
12735 3 42947223 42960825 ZNF662 psychencode -2.96e-01 0.000240 0 3:42540002-3:45165153
6715 3 44619715 44641186 ZNF660 brain_nucleus_accumbens_basal_ganglia -1.52e+00 0.000625 0 3:42540002-3:45165153
11714 3 45016733 45077558 EXOSC7 psychencode -4.19e-01 0.000589 0 3:42540002-3:45165153
6721 3 44619715 44641186 ZNF660 brain_anterior_cingulate_cortex_ba24 -2.39e+00 0.000591 0 3:42540002-3:45165153
6711 3 43388415 43388830 RP11-188P20.3 thyroid -1.53e+00 0.000670 0 3:42540002-3:45165153
6666 3 42846244 42929466 ACKR2 brain_putamen_basal_ganglia 2.29e+00 0.002410 1 3:42540002-3:45165153
12477 3 44803209 44914868 KIF15 psychencode -2.04e+00 0.003140 1 3:42540002-3:45165153
6758 3 45043040 45077563 CLEC3B yfs.blood.rnaarr -1.22e+00 0.000454 0 3:42540002-3:45165153
6700 3 43392823 43393454 SNRK-AS1 thyroid -1.78e+00 0.000859 0 3:42540002-3:45165153
6640 3 44903361 44907162 TMEM42 thyroid -5.11e+00 0.294000 1 3:42540002-3:45165153
6843 3 43020758 43101703 FAM198A cmc.brain.rnaseq -1.73e-01 0.000257 0 3:42540002-3:45165153
6723 3 44619715 44641186 ZNF660 brain_amygdala -1.97e+00 0.000570 0 3:42540002-3:45165153
6734 3 44771088 44778575 ZNF501 brain_putamen_basal_ganglia -2.91e+00 0.000514 0 3:42540002-3:45165153
6724 3 44619715 44641186 ZNF660 brain_hippocampus -2.41e+00 0.000561 0 3:42540002-3:45165153
6759 3 44619715 44641186 ZNF660 pituitary -9.57e-01 0.000453 0 3:42540002-3:45165153
6813 3 45123770 45187914 CDCP1 thyroid 1.34e+00 0.000316 0 3:42540002-3:45165153
6691 3 44621430 44622518 MPRIPP1 brain_cerebellar_hemisphere -3.36e+00 0.000994 0 3:42540002-3:45165153
6772 3 42749761 42814696 CCDC13 thyroid 8.65e-01 0.000410 0 3:42540002-3:45165153
12479 3 45123770 45187914 CDCP1 psychencode -1.78e+00 0.000328 0 3:42540002-3:45165153
6736 3 44956749 45017677 ZDHHC3 brain_frontal_cortex_ba9 1.99e+00 0.000500 0 3:42540002-3:45165153
6792 3 43020758 43101703 FAM198A cmc.brain.rnaseq_splicing 9.24e-01 0.000351 0 3:42540002-3:45165153
6768 3 44754135 44765323 ZNF502 adrenal_gland -2.86e+00 0.000422 0 3:42540002-3:45165153
6807 3 42734154 42744319 HHATL cmc.brain.rnaseq_splicing -7.43e-01 0.000321 0 3:42540002-3:45165153
6763 3 44619715 44641186 ZNF660 brain_caudate_basal_ganglia -7.14e-01 0.000442 0 3:42540002-3:45165153
13048 3 45201266 45201667 RPS24P8 psychencode 3.02e+00 0.000747 0 3:42540002-3:45165153
11604 3 42623332 42636606 SS18L2 psychencode 2.00e-01 0.000265 0 3:42540002-3:45165153
11610 3 45429998 45590913 LARS2 psychencode -1.86e+00 0.000302 0 3:42540002-3:45165153
6856 3 45429998 45590913 LARS2 brain_amygdala -6.81e-01 0.000237 0 3:42540002-3:45165153
6760 3 42589458 42642572 SEC22C cmc.brain.rnaseq_splicing -1.15e+00 0.000452 0 3:42540002-3:45165153
6817 3 45265958 45267770 TMEM158 yfs.blood.rnaarr 8.53e-01 0.000300 0 3:42540002-3:45165153
6735 3 45429998 45590913 LARS2 adrenal_gland 1.64e+00 0.000506 0 3:42540002-3:45165153
6845 3 42749761 42814696 CCDC13 brain_cerebellum 3.21e-01 0.000255 0 3:42540002-3:45165153
6789 3 44754135 44765323 ZNF502 pituitary -2.52e+00 0.000360 0 3:42540002-3:45165153
6773 3 44754135 44765323 ZNF502 whole_blood -2.78e+00 0.000406 0 3:42540002-3:45165153
6788 3 42846244 42929466 ACKR2 brain_amygdala -7.96e-01 0.000361 0 3:42540002-3:45165153
6702 3 43396351 43733086 ANO10 brain_cortex 1.86e+00 0.000812 0 3:42540002-3:45165153
6739 3 42825790 42846023 HIGD1A brain_cerebellar_hemisphere -1.38e+00 0.000493 0 3:42540002-3:45165153
6767 3 45429998 45590913 LARS2 brain_caudate_basal_ganglia 1.75e+00 0.000427 0 3:42540002-3:45165153
6764 3 44619715 44641186 ZNF660 brain_cortex -1.54e+00 0.000442 0 3:42540002-3:45165153
6751 3 42846244 42929466 ACKR2 brain_anterior_cingulate_cortex_ba24 1.12e+00 0.000464 0 3:42540002-3:45165153
6838 3 45430074 45590328 LARS2 cmc.brain.rnaseq -6.66e-01 0.000270 0 3:42540002-3:45165153
6814 3 45429998 45590913 LARS2 brain_hypothalamus -3.83e-02 0.000309 0 3:42540002-3:45165153
11605 3 42734155 42744319 HHATL psychencode 1.74e+00 0.000650 0 3:42540002-3:45165153
6671 3 43020759 43101703 FAM198A thyroid -1.91e+00 0.001960 0 3:42540002-3:45165153
6771 3 44619715 44641186 ZNF660 brain_putamen_basal_ganglia -1.29e+00 0.000410 0 3:42540002-3:45165153
6822 3 42749761 42814696 CCDC13 brain_cortex 3.70e-01 0.000293 0 3:42540002-3:45165153
6728 3 42589461 42642572 SEC22C brain_hypothalamus -1.29e+00 0.000539 0 3:42540002-3:45165153
6794 3 44771088 44778575 ZNF501 pituitary -2.27e+00 0.000348 0 3:42540002-3:45165153
6790 3 42530790 42579065 VIPR1 cmc.brain.rnaseq_splicing -9.90e-01 0.000359 0 3:42540002-3:45165153
12632 3 42774067 42788260 CCDC13-AS1 psychencode -1.20e-01 0.000257 0 3:42540002-3:45165153
6651 3 42734154 42744319 HHATL cmc.brain.rnaseq_splicing 3.12e+00 0.011400 1 3:42540002-3:45165153
6802 3 43020759 43101703 FAM198A brain_hypothalamus -6.71e-01 0.000334 0 3:42540002-3:45165153
6714 3 43396351 43733086 ANO10 brain_caudate_basal_ganglia 1.18e+00 0.000631 0 3:42540002-3:45165153
6692 3 42589458 42642572 SEC22C cmc.brain.rnaseq_splicing -1.48e+00 0.000985 0 3:42540002-3:45165153
6824 3 42589458 42642572 SEC22C cmc.brain.rnaseq_splicing 4.63e-01 0.000292 0 3:42540002-3:45165153
6743 3 42825790 42846023 HIGD1A brain_cortex -1.30e+00 0.000483 0 3:42540002-3:45165153
6673 3 42589461 42642572 SEC22C brain_cerebellum -1.93e+00 0.001680 0 3:42540002-3:45165153
6652 3 42734569 42744319 HHATL brain_substantia_nigra 3.13e+00 0.010100 1 3:42540002-3:45165153
6688 3 42734569 42744319 HHATL brain_cortex 2.06e+00 0.001050 0 3:42540002-3:45165153
6804 3 42589461 42642572 SEC22C brain_putamen_basal_ganglia -7.56e-01 0.000331 0 3:42540002-3:45165153
6696 3 42055294 42267381 TRAK1 yfs.blood.rnaarr 1.40e+00 0.000910 0 3:42540002-3:45165153
6647 3 42530790 42579065 VIPR1 cmc.brain.rnaseq_splicing -2.99e+00 0.017400 1 3:42540002-3:45165153
6855 3 42055294 42267381 TRAK1 whole_blood 3.04e-01 0.000238 0 3:42540002-3:45165153
12724 3 42055294 42267381 TRAK1 psychencode 1.50e+00 0.000699 0 3:42540002-3:45165153
6689 3 42132745 42267382 TRAK1 cmc.brain.rnaseq 1.84e+00 0.001050 0 3:42540002-3:45165153
11970 3 42530791 42579059 VIPR1 psychencode 8.40e-01 0.000275 0 3:42540002-3:45165153
6791 3 42263332 42263457 RNU4-78P brain_cerebellum -1.07e+00 0.000357 0 3:42540002-3:45165153
6787 3 42299317 42307662 CCK ntr.blood.rnaarr 6.20e-01 0.000362 0 3:42540002-3:45165153
6836 3 42774067 42788260 CCDC13-AS1 brain_substantia_nigra -2.99e-01 0.000274 0 3:42540002-3:45165153
6847 3 42749761 42814696 CCDC13 whole_blood 1.08e-01 0.000253 0 3:42540002-3:45165153
12811 3 42299317 42307699 CCK psychencode 1.52e+00 0.000759 0 3:42540002-3:45165153
6850 3 42749873 42814745 CCDC13 cmc.brain.rnaseq -4.34e-02 0.000247 0 3:42540002-3:45165153
6848 3 42774067 42788260 CCDC13-AS1 whole_blood -4.10e-01 0.000253 0 3:42540002-3:45165153
6841 3 42438570 42452092 LYZL4 brain_frontal_cortex_ba9 1.86e-01 0.000263 0 3:42540002-3:45165153
6679 3 42734569 42744319 HHATL brain_hypothalamus 2.26e+00 0.001400 0 3:42540002-3:45165153
6664 3 42734569 42744319 HHATL brain_hippocampus 2.38e+00 0.002490 1 3:42540002-3:45165153
6803 3 42774067 42788260 CCDC13-AS1 pituitary -1.12e+00 0.000331 0 3:42540002-3:45165153
6851 3 42774067 42788260 CCDC13-AS1 thyroid -1.14e-01 0.000247 0 3:42540002-3:45165153
6659 3 42589461 42642572 SEC22C yfs.blood.rnaarr -2.37e+00 0.004920 1 3:42540002-3:45165153
6668 3 42734569 42744319 HHATL thyroid 2.18e+00 0.002140 1 3:42540002-3:45165153
6870 3 55542335 56502391 ERC2 cmc.brain.rnaseq_splicing 1.16e+00 0.000305 0 3:55349025-3:56433535
12696 3 56591189 56655846 CCDC66 psychencode 2.97e+00 0.011300 0 3:55349025-3:56433535
6878 3 55542335 56502391 ERC2 cmc.brain.rnaseq_splicing 3.73e-01 0.000181 0 3:55349025-3:56433535
6883 3 56591189 56653929 CCDC66 brain_amygdala -5.73e-04 0.000163 0 3:55349025-3:56433535
6863 3 56591189 56653929 CCDC66 thyroid -2.08e+00 0.001260 0 3:55349025-3:56433535
6877 3 54156574 55108584 CACNA2D3 yfs.blood.rnaarr -5.23e-01 0.000186 0 3:55349025-3:56433535
6862 3 56591189 56653929 CCDC66 brain_hippocampus -2.08e+00 0.001270 0 3:55349025-3:56433535
6865 3 56591189 56653929 CCDC66 brain_caudate_basal_ganglia -1.99e+00 0.001070 0 3:55349025-3:56433535
6873 3 56654159 56717133 C3orf63 ntr.blood.rnaarr 9.34e-01 0.000247 0 3:55349025-3:56433535
6881 3 55542335 56502391 ERC2 cmc.brain.rnaseq_splicing -1.34e-01 0.000167 0 3:55349025-3:56433535
6880 3 56591189 56653929 CCDC66 brain_cerebellar_hemisphere 1.44e-01 0.000171 0 3:55349025-3:56433535
6874 3 56591189 56653929 CCDC66 brain_putamen_basal_ganglia 1.13e-01 0.000208 0 3:55349025-3:56433535
6879 3 55499743 55523973 WNT5A thyroid -3.45e-01 0.000172 0 3:55349025-3:56433535
6868 3 55542336 56502391 ERC2 brain_cerebellar_hemisphere 1.21e+00 0.000329 0 3:55349025-3:56433535
6861 3 55542335 56502391 ERC2 cmc.brain.rnaseq 2.11e+00 0.001340 0 3:55349025-3:56433535
6869 3 55542336 56502391 ERC2 brain_cerebellum 1.14e+00 0.000319 0 3:55349025-3:56433535
12488 3 56654161 56717265 FAM208A psychencode -2.32e+00 0.002120 0 3:55349025-3:56433535
6859 3 55542335 56502391 ERC2 cmc.brain.rnaseq_splicing -2.68e+00 0.005030 0 3:55349025-3:56433535
6875 3 56591189 56653929 CCDC66 brain_frontal_cortex_ba9 -6.76e-01 0.000208 0 3:55349025-3:56433535
6876 3 54952264 55001115 LRTM1 brain_cortex 6.12e-01 0.000195 0 3:55349025-3:56433535
6882 3 55499743 55523973 WNT5A brain_cerebellum 1.44e-01 0.000163 0 3:55349025-3:56433535
12821 3 55542336 56502391 ERC2 psychencode 1.68e+00 0.000626 0 3:55349025-3:56433535
6864 3 56654573 56717265 FAM208A brain_cerebellum -2.03e+00 0.001170 0 3:55349025-3:56433535
6858 3 56591189 56653929 CCDC66 brain_hypothalamus -2.93e+00 0.009950 0 3:55349025-3:56433535
12307 3 54952264 55001115 LRTM1 psychencode 1.17e+00 0.000316 0 3:55349025-3:56433535
6867 3 55499742 55521670 WNT5A cmc.brain.rnaseq 1.32e+00 0.000382 0 3:55349025-3:56433535
6872 3 56654573 56717265 FAM208A thyroid -1.05e+00 0.000275 0 3:55349025-3:56433535
11967 3 55499743 55523973 WNT5A psychencode 8.53e-01 0.000231 0 3:55349025-3:56433535
6860 3 56591189 56653929 CCDC66 brain_cerebellum 2.45e+00 0.002860 0 3:55349025-3:56433535
6866 3 56761446 57113357 ARHGEF3 yfs.blood.rnaarr -1.57e+00 0.000520 0 3:55349025-3:56433535
6871 3 56761447 56835996 ARHGEF3 ntr.blood.rnaarr 1.09e+00 0.000289 0 3:55349025-3:56433535
6890 3 61547243 62283288 PTPRG adrenal_gland 2.51e-01 0.000162 0 3:60273192-3:62354964
6886 3 62246540 62355005 PTPRG-AS1 brain_cerebellar_hemisphere 1.54e+00 0.000500 0 3:60273192-3:62354964
6892 3 59737978 61237133 FHIT ntr.blood.rnaarr 1.91e-01 0.000160 0 3:60273192-3:62354964
12471 3 62384022 62861054 CADPS psychencode 1.68e-01 0.000159 0 3:60273192-3:62354964
6884 3 59735036 61237133 FHIT yfs.blood.rnaarr 2.45e+00 0.002920 0 3:60273192-3:62354964
6888 3 62304648 62321888 C3orf14 thyroid 5.14e-01 0.000179 0 3:60273192-3:62354964
11968 3 62304648 62321888 C3orf14 psychencode 1.07e+00 0.000276 0 3:60273192-3:62354964
6889 3 59735035 61237133 FHIT cmc.brain.rnaseq_splicing 4.81e-01 0.000176 0 3:60273192-3:62354964
6891 3 61547242 62280573 PTPRG cmc.brain.rnaseq_splicing -2.43e-01 0.000162 0 3:60273192-3:62354964
6885 3 61547243 62283288 PTPRG thyroid 1.89e+00 0.000896 0 3:60273192-3:62354964
6887 3 62304648 62321888 C3orf14 whole_blood 7.27e-01 0.000203 0 3:60273192-3:62354964
6901 3 69024365 69063091 EOGT whole_blood 7.74e-01 0.000211 0 3:69276762-3:70449028
6908 3 69024365 69063091 EOGT pituitary 2.35e-01 0.000162 0 3:69276762-3:70449028
6897 3 69134095 69155217 ARL6IP5 brain_nucleus_accumbens_basal_ganglia 9.69e-01 0.000248 0 3:69276762-3:70449028
6893 3 69103881 69129559 UBA3 yfs.blood.rnaarr 1.76e+00 0.000713 0 3:69276762-3:70449028
6896 3 69024365 69063091 EOGT brain_frontal_cortex_ba9 1.15e+00 0.000299 0 3:69276762-3:70449028
6895 3 68780917 68981761 FAM19A4 brain_hippocampus -1.15e+00 0.000301 0 3:69276762-3:70449028
6910 3 69068978 69101484 TMF1 yfs.blood.rnaarr 3.73e-02 0.000157 0 3:69276762-3:70449028
6907 3 69134089 69155239 ARL6IP5 cmc.brain.rnaseq 2.52e-01 0.000162 0 3:69276762-3:70449028
6903 3 69134095 69155217 ARL6IP5 brain_caudate_basal_ganglia 6.66e-01 0.000195 0 3:69276762-3:70449028
6904 3 69134095 69155217 ARL6IP5 thyroid 4.31e-01 0.000172 0 3:69276762-3:70449028
6898 3 69134095 69155217 ARL6IP5 yfs.blood.rnaarr -9.17e-01 0.000237 0 3:69276762-3:70449028
6905 3 69024365 69063091 EOGT adrenal_gland -3.66e-01 0.000168 0 3:69276762-3:70449028
12306 3 69103881 69129559 UBA3 psychencode 2.85e-01 0.000164 0 3:69276762-3:70449028
12469 3 69156023 69172183 LMOD3 psychencode -7.63e-01 0.000209 0 3:69276762-3:70449028
6906 3 69219141 69591734 FRMD4B adrenal_gland -3.34e-01 0.000166 0 3:69276762-3:70449028
6894 3 69219145 69591733 FRMD4B cmc.brain.rnaseq_splicing -1.64e+00 0.000578 0 3:69276762-3:70449028
6900 3 69219145 69591733 FRMD4B cmc.brain.rnaseq_splicing 8.05e-01 0.000216 0 3:69276762-3:70449028
6909 3 69520603 69521683 RBM43P1 thyroid -1.57e-01 0.000159 0 3:69276762-3:70449028
12813 3 69788586 70017488 MITF psychencode 2.22e+00 0.001740 0 3:69276762-3:70449028
6902 3 70048728 70064469 RP11-460N16.1 brain_substantia_nigra -6.80e-01 0.000197 0 3:69276762-3:70449028
6899 3 68780917 68981761 FAM19A4 brain_hypothalamus 8.97e-01 0.000233 0 3:69276762-3:70449028
6927 3 109044988 109056419 DPPA4 thyroid -6.97e-01 0.000314 0 3:106983112-3:109522395
6948 3 109044988 109056419 DPPA4 brain_putamen_basal_ganglia 2.69e-01 0.000204 0 3:106983112-3:109522395
6949 3 109044988 109056419 DPPA4 whole_blood 6.46e-02 0.000201 0 3:106983112-3:109522395
6933 3 109044988 109056419 DPPA4 brain_nucleus_accumbens_basal_ganglia -4.12e-01 0.000262 0 3:106983112-3:109522395
6941 3 107241783 107530171 BBX whole_blood 2.26e-01 0.000223 0 3:106983112-3:109522395
6918 3 107149777 107182759 RP11-115H18.1 brain_caudate_basal_ganglia 1.56e+00 0.000718 0 3:106983112-3:109522395
6924 3 108626639 108672742 GUCA1C brain_frontal_cortex_ba9 1.36e+00 0.000339 0 3:106983112-3:109522395
6947 3 109044988 109056419 DPPA4 brain_caudate_basal_ganglia 2.77e-01 0.000205 0 3:106983112-3:109522395
6916 3 107762145 107809872 CD47 yfs.blood.rnaarr -2.03e+00 0.000927 0 3:106983112-3:109522395
12925 3 108308529 108413693 DZIP3 psychencode 1.15e+00 0.000345 0 3:106983112-3:109522395
6926 3 108897012 108904104 LINC00488 brain_frontal_cortex_ba9 8.29e-01 0.000317 0 3:106983112-3:109522395
6921 3 107879658 107941417 IFT57 ntr.blood.rnaarr -1.71e+00 0.000580 0 3:106983112-3:109522395
6932 3 107879659 107941417 IFT57 brain_frontal_cortex_ba9 -1.61e-01 0.000263 0 3:106983112-3:109522395
12872 3 107762145 107809872 CD47 psychencode -1.81e+00 0.000724 0 3:106983112-3:109522395
11969 3 107879659 107941417 IFT57 psychencode -3.12e-01 0.000253 0 3:106983112-3:109522395
6923 3 107879659 107941417 IFT57 adrenal_gland -9.02e-01 0.000362 0 3:106983112-3:109522395
6943 3 107149777 107182759 RP11-115H18.1 brain_frontal_cortex_ba9 -3.99e-01 0.000215 0 3:106983112-3:109522395
6937 3 107879659 107941417 IFT57 whole_blood -4.05e-01 0.000242 0 3:106983112-3:109522395
6945 3 108626639 108672742 GUCA1C brain_cortex 3.14e-01 0.000209 0 3:106983112-3:109522395
6913 3 108897012 108904104 LINC00488 brain_cortex 2.20e+00 0.001420 0 3:106983112-3:109522395
12310 3 108099216 108248169 MYH15 psychencode 4.17e+00 0.431000 0 3:106983112-3:109522395
6922 3 107762145 107809872 CD47 whole_blood -1.18e+00 0.000574 0 3:106983112-3:109522395
6946 3 107241783 107530171 BBX yfs.blood.rnaarr 2.03e-01 0.000206 0 3:106983112-3:109522395
6939 3 108268716 108308491 KIAA1524 whole_blood -8.01e-01 0.000235 0 3:106983112-3:109522395
6940 3 107879659 107941417 IFT57 pituitary -7.19e-01 0.000227 0 3:106983112-3:109522395
6935 3 107879658 107941417 IFT57 cmc.brain.rnaseq -5.72e-01 0.000258 0 3:106983112-3:109522395
12259 3 108626639 108672742 GUCA1C psychencode 1.69e+00 0.000483 0 3:106983112-3:109522395
6930 3 108541545 108573852 TRAT1 yfs.blood.rnaarr -1.03e+00 0.000269 0 3:106983112-3:109522395
6920 3 107149777 107182759 RP11-115H18.1 brain_putamen_basal_ganglia 1.48e+00 0.000605 0 3:106983112-3:109522395
13529 3 107149777 107182759 RP11-115H18.1 psychencode -6.52e-01 0.000270 0 3:106983112-3:109522395
6934 3 106555658 106959488 LINC00882 brain_putamen_basal_ganglia 6.90e-01 0.000260 0 3:106983112-3:109522395
6944 3 107879659 107941417 IFT57 brain_cortex 4.43e-01 0.000212 0 3:106983112-3:109522395
13215 3 106555658 106959488 LINC00882 psychencode 1.49e+00 0.000445 0 3:106983112-3:109522395
6942 3 108626639 108672742 GUCA1C pituitary -3.91e-01 0.000216 0 3:106983112-3:109522395
6912 3 107241783 107530171 BBX brain_hypothalamus -1.87e+00 0.001580 0 3:106983112-3:109522395
6936 3 107241782 107530176 BBX cmc.brain.rnaseq_splicing 7.17e-01 0.000251 0 3:106983112-3:109522395
13512 3 107048277 107048809 RP11-446H18.6 psychencode -5.71e-01 0.000246 0 3:106983112-3:109522395
12470 3 108268716 108308491 KIAA1524 psychencode 5.11e-01 0.000233 0 3:106983112-3:109522395
12260 3 107096188 107097481 CCDC54 psychencode 5.44e-01 0.000242 0 3:106983112-3:109522395
6919 3 108308529 108413693 DZIP3 thyroid 1.87e+00 0.000622 0 3:106983112-3:109522395
6931 3 107762145 107809872 CD47 brain_cerebellum 1.05e+00 0.000268 0 3:106983112-3:109522395
6911 3 108308336 108413691 DZIP3 ntr.blood.rnaarr 2.51e+00 0.002050 0 3:106983112-3:109522395
13201 3 107602095 107647754 LINC00636 psychencode -2.80e+00 0.011400 0 3:106983112-3:109522395
6929 3 108308336 108413693 DZIP3 cmc.brain.rnaseq 1.21e+00 0.000298 0 3:106983112-3:109522395
6938 3 108308336 108413693 DZIP3 cmc.brain.rnaseq_splicing -7.96e-01 0.000240 0 3:106983112-3:109522395
6950 3 108308336 108413693 DZIP3 cmc.brain.rnaseq_splicing -4.01e-02 0.000200 0 3:106983112-3:109522395
13007 3 108897012 108904104 LINC00488 psychencode 1.62e+00 0.000834 0 3:106983112-3:109522395
6914 3 108308529 108413693 DZIP3 whole_blood 2.32e+00 0.001370 0 3:106983112-3:109522395
6928 3 106959539 107045811 LINC00883 brain_frontal_cortex_ba9 6.75e-01 0.000305 0 3:106983112-3:109522395
13220 3 106959539 107045811 LINC00883 psychencode 1.27e+00 0.000376 0 3:106983112-3:109522395
6915 3 108308529 108413693 DZIP3 yfs.blood.rnaarr 2.19e+00 0.001060 0 3:106983112-3:109522395
6925 3 107149777 107182759 RP11-115H18.1 brain_substantia_nigra 1.01e+00 0.000326 0 3:106983112-3:109522395
6917 3 107046677 107048044 RP11-446H18.1 brain_cerebellum -1.60e+00 0.000795 0 3:106983112-3:109522395
6955 3 156893058 157098944 RP11-550I24.2 pituitary 3.14e+00 0.040900 1 3:157312028-3:159477890
12472 3 157154578 157161417 PTX3 psychencode -1.70e+00 0.000551 0 3:157312028-3:159477890
12640 3 157261035 157395538 C3orf55 psychencode -3.07e+00 0.008550 0 3:157312028-3:159477890
6963 3 157814948 157824292 SHOX2 whole_blood 2.48e+00 0.002620 0 3:157312028-3:159477890
6976 3 157825578 158263519 RSRC1 pituitary 2.80e+00 0.001160 0 3:157312028-3:159477890
6990 3 157825578 158263519 RSRC1 thyroid 2.77e+00 0.000804 0 3:157312028-3:159477890
6967 3 158363611 158390482 LXN brain_cerebellar_hemisphere 1.06e+00 0.001580 0 3:157312028-3:159477890
7001 3 158414681 158450485 RARRES1 brain_cortex -2.04e+00 0.000635 0 3:157312028-3:159477890
6999 3 158363611 158390482 LXN brain_nucleus_accumbens_basal_ganglia -7.31e-02 0.000648 0 3:157312028-3:159477890
12639 3 157823644 158263519 RSRC1 psychencode 4.79e+00 0.572000 1 3:157312028-3:159477890
7011 3 157825578 158263519 RSRC1 brain_substantia_nigra 2.25e+00 0.000561 0 3:157312028-3:159477890
6961 3 157825578 158263519 RSRC1 brain_cerebellum 3.41e+00 0.003060 0 3:157312028-3:159477890
7015 3 157825578 158263519 RSRC1 brain_caudate_basal_ganglia 1.80e+00 0.000527 0 3:157312028-3:159477890
6981 3 158410909 158411557 RP11-379F4.7 adrenal_gland 7.21e-02 0.000971 0 3:157312028-3:159477890
13219 3 156893012 157099054 RP11-550I24.2 psychencode -1.48e+00 0.000386 0 3:157312028-3:159477890
6988 3 158413156 158413370 RP11-379F4.6 brain_substantia_nigra -1.25e+00 0.000853 0 3:157312028-3:159477890
7029 3 158414681 158450485 RARRES1 brain_frontal_cortex_ba9 -1.91e+00 0.000386 0 3:157312028-3:159477890
7028 3 156864297 156878549 CCNL1 yfs.blood.rnaarr 2.21e+00 0.000398 0 3:157312028-3:159477890
7020 3 156893058 157098944 RP11-550I24.2 brain_hypothalamus 2.35e+00 0.000469 0 3:157312028-3:159477890
6968 3 158363611 158390482 LXN whole_blood 2.80e+00 0.001530 0 3:157312028-3:159477890
7032 3 157825578 158263519 RSRC1 brain_anterior_cingulate_cortex_ba24 2.13e+00 0.000372 0 3:157312028-3:159477890
6993 3 158410909 158411557 RP11-379F4.7 brain_frontal_cortex_ba9 -2.17e+00 0.000761 0 3:157312028-3:159477890
7008 3 158362316 158410360 GFM1 cmc.brain.rnaseq 2.23e-01 0.000583 0 3:157312028-3:159477890
7021 3 158363611 158390482 LXN brain_caudate_basal_ganglia -9.64e-01 0.000465 0 3:157312028-3:159477890
6954 3 157825578 158263519 RSRC1 brain_cerebellar_hemisphere 4.14e+00 0.045300 1 3:157312028-3:159477890
6977 3 156880452 156881721 KRT18P34 adrenal_gland -2.86e+00 0.001100 0 3:157312028-3:159477890
7002 3 158363611 158390482 LXN brain_anterior_cingulate_cortex_ba24 1.59e+00 0.000623 0 3:157312028-3:159477890
7048 3 157261035 157395538 C3orf55 brain_caudate_basal_ganglia -9.59e-01 0.000258 0 3:157312028-3:159477890
7009 3 158362067 158410364 GFM1 brain_cerebellar_hemisphere -1.87e+00 0.000575 0 3:157312028-3:159477890
6980 3 156880452 156881721 KRT18P34 brain_nucleus_accumbens_basal_ganglia -2.71e+00 0.000978 0 3:157312028-3:159477890
6957 3 157827840 158262624 RSRC1 cmc.brain.rnaseq 2.56e+00 0.007480 0 3:157312028-3:159477890
7024 3 156864297 156878549 CCNL1 whole_blood 2.26e+00 0.000441 0 3:157312028-3:159477890
7025 3 158362316 158410360 GFM1 cmc.brain.rnaseq_splicing -5.85e-01 0.000433 0 3:157312028-3:159477890
7005 3 158384202 158390482 LXN cmc.brain.rnaseq 1.47e+00 0.000598 0 3:157312028-3:159477890
6986 3 156886806 156886922 RP11-555M1.3 brain_frontal_cortex_ba9 -8.49e-01 0.000922 0 3:157312028-3:159477890
7038 3 156880452 156881721 KRT18P34 brain_hippocampus -1.41e+00 0.000330 0 3:157312028-3:159477890
7046 3 157814948 157824292 SHOX2 thyroid 9.10e-01 0.000275 0 3:157312028-3:159477890
7023 3 158362067 158410364 GFM1 yfs.blood.rnaarr 1.58e+00 0.000455 0 3:157312028-3:159477890
7033 3 158362067 158410364 GFM1 pituitary -9.04e-01 0.000371 0 3:157312028-3:159477890
6956 3 157825578 158263519 RSRC1 whole_blood 4.05e+00 0.030000 1 3:157312028-3:159477890
6995 3 156880452 156881721 KRT18P34 brain_cerebellar_hemisphere 8.64e-01 0.000736 0 3:157312028-3:159477890
7016 3 156880452 156881721 KRT18P34 brain_hypothalamus -4.90e-01 0.000521 0 3:157312028-3:159477890
7007 3 157154578 157161417 PTX3 brain_cerebellar_hemisphere 2.21e+00 0.000588 0 3:157312028-3:159477890
7004 3 158363611 158390482 LXN thyroid -2.88e-01 0.000619 0 3:157312028-3:159477890
6958 3 158288952 158324249 MLF1 cmc.brain.rnaseq 2.27e+00 0.006470 0 3:157312028-3:159477890
6989 3 158410909 158411557 RP11-379F4.7 brain_anterior_cingulate_cortex_ba24 -1.30e+00 0.000836 0 3:157312028-3:159477890
6960 3 158414681 158450485 RARRES1 brain_caudate_basal_ganglia 2.23e+00 0.005470 0 3:157312028-3:159477890
7010 3 158362067 158410364 GFM1 thyroid -1.45e+00 0.000573 0 3:157312028-3:159477890
6991 3 158519046 158519653 RP11-379F4.9 brain_cerebellum -1.35e+00 0.000798 0 3:157312028-3:159477890
6998 3 158363611 158390482 LXN brain_cerebellum 1.38e+00 0.000654 0 3:157312028-3:159477890
7042 3 156886806 156886922 RP11-555M1.3 brain_anterior_cingulate_cortex_ba24 -1.60e+00 0.000295 0 3:157312028-3:159477890
7039 3 158362067 158410364 GFM1 brain_substantia_nigra -5.95e-01 0.000318 0 3:157312028-3:159477890
6970 3 158500336 158500913 RP11-379F4.8 brain_cerebellar_hemisphere -4.49e-01 0.001460 0 3:157312028-3:159477890
7026 3 158363611 158390482 LXN brain_hippocampus 1.50e+00 0.000430 0 3:157312028-3:159477890
7012 3 158362067 158410364 GFM1 brain_cerebellum -1.57e+00 0.000550 0 3:157312028-3:159477890
6972 3 158288952 158325041 MLF1 adrenal_gland -1.15e+00 0.001320 0 3:157312028-3:159477890
7031 3 156880452 156881721 KRT18P34 whole_blood 6.04e-01 0.000374 0 3:157312028-3:159477890
13500 3 158519046 158519724 RP11-379F4.9 psychencode -6.03e-01 0.000281 0 3:157312028-3:159477890
6964 3 158363611 158390482 LXN brain_frontal_cortex_ba9 1.08e+00 0.002080 0 3:157312028-3:159477890
7017 3 158288952 158325041 MLF1 thyroid -7.80e-01 0.000518 0 3:157312028-3:159477890
6951 3 157823644 158263519 RSRC1 yfs.blood.rnaarr 4.59e+00 0.284000 1 3:157312028-3:159477890
7013 3 158465366 158547508 MFSD1 brain_cerebellum 1.24e+00 0.000538 0 3:157312028-3:159477890
7036 3 156880452 156881721 KRT18P34 brain_frontal_cortex_ba9 1.92e+00 0.000339 0 3:157312028-3:159477890
7027 3 158288952 158324249 MLF1 cmc.brain.rnaseq_splicing 9.96e-01 0.000410 0 3:157312028-3:159477890
6987 3 158519714 158547508 MFSD1 cmc.brain.rnaseq_splicing -9.22e-01 0.000895 0 3:157312028-3:159477890
7022 3 158465366 158547508 MFSD1 thyroid 1.80e-01 0.000465 0 3:157312028-3:159477890
7051 3 158519714 158547508 MFSD1 cmc.brain.rnaseq 5.36e-01 0.000251 0 3:157312028-3:159477890
13200 3 158450052 158501859 RP11-379F4.4 psychencode 5.24e-01 0.000740 0 3:157312028-3:159477890
6962 3 158452350 158501859 RP11-379F4.4 brain_cerebellar_hemisphere 6.83e-01 0.002910 0 3:157312028-3:159477890
6959 3 157825578 158263519 RSRC1 brain_cortex 3.18e+00 0.005940 0 3:157312028-3:159477890
6965 3 158452350 158501859 RP11-379F4.4 brain_nucleus_accumbens_basal_ganglia 4.82e-01 0.001760 0 3:157312028-3:159477890
6992 3 158500336 158500913 RP11-379F4.8 brain_cerebellum -3.59e-01 0.000761 0 3:157312028-3:159477890
7035 3 156864296 156878482 CCNL1 cmc.brain.rnaseq_splicing 1.93e+00 0.000343 0 3:157312028-3:159477890
7040 3 158519046 158519653 RP11-379F4.9 brain_putamen_basal_ganglia 7.95e-02 0.000311 0 3:157312028-3:159477890
6953 3 158452350 158501859 RP11-379F4.4 brain_substantia_nigra 3.23e+00 0.076300 1 3:157312028-3:159477890
6969 3 158452350 158501859 RP11-379F4.4 brain_cerebellum 8.25e-01 0.001510 0 3:157312028-3:159477890
6971 3 158452350 158501859 RP11-379F4.4 brain_hippocampus 1.57e+00 0.001390 0 3:157312028-3:159477890
6973 3 158452350 158501859 RP11-379F4.4 brain_cortex 8.76e-01 0.001310 0 3:157312028-3:159477890
6974 3 158452350 158501859 RP11-379F4.4 brain_hypothalamus 1.01e+00 0.001310 0 3:157312028-3:159477890
6975 3 158452350 158501859 RP11-379F4.4 brain_frontal_cortex_ba9 7.91e-01 0.001220 0 3:157312028-3:159477890
6979 3 158452350 158501859 RP11-379F4.4 brain_anterior_cingulate_cortex_ba24 1.29e+00 0.001060 0 3:157312028-3:159477890
12585 3 158362067 158410364 GFM1 psychencode -1.74e+00 0.001190 0 3:157312028-3:159477890
6983 3 158452350 158501859 RP11-379F4.4 brain_caudate_basal_ganglia 1.54e+00 0.000951 0 3:157312028-3:159477890
6996 3 158452350 158501859 RP11-379F4.4 pituitary 1.08e+00 0.000735 0 3:157312028-3:159477890
7041 3 158288952 158324249 MLF1 cmc.brain.rnaseq_splicing 1.40e+00 0.000303 0 3:157312028-3:159477890
7000 3 158452350 158501859 RP11-379F4.4 brain_putamen_basal_ganglia 9.82e-01 0.000635 0 3:157312028-3:159477890
13272 3 158680024 159615155 IQCJ-SCHIP1 psychencode -2.21e+00 0.000449 0 3:157312028-3:159477890
7045 3 158519046 158519653 RP11-379F4.9 brain_cerebellar_hemisphere 4.93e-02 0.000280 0 3:157312028-3:159477890
6952 3 158452350 158501859 RP11-379F4.4 brain_amygdala 3.22e+00 0.119000 1 3:157312028-3:159477890
6994 3 158500336 158500913 RP11-379F4.8 brain_anterior_cingulate_cortex_ba24 -4.36e-02 0.000741 0 3:157312028-3:159477890
7006 3 158363611 158390482 LXN yfs.blood.rnaarr 1.18e+00 0.000591 0 3:157312028-3:159477890
7018 3 158452350 158501859 RP11-379F4.4 thyroid 1.12e+00 0.000497 0 3:157312028-3:159477890
7050 3 158288952 158325041 MLF1 yfs.blood.rnaarr 1.18e-01 0.000251 0 3:157312028-3:159477890
6984 3 158519046 158519653 RP11-379F4.9 brain_caudate_basal_ganglia -1.42e+00 0.000931 0 3:157312028-3:159477890
12014 3 158449987 158547508 MFSD1 psychencode -8.06e-01 0.000358 0 3:157312028-3:159477890
12669 3 158288952 158325041 MLF1 psychencode 1.64e+00 0.001910 0 3:157312028-3:159477890
7014 3 158362067 158410364 GFM1 brain_hypothalamus -1.41e+00 0.000535 0 3:157312028-3:159477890
7043 3 158519046 158519653 RP11-379F4.9 thyroid 6.09e-01 0.000288 0 3:157312028-3:159477890
7030 3 158414681 158450485 RARRES1 brain_anterior_cingulate_cortex_ba24 -8.06e-01 0.000383 0 3:157312028-3:159477890
13004 3 158680717 158984096 IQCJ psychencode 3.11e+00 0.020200 0 3:157312028-3:159477890
7049 3 158991035 159615155 SCHIP1 cmc.brain.rnaseq -1.34e-01 0.000255 0 3:157312028-3:159477890
7047 3 158519046 158519653 RP11-379F4.9 pituitary 3.92e-01 0.000275 0 3:157312028-3:159477890
13482 3 158500336 158500913 RP11-379F4.8 psychencode -4.73e-01 0.000879 0 3:157312028-3:159477890
13218 3 159439313 159440190 RP11-564C24.1 psychencode -2.73e+00 0.006210 0 3:157312028-3:159477890
7003 3 158362316 158410360 GFM1 cmc.brain.rnaseq_splicing 4.19e-01 0.000622 0 3:157312028-3:159477890
6966 3 158500336 158500913 RP11-379F4.8 brain_frontal_cortex_ba9 -1.18e+00 0.001640 0 3:157312028-3:159477890
7052 3 159631189 159943086 IL12A-AS1 brain_cortex 8.28e-02 0.000247 0 3:157312028-3:159477890
7044 3 158363611 158390482 LXN brain_putamen_basal_ganglia 5.47e-01 0.000280 0 3:157312028-3:159477890
13491 3 158410909 158411557 RP11-379F4.7 psychencode -8.80e-01 0.000366 0 3:157312028-3:159477890
13223 3 159631189 159943086 IL12A-AS1 psychencode -2.27e+00 0.002790 0 3:157312028-3:159477890
12693 3 159943423 159945999 C3orf80 psychencode -2.34e+00 0.003310 0 3:157312028-3:159477890
7037 3 156880452 156881721 KRT18P34 brain_putamen_basal_ganglia 3.67e-01 0.000334 0 3:157312028-3:159477890
6982 3 158414896 158450275 RARRES1 cmc.brain.rnaseq -9.54e-01 0.000956 0 3:157312028-3:159477890
6985 3 158362067 158410364 GFM1 brain_cortex -2.44e+00 0.000929 0 3:157312028-3:159477890
13251 3 159945241 160167617 RP11-432B6.3 psychencode -7.19e-01 0.000291 0 3:157312028-3:159477890
7019 3 158414681 158450485 RARRES1 brain_cerebellar_hemisphere -5.77e-01 0.000477 0 3:157312028-3:159477890
6997 3 158363611 158390482 LXN brain_cortex 1.55e+00 0.000714 0 3:157312028-3:159477890
7034 3 158449987 158547508 MFSD1 yfs.blood.rnaarr -9.89e-01 0.000354 0 3:157312028-3:159477890
11726 3 158363611 158390482 LXN psychencode 1.54e+00 0.000758 0 3:157312028-3:159477890
6978 3 158465366 158547508 MFSD1 whole_blood 6.94e-01 0.001080 0 3:157312028-3:159477890
12013 3 158414681 158450485 RARRES1 psychencode -1.44e+00 0.000460 0 3:157312028-3:159477890
7121 3 194406513 194409766 FAM43A ntr.blood.rnaarr 1.08e-01 0.000189 0 3:192344126-3:194059671
7115 3 194361517 194393206 LSG1 thyroid 3.25e-01 0.000197 0 3:192344126-3:194059671
7112 3 194361517 194393206 LSG1 brain_caudate_basal_ganglia -2.92e-01 0.000203 0 3:192344126-3:194059671
13137 3 194304740 194310989 TMEM44-AS1 psychencode -1.31e+00 0.000427 0 3:192344126-3:194059671
7110 3 194361517 194393206 LSG1 brain_cerebellum 5.47e-01 0.000211 0 3:192344126-3:194059671
7061 3 192958914 192995527 HRASLS brain_hippocampus 2.49e+00 0.003450 0 3:192344126-3:194059671
12311 3 194308402 194354418 TMEM44 psychencode -2.18e-01 0.000195 0 3:192344126-3:194059671
7089 3 194361516 194393206 LSG1 cmc.brain.rnaseq_splicing -1.01e+00 0.000349 0 3:192344126-3:194059671
7084 3 193723226 193788759 RP11-407B7.1 thyroid -1.16e+00 0.000388 0 3:192344126-3:194059671
7077 3 194308402 194354418 TMEM44 brain_hippocampus -1.51e+00 0.000618 0 3:192344126-3:194059671
7105 3 194361517 194393206 LSG1 whole_blood -4.72e-01 0.000217 0 3:192344126-3:194059671
7096 3 194361517 194393206 LSG1 yfs.blood.rnaarr -7.20e-01 0.000247 0 3:192344126-3:194059671
13114 3 193723226 193788759 RP11-407B7.1 psychencode -1.58e+00 0.000654 0 3:192344126-3:194059671
7118 3 194406622 194409762 FAM43A brain_cerebellar_hemisphere -2.25e-01 0.000194 0 3:192344126-3:194059671
7106 3 194308401 194354150 TMEM44 cmc.brain.rnaseq -5.12e-01 0.000214 0 3:192344126-3:194059671
12145 3 193119866 193310900 ATP13A4 psychencode 3.94e-01 0.000203 0 3:192344126-3:194059671
7090 3 193723226 193788759 RP11-407B7.1 brain_cortex -1.00e+00 0.000320 0 3:192344126-3:194059671
7109 3 194361516 194393206 LSG1 cmc.brain.rnaseq -5.42e-01 0.000211 0 3:192344126-3:194059671
7086 3 194123401 194215009 ATP13A3 whole_blood 1.22e+00 0.000370 0 3:192344126-3:194059671
7101 3 194406622 194409762 FAM43A brain_hypothalamus 7.26e-01 0.000232 0 3:192344126-3:194059671
7091 3 193025033 193032151 ATP13A5-AS1 brain_hypothalamus 1.12e+00 0.000310 0 3:192344126-3:194059671
7092 3 194308402 194354418 TMEM44 adrenal_gland -8.69e-01 0.000273 0 3:192344126-3:194059671
7108 3 194361517 194393206 LSG1 brain_nucleus_accumbens_basal_ganglia 4.23e-01 0.000211 0 3:192344126-3:194059671
7056 3 193296601 193297254 RP11-175P19.2 brain_substantia_nigra 3.21e+00 0.018800 0 3:192344126-3:194059671
7057 3 193119865 193272696 ATP13A4 cmc.brain.rnaseq_splicing -3.14e+00 0.015500 0 3:192344126-3:194059671
7088 3 192958914 192995527 HRASLS thyroid 1.14e+00 0.000356 0 3:192344126-3:194059671
7069 3 193119866 193310900 ATP13A4 brain_caudate_basal_ganglia -1.82e+00 0.000983 0 3:192344126-3:194059671
12698 3 192514604 192635950 MB21D2 psychencode -4.39e-01 0.000207 0 3:192344126-3:194059671
7122 3 194208183 194239008 LINC00884 pituitary 4.87e-02 0.000188 0 3:192344126-3:194059671
7071 3 193271002 193272528 ATP13A4-AS1 thyroid 9.93e-01 0.000968 0 3:192344126-3:194059671
7113 3 194308402 194354418 TMEM44 brain_anterior_cingulate_cortex_ba24 -4.17e-01 0.000202 0 3:192344126-3:194059671
12922 3 193310933 193415612 OPA1 psychencode -2.81e+00 0.005700 0 3:192344126-3:194059671
7095 3 194217046 194222232 AC108676.1 whole_blood -7.58e-01 0.000252 0 3:192344126-3:194059671
13002 3 194014254 194030592 LINC00887 psychencode 9.50e-01 0.000281 0 3:192344126-3:194059671
7059 3 193296601 193297254 RP11-175P19.2 brain_hypothalamus 2.78e+00 0.005360 0 3:192344126-3:194059671
7068 3 194304740 194310989 TMEM44-AS1 whole_blood 1.93e+00 0.001150 0 3:192344126-3:194059671
12146 3 192958914 192995527 HRASLS psychencode 5.16e-01 0.000211 0 3:192344126-3:194059671
7100 3 193271002 193272528 ATP13A4-AS1 brain_cortex -6.74e-01 0.000236 0 3:192344126-3:194059671
7053 3 193296601 193297254 RP11-175P19.2 brain_caudate_basal_ganglia 3.82e+00 0.149000 1 3:192344126-3:194059671
7070 3 193296601 193297254 RP11-175P19.2 pituitary 2.00e+00 0.000979 0 3:192344126-3:194059671
7097 3 193723226 193788759 RP11-407B7.1 brain_hypothalamus 7.12e-01 0.000246 0 3:192344126-3:194059671
7093 3 194075976 194090472 LRRC15 thyroid -8.52e-01 0.000269 0 3:192344126-3:194059671
7080 3 194304740 194310989 TMEM44-AS1 thyroid -1.33e+00 0.000444 0 3:192344126-3:194059671
7083 3 194304740 194310989 TMEM44-AS1 adrenal_gland 1.27e+00 0.000408 0 3:192344126-3:194059671
7107 3 193119865 193272696 ATP13A4 cmc.brain.rnaseq -5.04e-01 0.000213 0 3:192344126-3:194059671
7072 3 193119866 193310900 ATP13A4 whole_blood -1.84e+00 0.000954 0 3:192344126-3:194059671
7114 3 192958916 192988644 HRASLS cmc.brain.rnaseq 3.86e-01 0.000199 0 3:192344126-3:194059671
7075 3 193296601 193297254 RP11-175P19.2 brain_anterior_cingulate_cortex_ba24 1.67e+00 0.000833 0 3:192344126-3:194059671
7082 3 193723226 193788759 RP11-407B7.1 brain_hippocampus -1.28e+00 0.000419 0 3:192344126-3:194059671
7081 3 193119866 193310900 ATP13A4 brain_cortex 8.30e-01 0.000436 0 3:192344126-3:194059671
7085 3 193271002 193272528 ATP13A4-AS1 brain_anterior_cingulate_cortex_ba24 3.39e-02 0.000371 0 3:192344126-3:194059671
7076 3 193296601 193297254 RP11-175P19.2 brain_cortex 1.67e+00 0.000756 0 3:192344126-3:194059671
7120 3 192958916 192988644 HRASLS cmc.brain.rnaseq_splicing 1.17e-01 0.000190 0 3:192344126-3:194059671
7103 3 193723226 193788759 RP11-407B7.1 brain_putamen_basal_ganglia -5.88e-01 0.000229 0 3:192344126-3:194059671
7062 3 193296601 193297254 RP11-175P19.2 brain_frontal_cortex_ba9 2.51e+00 0.003050 0 3:192344126-3:194059671
7116 3 194406622 194409762 FAM43A yfs.blood.rnaarr 3.32e-01 0.000197 0 3:192344126-3:194059671
7104 3 194304740 194310989 TMEM44-AS1 brain_cerebellar_hemisphere -6.04e-01 0.000224 0 3:192344126-3:194059671
7074 3 193310933 193415612 OPA1 whole_blood -1.80e+00 0.000890 0 3:192344126-3:194059671
7054 3 193310933 193415612 OPA1 yfs.blood.rnaarr -3.23e+00 0.027400 1 3:192344126-3:194059671
7079 3 193119866 193310900 ATP13A4 brain_cerebellar_hemisphere -1.57e+00 0.000498 0 3:192344126-3:194059671
7102 3 193723226 193788759 RP11-407B7.1 brain_anterior_cingulate_cortex_ba24 -6.28e-01 0.000230 0 3:192344126-3:194059671
7094 3 194208183 194239008 LINC00884 adrenal_gland 8.14e-01 0.000261 0 3:192344126-3:194059671
7087 3 193271002 193272528 ATP13A4-AS1 brain_nucleus_accumbens_basal_ganglia -2.33e-01 0.000357 0 3:192344126-3:194059671
12820 3 192992579 193096632 ATP13A5 psychencode -6.62e-02 0.000188 0 3:192344126-3:194059671
13178 3 193296601 193310879 RP11-175P19.2 psychencode 2.34e+00 0.002160 0 3:192344126-3:194059671
7055 3 193296601 193297254 RP11-175P19.2 brain_amygdala 3.31e+00 0.026800 0 3:192344126-3:194059671
7117 3 194304740 194310989 TMEM44-AS1 brain_nucleus_accumbens_basal_ganglia -3.05e-01 0.000195 0 3:192344126-3:194059671
7099 3 194123401 194215009 ATP13A3 adrenal_gland 7.07e-01 0.000241 0 3:192344126-3:194059671
7098 3 192514604 192635950 MB21D2 adrenal_gland 7.63e-01 0.000245 0 3:192344126-3:194059671
7123 3 194123401 194215009 ATP13A3 thyroid 4.30e-02 0.000188 0 3:192344126-3:194059671
7058 3 193310932 193415600 OPA1 cmc.brain.rnaseq_splicing -2.80e+00 0.006500 0 3:192344126-3:194059671
7060 3 193310932 193415600 OPA1 cmc.brain.rnaseq -2.65e+00 0.003930 0 3:192344126-3:194059671
7073 3 193296601 193297254 RP11-175P19.2 brain_nucleus_accumbens_basal_ganglia 1.60e+00 0.000931 0 3:192344126-3:194059671
7066 3 193310932 193415600 OPA1 cmc.brain.rnaseq_splicing 2.14e+00 0.001450 0 3:192344126-3:194059671
7119 3 193119865 193272696 ATP13A4 cmc.brain.rnaseq_splicing 1.57e-01 0.000191 0 3:192344126-3:194059671
7063 3 193296601 193297254 RP11-175P19.2 brain_hippocampus 2.33e+00 0.002180 0 3:192344126-3:194059671
7078 3 193310932 193415600 OPA1 cmc.brain.rnaseq_splicing -1.63e+00 0.000598 0 3:192344126-3:194059671
7064 3 193296601 193297254 RP11-175P19.2 brain_putamen_basal_ganglia 2.36e+00 0.002170 0 3:192344126-3:194059671
7065 3 193310933 193415612 OPA1 brain_cerebellum -2.22e+00 0.001470 0 3:192344126-3:194059671
7067 3 193296601 193297254 RP11-175P19.2 thyroid 2.12e+00 0.001430 0 3:192344126-3:194059671
7111 3 192514604 192635950 MB21D2 thyroid -4.09e-01 0.000205 0 3:192344126-3:194059671
7149 4 9080749 9143334 ENPP7P10 pituitary -4.94e-01 0.000207 0 4:9335451-4:10699152
7150 4 9485365 9486349 OR7E85P thyroid -4.74e-01 0.000206 0 4:9335451-4:10699152
7153 4 8847802 8873543 HMX1 brain_hypothalamus -2.72e-01 0.000194 0 4:9335451-4:10699152
7147 4 9022583 9022887 RP11-747H12.7 pituitary 5.28e-01 0.000209 0 4:9335451-4:10699152
7145 4 9053568 9053777 RP11-747H12.6 pituitary 5.71e-01 0.000213 0 4:9335451-4:10699152
7143 4 9470746 9471694 OR7E84P thyroid 5.45e-01 0.000220 0 4:9335451-4:10699152
7142 4 9495380 9499710 UNC93B7 thyroid -6.68e-01 0.000229 0 4:9335451-4:10699152
12591 4 9783258 9785632 DRD5 psychencode 1.40e+00 0.001140 0 4:9335451-4:10699152
7131 4 9827847 10041872 SLC2A9 cmc.brain.rnaseq 2.34e+00 0.001880 0 4:9335451-4:10699152
7146 4 9080749 9143334 ENPP7P10 thyroid -5.28e-01 0.000209 0 4:9335451-4:10699152
7125 4 10008106 10011349 RP11-448G15.1 brain_putamen_basal_ganglia -3.56e+00 0.055500 1 4:9335451-4:10699152
13253 4 9269345 9270937 USP17L22 psychencode -5.40e-01 0.000208 0 4:9335451-4:10699152
7144 4 9385743 9390709 RP11-1396O13.13 thyroid -6.15e-01 0.000214 0 4:9335451-4:10699152
7126 4 9772777 10056560 SLC2A9 brain_cortex 3.55e+00 0.054900 1 4:9335451-4:10699152
7140 4 9783258 9785632 DRD5 brain_frontal_cortex_ba9 -7.21e-01 0.000311 0 4:9335451-4:10699152
7151 4 10441498 10459034 ZNF518B yfs.blood.rnaarr -3.91e-01 0.000205 0 4:9335451-4:10699152
7132 4 9678932 9679558 ENPP7P11 thyroid -2.15e+00 0.001740 0 4:9335451-4:10699152
7133 4 9783257 9785633 DRD5 cmc.brain.rnaseq 1.61e+00 0.001520 0 4:9335451-4:10699152
7138 4 10069713 10074643 RP11-448G15.3 whole_blood 7.48e-01 0.000577 0 4:9335451-4:10699152
7134 4 9772777 10056560 SLC2A9 thyroid 2.17e+00 0.001280 0 4:9335451-4:10699152
7152 4 9514554 9515523 OR7E83P thyroid -3.76e-01 0.000205 0 4:9335451-4:10699152
7148 4 9080749 9143334 ENPP7P10 brain_cerebellum -5.28e-01 0.000209 0 4:9335451-4:10699152
7141 4 9678932 9679558 ENPP7P11 adrenal_gland 4.91e-01 0.000230 0 4:9335451-4:10699152
12671 4 10441498 10459034 ZNF518B psychencode -3.31e-01 0.000307 0 4:9335451-4:10699152
7124 4 10069713 10074643 RP11-448G15.3 adrenal_gland -3.61e+00 0.064200 1 4:9335451-4:10699152
7127 4 10069713 10074643 RP11-448G15.3 brain_cerebellar_hemisphere -3.44e+00 0.037400 0 4:9335451-4:10699152
7139 4 10441503 10459032 ZNF518B cmc.brain.rnaseq_splicing 1.19e+00 0.000376 0 4:9335451-4:10699152
7137 4 10488019 10686489 CLNK brain_cerebellum -1.71e+00 0.000614 0 4:9335451-4:10699152
11910 4 9772777 10056560 SLC2A9 psychencode 2.61e+00 0.003280 0 4:9335451-4:10699152
13222 4 9564791 9565570 RP11-1396O13.2 psychencode -2.70e+00 0.004190 0 4:9335451-4:10699152
7130 4 10069713 10074643 RP11-448G15.3 thyroid -2.76e+00 0.004940 0 4:9335451-4:10699152
7128 4 9772777 10056560 SLC2A9 brain_caudate_basal_ganglia 3.40e+00 0.032100 0 4:9335451-4:10699152
7129 4 9772777 10056560 SLC2A9 whole_blood -3.36e+00 0.027900 0 4:9335451-4:10699152
11702 4 10075963 10118573 WDR1 psychencode -2.12e+00 0.001150 0 4:9335451-4:10699152
13413 4 10069713 10074643 RP11-448G15.3 psychencode -1.42e+00 0.000452 0 4:9335451-4:10699152
7135 4 10075962 10118573 WDR1 cmc.brain.rnaseq -1.73e+00 0.000858 0 4:9335451-4:10699152
7136 4 10075962 10118418 WDR1 ntr.blood.rnaarr -9.04e-01 0.000618 0 4:9335451-4:10699152
7165 4 15606161 15657035 FBXL5 ntr.blood.rnaarr -1.10e+00 0.000288 0 4:14272435-4:15147446
7160 4 15565321 15565876 RP11-799M12.2 brain_nucleus_accumbens_basal_ganglia -1.54e+00 0.000499 0 4:14272435-4:15147446
7177 4 15565321 15565876 RP11-799M12.2 brain_hypothalamus -2.05e-01 0.000162 0 4:14272435-4:15147446
7162 4 15565321 15565876 RP11-799M12.2 brain_hippocampus -1.35e+00 0.000381 0 4:14272435-4:15147446
7180 4 14113591 14141676 LOC152742 cmc.brain.rnaseq -3.86e-02 0.000159 0 4:14272435-4:15147446
7172 4 15565321 15565876 RP11-799M12.2 brain_caudate_basal_ganglia -5.40e-01 0.000184 0 4:14272435-4:15147446
7169 4 15005406 15071777 CPEB2 ntr.blood.rnaarr -4.77e-01 0.000188 0 4:14272435-4:15147446
7157 4 15471489 15603180 CC2D2A adrenal_gland 1.82e+00 0.000789 0 4:14272435-4:15147446
7163 4 15565321 15565876 RP11-799M12.2 pituitary 1.23e+00 0.000333 0 4:14272435-4:15147446
7154 4 15341442 15447790 C1QTNF7 pituitary -2.82e+00 0.007630 0 4:14272435-4:15147446
7159 4 15565321 15565876 RP11-799M12.2 brain_substantia_nigra -1.71e+00 0.000658 0 4:14272435-4:15147446
7170 4 15341442 15447790 C1QTNF7 brain_anterior_cingulate_cortex_ba24 2.42e-01 0.000187 0 4:14272435-4:15147446
7161 4 14113592 14141676 LINC01085 brain_hypothalamus 1.36e+00 0.000388 0 4:14272435-4:15147446
7173 4 15565321 15565876 RP11-799M12.2 brain_frontal_cortex_ba9 -4.34e-01 0.000181 0 4:14272435-4:15147446
7164 4 14113592 14141676 LINC01085 brain_caudate_basal_ganglia -1.14e+00 0.000300 0 4:14272435-4:15147446
7167 4 14113592 14141676 LINC01085 brain_cortex -6.83e-01 0.000200 0 4:14272435-4:15147446
7166 4 15565321 15565876 RP11-799M12.2 brain_cortex 8.32e-01 0.000227 0 4:14272435-4:15147446
7171 4 14113592 14141676 LINC01085 thyroid 5.76e-01 0.000186 0 4:14272435-4:15147446
7174 4 14113592 14141676 LINC01085 pituitary 4.14e-01 0.000172 0 4:14272435-4:15147446
7178 4 14113592 14141676 LINC01085 brain_nucleus_accumbens_basal_ganglia -9.01e-02 0.000159 0 4:14272435-4:15147446
7168 4 15471488 15603180 CC2D2A ntr.blood.rnaarr -6.38e-01 0.000197 0 4:14272435-4:15147446
7179 4 14113592 14141676 LINC01085 brain_anterior_cingulate_cortex_ba24 6.90e-02 0.000159 0 4:14272435-4:15147446
11651 4 15471489 15603180 CC2D2A psychencode -8.19e-01 0.000219 0 4:14272435-4:15147446
13249 4 14113592 14141676 LINC01085 psychencode 6.58e-02 0.000159 0 4:14272435-4:15147446
12462 4 15341442 15447790 C1QTNF7 psychencode -1.54e-01 0.000160 0 4:14272435-4:15147446
7155 4 15565321 15565876 RP11-799M12.2 brain_anterior_cingulate_cortex_ba24 -1.99e+00 0.001080 0 4:14272435-4:15147446
13246 4 14472089 14889793 LINC00504 psychencode -3.48e-01 0.000169 0 4:14272435-4:15147446
7156 4 15004298 15071777 CPEB2 whole_blood -1.91e+00 0.000928 0 4:14272435-4:15147446
7175 4 15341559 15447791 C1QTNF7 cmc.brain.rnaseq 1.87e-01 0.000163 0 4:14272435-4:15147446
7158 4 15565321 15565876 RP11-799M12.2 thyroid -1.72e+00 0.000665 0 4:14272435-4:15147446
7176 4 15004298 15071777 CPEB2 brain_caudate_basal_ganglia -1.58e-01 0.000163 0 4:14272435-4:15147446
12250 4 15004298 15071777 CPEB2 psychencode -7.43e-01 0.000207 0 4:14272435-4:15147446
7182 4 27969345 27986685 AC007106.1 brain_hypothalamus 8.65e-01 0.000225 0 4:27965929-4:29761741
7181 4 27969345 27986685 AC007106.1 brain_hippocampus 1.29e+00 0.000351 0 4:27965929-4:29761741
7219 4 41258430 41270472 UCHL1 brain_cerebellum -1.95e-01 0.000261 0 4:40202609-4:42213058
7225 4 42410390 42659122 ATP8A1 thyroid 2.04e+00 0.000244 0 4:40202609-4:42213058
12387 4 41258430 41270472 UCHL1 psychencode -1.37e+00 0.000554 0 4:40202609-4:42213058
7192 4 42563474 42564442 RP11-473D24.1 whole_blood -3.92e+00 0.004880 0 4:40202609-4:42213058
12575 4 40192673 40248587 RHOH psychencode 2.71e-01 0.000253 0 4:40202609-4:42213058
12474 4 40812044 41218731 APBB2 psychencode -8.08e-01 0.000257 0 4:40202609-4:42213058
7224 4 39824482 39979576 PDS5A cmc.brain.rnaseq 6.80e-01 0.000248 0 4:40202609-4:42213058
7183 4 41992489 42092474 SLC30A9 brain_cortex -5.73e+00 0.655000 1 4:40202609-4:42213058
7231 4 40812044 41218731 APBB2 brain_cerebellar_hemisphere 8.10e-01 0.000219 0 4:40202609-4:42213058
7228 4 40318502 40332436 AC195454.1 brain_putamen_basal_ganglia -1.97e-01 0.000223 0 4:40202609-4:42213058
7211 4 41258897 41270446 UCHL1 cmc.brain.rnaseq -7.50e-01 0.000341 0 4:40202609-4:42213058
7184 4 41992489 42092474 SLC30A9 brain_nucleus_accumbens_basal_ganglia -5.50e+00 0.191000 1 4:40202609-4:42213058
7223 4 40812044 41218731 APBB2 brain_cerebellum 1.11e+00 0.000252 0 4:40202609-4:42213058
7185 4 41992489 42092474 SLC30A9 brain_anterior_cingulate_cortex_ba24 -5.23e+00 0.047900 1 4:40202609-4:42213058
7212 4 42399856 42404504 SHISA3 brain_hippocampus 2.97e+00 0.000333 0 4:40202609-4:42213058
7187 4 41992489 42092474 SLC30A9 brain_amygdala -5.05e+00 0.020000 1 4:40202609-4:42213058
11909 4 41937137 41962589 TMEM33 psychencode 4.52e+00 0.009620 0 4:40202609-4:42213058
7227 4 40812043 41216635 APBB2 cmc.brain.rnaseq_splicing -9.84e-01 0.000230 0 4:40202609-4:42213058
7189 4 41983713 41988476 DCAF4L1 thyroid -5.00e+00 0.017700 0 4:40202609-4:42213058
11673 4 41361624 41702061 LIMCH1 psychencode -7.22e-01 0.000252 0 4:40202609-4:42213058
12720 4 41983713 41988476 DCAF4L1 psychencode -2.95e+00 0.000273 0 4:40202609-4:42213058
7198 4 40812043 41216635 APBB2 cmc.brain.rnaseq_splicing 1.77e+00 0.001910 0 4:40202609-4:42213058
7207 4 41362803 41702061 LIMCH1 cmc.brain.rnaseq_splicing 1.43e+00 0.000420 0 4:40202609-4:42213058
7221 4 42112955 42154895 BEND4 brain_anterior_cingulate_cortex_ba24 -2.18e+00 0.000257 0 4:40202609-4:42213058
7206 4 39824483 39979576 PDS5A thyroid -1.24e+00 0.000444 0 4:40202609-4:42213058
7196 4 39824482 39979576 PDS5A cmc.brain.rnaseq_splicing 2.10e+00 0.002350 0 4:40202609-4:42213058
7204 4 41983713 41988476 DCAF4L1 brain_caudate_basal_ganglia -3.87e+00 0.000518 0 4:40202609-4:42213058
7233 4 42399856 42404504 SHISA3 brain_putamen_basal_ganglia -4.74e-01 0.000219 0 4:40202609-4:42213058
7194 4 41992489 42092474 SLC30A9 brain_caudate_basal_ganglia -4.72e+00 0.004440 0 4:40202609-4:42213058
7193 4 41990758 41991254 RP11-814H16.2 brain_cerebellar_hemisphere 4.71e+00 0.004720 0 4:40202609-4:42213058
7188 4 41992489 42092474 SLC30A9 brain_hypothalamus -5.03e+00 0.018200 0 4:40202609-4:42213058
7213 4 41992489 42089551 SLC30A9 yfs.blood.rnaarr -1.92e+00 0.000329 0 4:40202609-4:42213058
13282 4 41222091 41258744 UCHL1-AS1 psychencode -1.29e+00 0.000442 0 4:40202609-4:42213058
7235 4 40425271 40632640 RBM47 cmc.brain.rnaseq 1.96e-01 0.000217 0 4:40202609-4:42213058
7218 4 40318502 40332436 AC195454.1 brain_anterior_cingulate_cortex_ba24 -5.32e-01 0.000263 0 4:40202609-4:42213058
11615 4 41992489 42092474 SLC30A9 psychencode -4.59e+00 0.002740 0 4:40202609-4:42213058
7234 4 40812044 41218731 APBB2 whole_blood 5.88e-01 0.000218 0 4:40202609-4:42213058
7195 4 42659513 42659945 RP11-109E24.2 thyroid -4.60e+00 0.003440 0 4:40202609-4:42213058
7226 4 40318502 40332436 AC195454.1 brain_amygdala 5.11e-01 0.000230 0 4:40202609-4:42213058
7229 4 40812043 41216635 APBB2 cmc.brain.rnaseq_splicing 3.55e-01 0.000222 0 4:40202609-4:42213058
7214 4 40812044 41218731 APBB2 thyroid 4.28e-01 0.000326 0 4:40202609-4:42213058
7216 4 40788127 40788727 RP11-632F7.1 pituitary -8.07e-01 0.000301 0 4:40202609-4:42213058
12841 4 42112955 42154895 BEND4 psychencode -4.24e+00 0.001160 0 4:40202609-4:42213058
7217 4 39824483 39979576 PDS5A brain_cerebellar_hemisphere 5.08e-01 0.000273 0 4:40202609-4:42213058
7222 4 42399856 42404504 SHISA3 brain_cerebellum -1.05e+00 0.000255 0 4:40202609-4:42213058
7208 4 40425272 40632892 RBM47 yfs.blood.rnaarr 1.10e+00 0.000363 0 4:40202609-4:42213058
7190 4 41992489 42092474 SLC30A9 thyroid 4.94e+00 0.015800 0 4:40202609-4:42213058
7230 4 39824483 39979576 PDS5A brain_cerebellum 1.74e-01 0.000220 0 4:40202609-4:42213058
12068 4 39824483 39979576 PDS5A psychencode 1.31e+00 0.000506 0 4:40202609-4:42213058
7200 4 40788127 40788727 RP11-632F7.1 thyroid -1.89e+00 0.001150 0 4:40202609-4:42213058
7205 4 40058445 40157019 N4BP2 ntr.blood.rnaarr 1.22e+00 0.000472 0 4:40202609-4:42213058
7209 4 40425272 40632892 RBM47 brain_hippocampus -1.09e+00 0.000343 0 4:40202609-4:42213058
7197 4 41992522 42089551 SLC30A9 cmc.brain.rnaseq -4.48e+00 0.001930 0 4:40202609-4:42213058
7215 4 40425272 40632892 RBM47 thyroid -1.04e+00 0.000323 0 4:40202609-4:42213058
7232 4 42399856 42404504 SHISA3 brain_anterior_cingulate_cortex_ba24 -4.74e-01 0.000219 0 4:40202609-4:42213058
7210 4 40058446 40159872 N4BP2 thyroid -7.31e-01 0.000342 0 4:40202609-4:42213058
12473 4 40425272 40632892 RBM47 psychencode 5.52e-01 0.000242 0 4:40202609-4:42213058
7201 4 40751914 40812002 NSUN7 pituitary -1.73e+00 0.001020 0 4:40202609-4:42213058
7203 4 40751914 40812002 NSUN7 thyroid -1.37e+00 0.000583 0 4:40202609-4:42213058
7191 4 40168295 40169451 RP11-395I6.3 brain_cerebellum -2.91e+00 0.007730 0 4:40202609-4:42213058
7202 4 40168295 40169451 RP11-395I6.3 brain_cortex -1.74e+00 0.000707 0 4:40202609-4:42213058
12685 4 40751914 40812002 NSUN7 psychencode -1.52e+00 0.000612 0 4:40202609-4:42213058
7186 4 42112869 42154895 BEND4 cmc.brain.rnaseq -5.08e+00 0.022900 1 4:40202609-4:42213058
7199 4 40788127 40788727 RP11-632F7.1 whole_blood -1.86e+00 0.001630 0 4:40202609-4:42213058
7220 4 40168295 40169451 RP11-395I6.3 pituitary 5.61e-01 0.000260 0 4:40202609-4:42213058
12374 4 81105033 81125483 PRDM8 psychencode -4.37e-01 0.000176 0 4:79093979-4:80990100
7287 4 78634541 78740769 CNOT6L brain_cortex -3.52e-01 0.000170 0 4:79093979-4:80990100
7272 4 80413570 80497614 LINC00989 adrenal_gland -7.49e-01 0.000211 0 4:79093979-4:80990100
12266 4 79472673 79531597 ANXA3 psychencode -3.67e-01 0.000172 0 4:79093979-4:80990100
7258 4 80822770 80994477 ANTXR2 cmc.brain.rnaseq -1.16e+00 0.000309 0 4:79093979-4:80990100
7247 4 79472741 79531605 ANXA3 ntr.blood.rnaarr -1.48e+00 0.000460 0 4:79093979-4:80990100
7239 4 80822303 81046608 ANTXR2 thyroid 1.96e+00 0.001030 0 4:79093979-4:80990100
7283 4 79808281 79860592 PAQR3 pituitary -3.69e-01 0.000172 0 4:79093979-4:80990100
7238 4 79697531 79833339 BMP2K ntr.blood.rnaarr -2.00e+00 0.001130 0 4:79093979-4:80990100
7244 4 81106423 81125480 PRDM8 ntr.blood.rnaarr 1.66e+00 0.000609 0 4:79093979-4:80990100
12465 4 79808281 79860592 PAQR3 psychencode 7.81e-01 0.000218 0 4:79093979-4:80990100
7266 4 79808283 79860582 PAQR3 cmc.brain.rnaseq -9.81e-01 0.000255 0 4:79093979-4:80990100
7277 4 81104434 81111323 RP11-377G16.2 brain_hypothalamus -5.99e-01 0.000190 0 4:79093979-4:80990100
7273 4 78978723 79465423 FRAS1 cmc.brain.rnaseq 7.28e-01 0.000207 0 4:79093979-4:80990100
7241 4 79808281 79860592 PAQR3 thyroid -1.73e+00 0.000691 0 4:79093979-4:80990100
7246 4 81256873 81884910 C4orf22 cmc.brain.rnaseq_splicing 1.50e+00 0.000474 0 4:79093979-4:80990100
7293 4 78783674 78873944 MRPL1 yfs.blood.rnaarr 9.21e-02 0.000161 0 4:79093979-4:80990100
7279 4 81187741 81212171 FGF5 cmc.brain.rnaseq -4.44e-01 0.000176 0 4:79093979-4:80990100
7259 4 79808281 79860592 PAQR3 brain_cerebellum 1.12e+00 0.000301 0 4:79093979-4:80990100
7261 4 79472673 79531575 ANXA3 brain_cerebellar_hemisphere -1.11e+00 0.000290 0 4:79093979-4:80990100
7245 4 79808281 79860592 PAQR3 brain_nucleus_accumbens_basal_ganglia 1.47e+00 0.000474 0 4:79093979-4:80990100
7276 4 81105438 81125482 PRDM8 cmc.brain.rnaseq_splicing 6.07e-01 0.000191 0 4:79093979-4:80990100
7254 4 79472673 79531575 ANXA3 brain_hypothalamus -1.22e+00 0.000329 0 4:79093979-4:80990100
7236 4 81105033 81125483 PRDM8 thyroid 2.08e+00 0.001310 0 4:79093979-4:80990100
7243 4 79697496 79837526 BMP2K yfs.blood.rnaarr -1.67e+00 0.000622 0 4:79093979-4:80990100
7237 4 78783804 78873944 MRPL1 cmc.brain.rnaseq 2.02e+00 0.001160 0 4:79093979-4:80990100
7286 4 80584915 80617991 RP11-452C8.1 thyroid -3.48e-01 0.000170 0 4:79093979-4:80990100
7260 4 79892902 80229952 LINC01088 thyroid -1.11e+00 0.000291 0 4:79093979-4:80990100
7291 4 79472673 79531575 ANXA3 brain_nucleus_accumbens_basal_ganglia 1.56e-01 0.000163 0 4:79093979-4:80990100
7264 4 80413570 80497614 LINC00989 brain_substantia_nigra 9.96e-01 0.000259 0 4:79093979-4:80990100
7265 4 80413570 80497614 LINC00989 whole_blood -9.80e-01 0.000256 0 4:79093979-4:80990100
7280 4 81105033 81125483 PRDM8 yfs.blood.rnaarr 4.25e-01 0.000174 0 4:79093979-4:80990100
7290 4 78783674 78873944 MRPL1 brain_putamen_basal_ganglia 2.09e-01 0.000163 0 4:79093979-4:80990100
7263 4 79808281 79860592 PAQR3 brain_caudate_basal_ganglia 1.02e+00 0.000274 0 4:79093979-4:80990100
7269 4 80413570 80497614 LINC00989 thyroid -8.17e-01 0.000222 0 4:79093979-4:80990100
7251 4 78978724 79465423 FRAS1 thyroid -1.29e+00 0.000359 0 4:79093979-4:80990100
7248 4 80822303 81046608 ANTXR2 yfs.blood.rnaarr 1.40e+00 0.000416 0 4:79093979-4:80990100
7262 4 79472741 79531605 ANXA3 cmc.brain.rnaseq -1.06e+00 0.000276 0 4:79093979-4:80990100
12900 4 81256874 81884910 C4orf22 psychencode 1.27e+00 0.000347 0 4:79093979-4:80990100
7268 4 78978723 79465423 FRAS1 cmc.brain.rnaseq_splicing 8.72e-01 0.000232 0 4:79093979-4:80990100
7288 4 81105438 81125482 PRDM8 cmc.brain.rnaseq 2.62e-01 0.000165 0 4:79093979-4:80990100
7256 4 79808281 79860592 PAQR3 brain_cerebellar_hemisphere 1.17e+00 0.000318 0 4:79093979-4:80990100
7282 4 81187753 81257834 FGF5 brain_cerebellar_hemisphere -4.00e-01 0.000173 0 4:79093979-4:80990100
7270 4 81105438 81125482 PRDM8 cmc.brain.rnaseq_splicing -8.07e-01 0.000219 0 4:79093979-4:80990100
7250 4 78978724 79465423 FRAS1 brain_caudate_basal_ganglia 1.31e+00 0.000365 0 4:79093979-4:80990100
12261 4 81187753 81257834 FGF5 psychencode -8.05e-01 0.000219 0 4:79093979-4:80990100
7253 4 78634541 78740769 CNOT6L brain_nucleus_accumbens_basal_ganglia -1.22e+00 0.000330 0 4:79093979-4:80990100
7292 4 78634541 78740769 CNOT6L thyroid -1.29e-01 0.000162 0 4:79093979-4:80990100
7281 4 78634541 78740769 CNOT6L brain_hypothalamus 4.00e-01 0.000173 0 4:79093979-4:80990100
7267 4 79472673 79531575 ANXA3 brain_frontal_cortex_ba9 -8.93e-01 0.000235 0 4:79093979-4:80990100
7284 4 81105033 81125483 PRDM8 brain_putamen_basal_ganglia -3.64e-01 0.000171 0 4:79093979-4:80990100
7255 4 78978723 79465423 FRAS1 cmc.brain.rnaseq_splicing -1.22e+00 0.000329 0 4:79093979-4:80990100
7240 4 81105438 81125482 PRDM8 cmc.brain.rnaseq_splicing 1.75e+00 0.000707 0 4:79093979-4:80990100
7275 4 81105438 81125482 PRDM8 cmc.brain.rnaseq_splicing -6.12e-01 0.000193 0 4:79093979-4:80990100
7278 4 79567057 79603853 RP11-792D21.2 whole_blood 5.81e-01 0.000188 0 4:79093979-4:80990100
7242 4 79472673 79531575 ANXA3 brain_cerebellum -1.68e+00 0.000626 0 4:79093979-4:80990100
7271 4 79102020 79103200 SERBP1P5 brain_nucleus_accumbens_basal_ganglia 7.97e-01 0.000219 0 4:79093979-4:80990100
7252 4 79567057 79603853 RP11-792D21.2 thyroid -1.25e+00 0.000341 0 4:79093979-4:80990100
7294 4 78978724 79465423 FRAS1 brain_cortex 3.16e-02 0.000160 0 4:79093979-4:80990100
7285 4 79472673 79531575 ANXA3 thyroid -3.76e-01 0.000171 0 4:79093979-4:80990100
7289 4 79472673 79531597 ANXA3 yfs.blood.rnaarr 2.38e-01 0.000164 0 4:79093979-4:80990100
7257 4 78634541 78740769 CNOT6L brain_hippocampus 1.18e+00 0.000317 0 4:79093979-4:80990100
7274 4 78634541 78740769 CNOT6L brain_amygdala 6.96e-01 0.000203 0 4:79093979-4:80990100
7249 4 79472673 79531575 ANXA3 pituitary -1.39e+00 0.000410 0 4:79093979-4:80990100
13286 4 79567057 79603853 LINC01094 psychencode -2.05e+00 0.001230 0 4:79093979-4:80990100
12466 4 80822303 81046608 ANTXR2 psychencode 2.75e-01 0.000166 0 4:79093979-4:80990100
7322 4 120375946 120473180 RP11-33B1.1 brain_hypothalamus 1.34e+00 0.000435 0 4:120392684-4:122657973
7342 4 122722472 122738176 EXOSC9 yfs.blood.rnaarr -1.11e+00 0.000341 0 4:120392684-4:122657973
7404 4 123091757 123283914 KIAA1109 cmc.brain.rnaseq 1.98e-01 0.000191 0 4:120392684-4:122657973
7325 4 120375946 120473180 RP11-33B1.1 brain_caudate_basal_ganglia 1.32e+00 0.000418 0 4:120392684-4:122657973
7336 4 120133800 120216672 USP53 thyroid -1.17e+00 0.000357 0 4:120392684-4:122657973
7349 4 120217574 120222256 C4orf3 ntr.blood.rnaarr 1.06e+00 0.000326 0 4:120392684-4:122657973
7386 4 120255484 120299388 KLHL2P1 brain_frontal_cortex_ba9 -4.78e-01 0.000212 0 4:120392684-4:122657973
7381 4 122745483 122791652 BBS7 cmc.brain.rnaseq 3.60e-01 0.000231 0 4:120392684-4:122657973
7360 4 120255484 120299388 KLHL2P1 brain_putamen_basal_ganglia -1.02e+00 0.000304 0 4:120392684-4:122657973
7330 4 120375946 120473180 RP11-33B1.1 brain_nucleus_accumbens_basal_ganglia 1.22e+00 0.000375 0 4:120392684-4:122657973
7350 4 120133742 120216672 USP53 yfs.blood.rnaarr -1.11e+00 0.000325 0 4:120392684-4:122657973
7309 4 120330488 120331388 RP11-33B1.4 pituitary -1.53e+00 0.000614 0 4:120392684-4:122657973
7348 4 120375946 120473180 RP11-33B1.1 brain_substantia_nigra 1.11e+00 0.000328 0 4:120392684-4:122657973
7323 4 120255484 120299388 KLHL2P1 brain_cortex -1.33e+00 0.000427 0 4:120392684-4:122657973
7334 4 120375946 120473180 RP11-33B1.1 brain_amygdala 1.22e+00 0.000370 0 4:120392684-4:122657973
7345 4 120375946 120473180 RP11-33B1.1 thyroid 1.12e+00 0.000335 0 4:120392684-4:122657973
7368 4 120133781 120216673 USP53 cmc.brain.rnaseq 8.60e-01 0.000270 0 4:120392684-4:122657973
7327 4 120312986 120316490 RP11-548H18.2 brain_nucleus_accumbens_basal_ganglia -1.27e+00 0.000400 0 4:120392684-4:122657973
7364 4 120312986 120316490 RP11-548H18.2 brain_amygdala -9.17e-01 0.000280 0 4:120392684-4:122657973
7329 4 120375937 120420747 LOC645513 cmc.brain.rnaseq 1.24e+00 0.000385 0 4:120392684-4:122657973
7390 4 120255484 120299388 KLHL2P1 pituitary -3.65e-01 0.000207 0 4:120392684-4:122657973
7405 4 122745595 122791652 BBS7 brain_anterior_cingulate_cortex_ba24 6.76e-02 0.000190 0 4:120392684-4:122657973
7358 4 120255484 120299388 KLHL2P1 brain_hypothalamus -1.03e+00 0.000307 0 4:120392684-4:122657973
7354 4 120133781 120216673 USP53 cmc.brain.rnaseq_splicing 1.02e+00 0.000314 0 4:120392684-4:122657973
7331 4 120312986 120316490 RP11-548H18.2 brain_cortex -1.23e+00 0.000374 0 4:120392684-4:122657973
7355 4 120312986 120316490 RP11-548H18.2 brain_frontal_cortex_ba9 -1.05e+00 0.000311 0 4:120392684-4:122657973
7346 4 120218207 120225600 C4orf3 whole_blood -1.12e+00 0.000334 0 4:120392684-4:122657973
7298 4 121615928 121844013 PRDM5 cmc.brain.rnaseq_splicing -3.18e+00 0.018800 0 4:120392684-4:122657973
7361 4 120375946 120473180 RP11-33B1.1 pituitary 1.00e+00 0.000298 0 4:120392684-4:122657973
12265 4 120415550 120550146 PDE5A psychencode 1.40e+00 0.000494 0 4:120392684-4:122657973
7312 4 120218207 120225600 C4orf3 adrenal_gland -1.52e+00 0.000550 0 4:120392684-4:122657973
7320 4 120312986 120316490 RP11-548H18.2 brain_anterior_cingulate_cortex_ba24 -1.36e+00 0.000450 0 4:120392684-4:122657973
7311 4 120330488 120331388 RP11-33B1.4 brain_cerebellar_hemisphere -1.53e+00 0.000562 0 4:120392684-4:122657973
7344 4 122737603 122745087 CCNA2 thyroid 1.12e+00 0.000338 0 4:120392684-4:122657973
7359 4 120255484 120299388 KLHL2P1 brain_nucleus_accumbens_basal_ganglia -1.01e+00 0.000305 0 4:120392684-4:122657973
12314 4 120133742 120216672 USP53 psychencode 1.06e+00 0.000321 0 4:120392684-4:122657973
11660 4 122052563 122148621 TNIP3 psychencode -1.93e+00 0.001200 0 4:120392684-4:122657973
7357 4 120312986 120316490 RP11-548H18.2 brain_putamen_basal_ganglia -1.04e+00 0.000308 0 4:120392684-4:122657973
7338 4 120375946 120473180 RP11-33B1.1 whole_blood 1.17e+00 0.000353 0 4:120392684-4:122657973
13258 4 120312986 120316490 RP11-548H18.2 psychencode -8.67e-01 0.000272 0 4:120392684-4:122657973
7310 4 120375946 120473180 RP11-33B1.1 brain_cerebellar_hemisphere 1.55e+00 0.000573 0 4:120392684-4:122657973
7297 4 121606074 121844025 PRDM5 whole_blood -3.29e+00 0.025900 0 4:120392684-4:122657973
7321 4 120133781 120216673 USP53 cmc.brain.rnaseq_splicing 1.34e+00 0.000435 0 4:120392684-4:122657973
7395 4 122249796 122302181 QRFPR cmc.brain.rnaseq 1.87e-01 0.000196 0 4:120392684-4:122657973
7384 4 120255484 120299388 KLHL2P1 thyroid -5.56e-01 0.000217 0 4:120392684-4:122657973
7365 4 120312986 120316490 RP11-548H18.2 brain_caudate_basal_ganglia -9.25e-01 0.000278 0 4:120392684-4:122657973
7375 4 122722471 122738176 EXOSC9 cmc.brain.rnaseq_splicing -8.07e-01 0.000248 0 4:120392684-4:122657973
7347 4 121615928 121844013 PRDM5 cmc.brain.rnaseq_splicing 1.08e+00 0.000328 0 4:120392684-4:122657973
7314 4 120330488 120331388 RP11-33B1.4 brain_hippocampus 1.50e+00 0.000547 0 4:120392684-4:122657973
7339 4 120375946 120473180 RP11-33B1.1 brain_hippocampus 1.16e+00 0.000347 0 4:120392684-4:122657973
7403 4 122589110 122618268 ANXA5 brain_frontal_cortex_ba9 2.11e-01 0.000192 0 4:120392684-4:122657973
7366 4 123073488 123283913 KIAA1109 brain_hypothalamus -8.15e-01 0.000273 0 4:120392684-4:122657973
7302 4 122250467 122302214 QRFPR thyroid -2.31e+00 0.002920 0 4:120392684-4:122657973
7380 4 120312986 120316490 RP11-548H18.2 brain_cerebellar_hemisphere -6.71e-01 0.000231 0 4:120392684-4:122657973
7385 4 120312986 120316490 RP11-548H18.2 brain_cerebellum -5.16e-01 0.000217 0 4:120392684-4:122657973
7353 4 120375946 120473180 RP11-33B1.1 brain_cortex 1.07e+00 0.000317 0 4:120392684-4:122657973
7373 4 120415550 120550146 PDE5A thyroid -7.47e-01 0.000254 0 4:120392684-4:122657973
7400 4 120312986 120316490 RP11-548H18.2 thyroid 9.13e-02 0.000193 0 4:120392684-4:122657973
7367 4 120255484 120299388 KLHL2P1 adrenal_gland -8.80e-01 0.000270 0 4:120392684-4:122657973
7295 4 121615928 121844013 PRDM5 cmc.brain.rnaseq_splicing 3.63e+00 0.080900 1 4:120392684-4:122657973
7317 4 122250467 122302214 QRFPR brain_hippocampus -1.53e+00 0.000516 0 4:120392684-4:122657973
7379 4 120375946 120473180 RP11-33B1.1 adrenal_gland 6.50e-01 0.000232 0 4:120392684-4:122657973
13278 4 120377505 120378432 RP11-33B1.3 psychencode 9.24e-01 0.000280 0 4:120392684-4:122657973
7315 4 120312986 120316490 RP11-548H18.2 pituitary -1.50e+00 0.000540 0 4:120392684-4:122657973
7313 4 121956768 121994176 NDNF thyroid -1.59e+00 0.000548 0 4:120392684-4:122657973
7343 4 120415553 120549975 PDE5A ntr.blood.rnaarr 1.13e+00 0.000339 0 4:120392684-4:122657973
12627 4 121956768 121994176 NDNF psychencode -3.45e+00 0.042800 1 4:120392684-4:122657973
7376 4 121606074 121844025 PRDM5 adrenal_gland 7.27e-01 0.000244 0 4:120392684-4:122657973
7383 4 122680084 122686340 TMEM155 cmc.brain.rnaseq_splicing 6.12e-01 0.000223 0 4:120392684-4:122657973
7328 4 120980577 120988229 MAD2L1 yfs.blood.rnaarr -1.25e+00 0.000395 0 4:120392684-4:122657973
7324 4 120255484 120299388 KLHL2P1 brain_anterior_cingulate_cortex_ba24 -1.31e+00 0.000419 0 4:120392684-4:122657973
12618 4 119809996 119982402 SYNPO2 psychencode 6.85e-01 0.000239 0 4:120392684-4:122657973
7296 4 122680088 122685449 TMEM155 brain_cerebellum 3.41e+00 0.045600 1 4:120392684-4:122657973
7370 4 120255484 120299388 KLHL2P1 brain_amygdala -8.44e-01 0.000263 0 4:120392684-4:122657973
7407 4 122589110 122618268 ANXA5 brain_nucleus_accumbens_basal_ganglia 1.15e-01 0.000190 0 4:120392684-4:122657973
7406 4 122589110 122618268 ANXA5 pituitary 7.45e-02 0.000190 0 4:120392684-4:122657973
7352 4 120375946 120473180 RP11-33B1.1 brain_frontal_cortex_ba9 1.07e+00 0.000318 0 4:120392684-4:122657973
7362 4 120976763 120988229 MAD2L1 brain_cerebellum 9.98e-01 0.000297 0 4:120392684-4:122657973
7391 4 120980578 120988013 MAD2L1 cmc.brain.rnaseq_splicing 4.35e-01 0.000201 0 4:120392684-4:122657973
7318 4 120375946 120473180 RP11-33B1.1 brain_cerebellum 1.47e+00 0.000515 0 4:120392684-4:122657973
13233 4 120375946 120473180 RP11-33B1.1 psychencode 1.56e+00 0.000584 0 4:120392684-4:122657973
7372 4 122250467 122302214 QRFPR adrenal_gland -8.08e-01 0.000257 0 4:120392684-4:122657973
7326 4 120330488 120331388 RP11-33B1.4 brain_caudate_basal_ganglia 1.31e+00 0.000414 0 4:120392684-4:122657973
7299 4 121606074 121844025 PRDM5 brain_frontal_cortex_ba9 -3.06e+00 0.012900 0 4:120392684-4:122657973
7341 4 120375946 120473180 RP11-33B1.1 brain_putamen_basal_ganglia 1.14e+00 0.000343 0 4:120392684-4:122657973
7306 4 120133770 120216672 USP53 ntr.blood.rnaarr 1.94e+00 0.001150 0 4:120392684-4:122657973
13269 4 120255484 120299388 KLHL2P1 psychencode -8.36e-01 0.000254 0 4:120392684-4:122657973
7304 4 122052563 122148621 TNIP3 brain_amygdala -2.26e+00 0.001990 0 4:120392684-4:122657973
7308 4 122052563 122148621 TNIP3 brain_cerebellar_hemisphere 1.22e+00 0.000640 0 4:120392684-4:122657973
7307 4 120330488 120331388 RP11-33B1.4 adrenal_gland 1.72e+00 0.000748 0 4:120392684-4:122657973
7382 4 122685740 122687962 AC079341.1 brain_frontal_cortex_ba9 5.88e-01 0.000226 0 4:120392684-4:122657973
12807 4 122250467 122302214 QRFPR psychencode -3.94e-01 0.000204 0 4:120392684-4:122657973
12491 4 120976763 120988229 MAD2L1 psychencode -1.06e+00 0.000299 0 4:120392684-4:122657973
7412 4 122589110 122618268 ANXA5 whole_blood -1.81e-02 0.000189 0 4:120392684-4:122657973
12490 4 120218207 120225600 C4orf3 psychencode -2.02e-02 0.000189 0 4:120392684-4:122657973
7369 4 121606074 121844025 PRDM5 thyroid 8.08e-01 0.000268 0 4:120392684-4:122657973
7340 4 120238405 120243545 FABP2 adrenal_gland -1.15e+00 0.000347 0 4:120392684-4:122657973
7388 4 122722472 122737598 EXOSC9 whole_blood -5.50e-01 0.000211 0 4:120392684-4:122657973
7411 4 122588554 122618152 ANXA5 ntr.blood.rnaarr 7.86e-02 0.000189 0 4:120392684-4:122657973
7374 4 122680088 122685449 TMEM155 brain_putamen_basal_ganglia -6.56e-01 0.000253 0 4:120392684-4:122657973
7399 4 122589151 122618147 ANXA5 cmc.brain.rnaseq 2.43e-01 0.000193 0 4:120392684-4:122657973
7305 4 122680084 122686340 TMEM155 cmc.brain.rnaseq_splicing -2.11e+00 0.001340 0 4:120392684-4:122657973
7401 4 123073488 123283913 KIAA1109 brain_amygdala -5.24e-02 0.000192 0 4:120392684-4:122657973
7397 4 122800182 122872909 TRPC3 brain_amygdala 3.53e-02 0.000195 0 4:120392684-4:122657973
7408 4 122589110 122618268 ANXA5 brain_anterior_cingulate_cortex_ba24 7.58e-02 0.000190 0 4:120392684-4:122657973
7389 4 122589110 122618268 ANXA5 brain_cerebellar_hemisphere -4.30e-01 0.000207 0 4:120392684-4:122657973
7392 4 122589110 122618268 ANXA5 thyroid 3.86e-01 0.000199 0 4:120392684-4:122657973
7393 4 122589110 122618268 ANXA5 adrenal_gland 3.34e-01 0.000198 0 4:120392684-4:122657973
7333 4 122722471 122738176 EXOSC9 ntr.blood.rnaarr 1.18e+00 0.000370 0 4:120392684-4:122657973
7410 4 122589110 122618268 ANXA5 brain_cerebellum -1.60e-02 0.000189 0 4:120392684-4:122657973
12091 4 122722472 122738176 EXOSC9 psychencode 2.44e-01 0.000198 0 4:120392684-4:122657973
7301 4 121606074 121844025 PRDM5 brain_cerebellar_hemisphere -2.78e+00 0.006050 0 4:120392684-4:122657973
7303 4 121606074 121844025 PRDM5 pituitary -2.44e+00 0.002780 0 4:120392684-4:122657973
7335 4 120330488 120331388 RP11-33B1.4 brain_putamen_basal_ganglia 1.20e+00 0.000370 0 4:120392684-4:122657973
7337 4 120330488 120331388 RP11-33B1.4 brain_hypothalamus 1.19e+00 0.000356 0 4:120392684-4:122657973
7351 4 120330488 120331388 RP11-33B1.4 brain_frontal_cortex_ba9 1.06e+00 0.000319 0 4:120392684-4:122657973
7387 4 122685740 122687962 AC079341.1 brain_cortex -5.27e-01 0.000211 0 4:120392684-4:122657973
7363 4 123073488 123283913 KIAA1109 adrenal_gland -1.01e+00 0.000288 0 4:120392684-4:122657973
12492 4 122589110 122618268 ANXA5 psychencode 2.06e-01 0.000191 0 4:120392684-4:122657973
7394 4 122589110 122618268 ANXA5 brain_cortex 3.46e-01 0.000197 0 4:120392684-4:122657973
7356 4 120330488 120331388 RP11-33B1.4 whole_blood -1.04e+00 0.000309 0 4:120392684-4:122657973
7371 4 120330488 120331388 RP11-33B1.4 brain_amygdala 8.26e-01 0.000259 0 4:120392684-4:122657973
7377 4 120330488 120331388 RP11-33B1.4 thyroid -6.99e-01 0.000242 0 4:120392684-4:122657973
7316 4 120375946 120473180 RP11-33B1.1 brain_anterior_cingulate_cortex_ba24 1.49e+00 0.000535 0 4:120392684-4:122657973
7396 4 122589110 122618268 ANXA5 yfs.blood.rnaarr 2.92e-01 0.000195 0 4:120392684-4:122657973
7378 4 120330488 120331388 RP11-33B1.4 brain_cortex 6.65e-01 0.000235 0 4:120392684-4:122657973
7398 4 122589110 122618268 ANXA5 brain_caudate_basal_ganglia 2.50e-01 0.000193 0 4:120392684-4:122657973
7402 4 122589110 122618268 ANXA5 brain_putamen_basal_ganglia 2.27e-01 0.000192 0 4:120392684-4:122657973
7319 4 120330488 120331388 RP11-33B1.4 brain_cerebellum -1.42e+00 0.000483 0 4:120392684-4:122657973
7332 4 120361716 120371312 RP11-33B1.2 thyroid -1.21e+00 0.000371 0 4:120392684-4:122657973
7409 4 122589110 122618268 ANXA5 brain_hippocampus 1.10e-01 0.000190 0 4:120392684-4:122657973
7300 4 121606074 121844025 PRDM5 brain_anterior_cingulate_cortex_ba24 -3.06e+00 0.012900 0 4:120392684-4:122657973
7465 4 123651703 123653348 CETN4P brain_cortex 2.59e-01 0.000203 0 4:122658581-4:124286478
7419 4 123803033 123805867 RP11-170N16.3 brain_putamen_basal_ganglia 1.01e+00 0.000733 0 4:122658581-4:124286478
7473 4 123803033 123805867 RP11-170N16.3 thyroid -1.16e-01 0.000190 0 4:122658581-4:124286478
7425 4 123651703 123653348 CETN4P brain_hypothalamus 6.23e-01 0.000459 0 4:122658581-4:124286478
13525 4 123803033 123805867 RP11-170N16.3 psychencode 1.10e+00 0.000330 0 4:122658581-4:124286478
12264 4 123073488 123283913 KIAA1109 psychencode -3.81e+00 0.143000 1 4:122658581-4:124286478
7413 4 123091757 123283914 KIAA1109 cmc.brain.rnaseq -3.60e+00 0.066000 0 4:122658581-4:124286478
7457 4 122589110 122618268 ANXA5 pituitary 5.76e-01 0.000213 0 4:122658581-4:124286478
7416 4 123073488 123283913 KIAA1109 brain_amygdala -2.93e+00 0.007990 0 4:122658581-4:124286478
7459 4 123653857 123666098 BBS12 adrenal_gland -5.71e-01 0.000210 0 4:122658581-4:124286478
12705 4 123653857 123666098 BBS12 psychencode 3.34e-01 0.000211 0 4:122658581-4:124286478
7443 4 122737603 122745087 CCNA2 thyroid -7.43e-01 0.000255 0 4:122658581-4:124286478
7454 4 123809852 123844123 NUDT6 brain_cerebellar_hemisphere -6.93e-01 0.000221 0 4:122658581-4:124286478
7428 4 123653856 123666098 BBS12 cmc.brain.rnaseq 1.09e+00 0.000399 0 4:122658581-4:124286478
7427 4 123653857 123666098 BBS12 thyroid 1.15e+00 0.000451 0 4:122658581-4:124286478
7430 4 123073488 123283913 KIAA1109 adrenal_gland -1.28e+00 0.000356 0 4:122658581-4:124286478
7432 4 123747863 123819391 FGF2 brain_substantia_nigra 1.15e+00 0.000318 0 4:122658581-4:124286478
7448 4 122745483 122791652 BBS7 cmc.brain.rnaseq -8.18e-01 0.000235 0 4:122658581-4:124286478
7444 4 123653857 123666098 BBS12 brain_cerebellum 6.02e-01 0.000252 0 4:122658581-4:124286478
12262 4 123747863 123819391 FGF2 psychencode 1.23e-01 0.000194 0 4:122658581-4:124286478
7472 4 123844229 124240605 SPATA5 thyroid -6.00e-02 0.000190 0 4:122658581-4:124286478
7426 4 122745595 122791652 BBS7 brain_cortex -1.48e+00 0.000452 0 4:122658581-4:124286478
7466 4 123809852 123844123 NUDT6 pituitary -3.03e-01 0.000200 0 4:122658581-4:124286478
7418 4 123091757 123283914 KIAA1109 cmc.brain.rnaseq_splicing 1.55e+00 0.000776 0 4:122658581-4:124286478
7437 4 122589110 122618268 ANXA5 brain_putamen_basal_ganglia -9.15e-01 0.000280 0 4:122658581-4:124286478
13077 4 122685740 122687962 AC079341.1 psychencode 2.55e-01 0.000235 0 4:122658581-4:124286478
7440 4 123651703 123653348 CETN4P brain_frontal_cortex_ba9 7.02e-01 0.000276 0 4:122658581-4:124286478
7447 4 123653857 123666098 BBS12 brain_cerebellar_hemisphere 5.03e-01 0.000241 0 4:122658581-4:124286478
7449 4 122685740 122687962 AC079341.1 brain_cortex 6.77e-01 0.000230 0 4:122658581-4:124286478
7423 4 123844224 124240604 SPATA5 cmc.brain.rnaseq 1.32e+00 0.000487 0 4:122658581-4:124286478
7422 4 123809852 123844123 NUDT6 brain_hypothalamus 1.46e+00 0.000526 0 4:122658581-4:124286478
12312 4 123844229 124240605 SPATA5 psychencode 1.36e+00 0.000466 0 4:122658581-4:124286478
7431 4 122745595 122791652 BBS7 brain_anterior_cingulate_cortex_ba24 -1.26e+00 0.000334 0 4:122658581-4:124286478
7468 4 123809852 123844123 NUDT6 thyroid 3.83e-01 0.000198 0 4:122658581-4:124286478
7455 4 123653857 123666098 BBS12 yfs.blood.rnaarr 1.61e-01 0.000216 0 4:122658581-4:124286478
7433 4 123651343 123653613 CETN4P cmc.brain.rnaseq 8.91e-01 0.000300 0 4:122658581-4:124286478
7460 4 122249796 122302181 QRFPR cmc.brain.rnaseq 5.23e-01 0.000206 0 4:122658581-4:124286478
12603 4 123809852 123844123 NUDT6 psychencode 7.46e-01 0.000249 0 4:122658581-4:124286478
7451 4 123651703 123653348 CETN4P adrenal_gland 3.52e-01 0.000223 0 4:122658581-4:124286478
7446 4 123813798 123844159 NUDT6 cmc.brain.rnaseq_splicing -6.81e-01 0.000249 0 4:122658581-4:124286478
7475 4 122722471 122738176 EXOSC9 cmc.brain.rnaseq -1.02e-01 0.000188 0 4:122658581-4:124286478
7461 4 122680084 122686340 TMEM155 cmc.brain.rnaseq_splicing -9.35e-02 0.000205 0 4:122658581-4:124286478
12489 4 124317950 124324910 SPRY1 psychencode 1.59e+00 0.000545 0 4:122658581-4:124286478
7415 4 122589110 122618268 ANXA5 brain_frontal_cortex_ba9 3.15e+00 0.015800 0 4:122658581-4:124286478
7471 4 122680084 122686340 TMEM155 cmc.brain.rnaseq_splicing 2.51e-02 0.000192 0 4:122658581-4:124286478
7474 4 122589110 122618268 ANXA5 brain_cortex -5.58e-02 0.000188 0 4:122658581-4:124286478
7476 4 122589110 122618268 ANXA5 thyroid 1.02e-01 0.000187 0 4:122658581-4:124286478
7439 4 122680084 122686340 TMEM155 cmc.brain.rnaseq 6.39e-01 0.000277 0 4:122658581-4:124286478
7453 4 122680088 122685449 TMEM155 brain_putamen_basal_ganglia 7.02e-01 0.000222 0 4:122658581-4:124286478
7462 4 122589110 122618268 ANXA5 yfs.blood.rnaarr 2.71e-01 0.000203 0 4:122658581-4:124286478
7464 4 123651703 123653348 CETN4P brain_caudate_basal_ganglia 4.71e-01 0.000203 0 4:122658581-4:124286478
7420 4 123813798 123844159 NUDT6 cmc.brain.rnaseq_splicing -1.58e+00 0.000620 0 4:122658581-4:124286478
7477 4 122589110 122618268 ANXA5 brain_nucleus_accumbens_basal_ganglia 7.06e-02 0.000186 0 4:122658581-4:124286478
7424 4 123813798 123844159 NUDT6 cmc.brain.rnaseq 1.40e+00 0.000481 0 4:122658581-4:124286478
7452 4 122250467 122302214 QRFPR thyroid 6.87e-01 0.000223 0 4:122658581-4:124286478
12263 4 122745595 122791652 BBS7 psychencode -4.19e-01 0.000204 0 4:122658581-4:124286478
12808 4 122250467 122302214 QRFPR psychencode -6.21e-01 0.000234 0 4:122658581-4:124286478
12494 4 122680088 122686582 TMEM155 psychencode -6.09e-01 0.000212 0 4:122658581-4:124286478
12493 4 122589110 122618268 ANXA5 psychencode -3.24e-01 0.000229 0 4:122658581-4:124286478
7445 4 124571422 124851561 RP11-93L9.1 adrenal_gland -7.65e-01 0.000251 0 4:122658581-4:124286478
7436 4 122589110 122618268 ANXA5 brain_caudate_basal_ganglia -9.80e-01 0.000282 0 4:122658581-4:124286478
7470 4 122722471 122738176 EXOSC9 cmc.brain.rnaseq_splicing 1.58e-01 0.000195 0 4:122658581-4:124286478
7417 4 123073488 123283913 KIAA1109 brain_hypothalamus -2.22e+00 0.001570 0 4:122658581-4:124286478
7421 4 123844229 124240605 SPATA5 brain_cerebellum 1.52e+00 0.000585 0 4:122658581-4:124286478
7458 4 122589110 122618268 ANXA5 brain_cerebellum 5.68e-01 0.000212 0 4:122658581-4:124286478
7467 4 122722472 122737598 EXOSC9 whole_blood 3.08e-01 0.000198 0 4:122658581-4:124286478
7429 4 122680088 122685449 TMEM155 brain_cerebellar_hemisphere 1.05e+00 0.000359 0 4:122658581-4:124286478
7438 4 122588554 122618152 ANXA5 ntr.blood.rnaarr -4.54e-01 0.000280 0 4:122658581-4:124286478
7441 4 122680088 122685449 TMEM155 brain_cerebellum 5.81e-01 0.000270 0 4:122658581-4:124286478
7442 4 122800182 122872909 TRPC3 brain_amygdala 8.12e-01 0.000256 0 4:122658581-4:124286478
7456 4 122589110 122618268 ANXA5 whole_blood 5.93e-01 0.000213 0 4:122658581-4:124286478
7463 4 122722471 122738176 EXOSC9 cmc.brain.rnaseq_splicing -3.72e-02 0.000203 0 4:122658581-4:124286478
7469 4 122722472 122738176 EXOSC9 yfs.blood.rnaarr 1.86e-01 0.000196 0 4:122658581-4:124286478
7434 4 122589110 122618268 ANXA5 brain_anterior_cingulate_cortex_ba24 -6.74e-01 0.000295 0 4:122658581-4:124286478
7450 4 122722471 122738176 EXOSC9 ntr.blood.rnaarr 3.51e-01 0.000225 0 4:122658581-4:124286478
12092 4 122722472 122738176 EXOSC9 psychencode 1.38e+00 0.000423 0 4:122658581-4:124286478
12313 4 122737599 122745087 CCNA2 psychencode 1.98e-01 0.000191 0 4:122658581-4:124286478
7414 4 123073488 123283913 KIAA1109 brain_cortex -3.27e+00 0.022200 0 4:122658581-4:124286478
7435 4 122685740 122687962 AC079341.1 brain_frontal_cortex_ba9 7.64e-01 0.000293 0 4:122658581-4:124286478
12065 4 154387498 154557863 KIAA0922 psychencode -3.24e-02 0.000161 0 4:155056126-4:157484948
7520 4 155456148 155471585 PLRG1 cmc.brain.rnaseq_splicing 2.20e-01 0.000165 0 4:155056126-4:157484948
7502 4 154631277 154681387 RNF175 brain_cortex -8.49e-01 0.000228 0 4:155056126-4:157484948
7517 4 157681606 157892546 PDGFC adrenal_gland 2.75e-01 0.000167 0 4:155056126-4:157484948
7482 4 156845270 156875069 CTSO yfs.blood.rnaarr 1.94e+00 0.001010 0 4:155056126-4:157484948
7488 4 155243805 155412930 DCHS2 cmc.brain.rnaseq 1.38e+00 0.000403 0 4:155056126-4:157484948
13276 4 154561320 154602332 RP11-153M7.3 psychencode -4.09e-01 0.000174 0 4:155056126-4:157484948
7496 4 155456158 155471587 PLRG1 yfs.blood.rnaarr 1.12e+00 0.000295 0 4:155056126-4:157484948
7518 4 154701744 154710272 SFRP2 whole_blood 2.68e-01 0.000166 0 4:155056126-4:157484948
7501 4 156845270 156875069 CTSO brain_hypothalamus 9.59e-01 0.000252 0 4:155056126-4:157484948
7514 4 154631311 154681387 RNF175 cmc.brain.rnaseq_splicing -3.58e-01 0.000171 0 4:155056126-4:157484948
7509 4 156845270 156875069 CTSO thyroid 5.82e-01 0.000190 0 4:155056126-4:157484948
12611 4 155456158 155471587 PLRG1 psychencode -4.23e-01 0.000175 0 4:155056126-4:157484948
7493 4 156587863 156653501 GUCY1A3 brain_cerebellum 1.26e+00 0.000353 0 4:155056126-4:157484948
13244 4 154579724 154580805 RP11-153M7.1 psychencode 3.37e-01 0.000170 0 4:155056126-4:157484948
7511 4 156845270 156875069 CTSO brain_amygdala 5.74e-01 0.000189 0 4:155056126-4:157484948
7494 4 157681606 157892546 PDGFC thyroid -1.26e+00 0.000348 0 4:155056126-4:157484948
12496 4 156587863 156653501 GUCY1A3 psychencode -7.73e-01 0.000214 0 4:155056126-4:157484948
7487 4 156845269 156875048 CTSO cmc.brain.rnaseq 1.52e+00 0.000497 0 4:155056126-4:157484948
7480 4 156127681 156129583 RP11-92A5.2 brain_putamen_basal_ganglia 2.24e+00 0.001810 0 4:155056126-4:157484948
7483 4 156127681 156129583 RP11-92A5.2 brain_cortex 1.94e+00 0.000975 0 4:155056126-4:157484948
7486 4 156127681 156129583 RP11-92A5.2 brain_caudate_basal_ganglia 1.72e+00 0.000662 0 4:155056126-4:157484948
12064 4 155548097 155674270 LRAT psychencode -5.93e-01 0.000191 0 4:155056126-4:157484948
7503 4 155525286 155534119 FGG adrenal_gland -8.37e-01 0.000227 0 4:155056126-4:157484948
7498 4 156655600 156658214 RP11-588K22.2 adrenal_gland -1.07e+00 0.000277 0 4:155056126-4:157484948
7516 4 156127681 156129583 RP11-92A5.2 brain_nucleus_accumbens_basal_ganglia 2.84e-01 0.000168 0 4:155056126-4:157484948
13271 4 156127681 156130179 RP11-92A5.2 psychencode 2.13e+00 0.001440 0 4:155056126-4:157484948
7504 4 156655600 156658214 RP11-588K22.2 thyroid -7.76e-01 0.000214 0 4:155056126-4:157484948
7513 4 156655600 156658214 RP11-588K22.2 brain_anterior_cingulate_cortex_ba24 -5.03e-01 0.000183 0 4:155056126-4:157484948
7491 4 156129780 156138228 NPY2R cmc.brain.rnaseq 1.31e+00 0.000367 0 4:155056126-4:157484948
7479 4 156129781 156138230 NPY2R brain_putamen_basal_ganglia 2.42e+00 0.002740 0 4:155056126-4:157484948
7485 4 156129781 156138230 NPY2R brain_caudate_basal_ganglia 1.74e+00 0.000685 0 4:155056126-4:157484948
7522 4 156655600 156658214 RP11-588K22.2 brain_cerebellum -1.53e-02 0.000161 0 4:155056126-4:157484948
7484 4 156263810 156298122 MAP9 thyroid 1.72e+00 0.000710 0 4:155056126-4:157484948
12495 4 156263810 156298122 MAP9 psychencode 3.45e-01 0.000173 0 4:155056126-4:157484948
7478 4 156263811 156298122 MAP9 cmc.brain.rnaseq 2.92e+00 0.009950 0 4:155056126-4:157484948
7481 4 156263811 156298122 MAP9 cmc.brain.rnaseq_splicing 1.99e+00 0.001080 0 4:155056126-4:157484948
7508 4 155548097 155674270 LRAT brain_amygdala 6.09e-01 0.000192 0 4:155056126-4:157484948
7495 4 156263811 156298122 MAP9 cmc.brain.rnaseq_splicing -1.21e+00 0.000328 0 4:155056126-4:157484948
13390 4 156655600 156658214 RP11-588K22.2 psychencode 3.76e-03 0.000161 0 4:155056126-4:157484948
7499 4 156263811 156298122 MAP9 cmc.brain.rnaseq_splicing 1.04e+00 0.000273 0 4:155056126-4:157484948
7489 4 156680144 156728743 GUCY1B3 brain_anterior_cingulate_cortex_ba24 1.37e+00 0.000400 0 4:155056126-4:157484948
7500 4 154631277 154681387 RNF175 brain_frontal_cortex_ba9 9.62e-01 0.000252 0 4:155056126-4:157484948
7506 4 156587861 156658214 GUCY1A3 cmc.brain.rnaseq_splicing 6.36e-01 0.000195 0 4:155056126-4:157484948
7521 4 156587861 156658214 GUCY1A3 cmc.brain.rnaseq -2.38e-03 0.000161 0 4:155056126-4:157484948
7505 4 156824844 156841558 TDO2 cmc.brain.rnaseq 6.62e-01 0.000199 0 4:155056126-4:157484948
13343 4 156845270 156875069 CTSO psychencode 4.98e-01 0.000182 0 4:155056126-4:157484948
7490 4 156680144 156728743 GUCY1B3 thyroid -1.32e+00 0.000373 0 4:155056126-4:157484948
12892 4 155153399 155412930 DCHS2 psychencode 1.50e+00 0.000479 0 4:155056126-4:157484948
7507 4 156775890 156841558 TDO2 brain_cortex 6.23e-01 0.000194 0 4:155056126-4:157484948
7497 4 156845270 156875069 CTSO brain_substantia_nigra 1.08e+00 0.000283 0 4:155056126-4:157484948
7515 4 156845270 156875069 CTSO brain_caudate_basal_ganglia 3.09e-01 0.000170 0 4:155056126-4:157484948
7492 4 156587863 156653501 GUCY1A3 thyroid -1.29e+00 0.000359 0 4:155056126-4:157484948
7510 4 154701744 154710272 SFRP2 yfs.blood.rnaarr -5.79e-01 0.000189 0 4:155056126-4:157484948
7512 4 155456148 155471585 PLRG1 cmc.brain.rnaseq_splicing -5.71e-01 0.000189 0 4:155056126-4:157484948
7519 4 156775890 156841558 TDO2 brain_nucleus_accumbens_basal_ganglia 2.39e-01 0.000165 0 4:155056126-4:157484948
7527 4 177604689 177713881 VEGFC thyroid 1.77e+00 0.000738 0 4:176570716-4:178991910
7554 4 177604689 177713881 VEGFC adrenal_gland -4.66e-01 0.000177 0 4:176570716-4:178991910
7559 4 178351928 178363657 AGA cmc.brain.rnaseq -3.29e-01 0.000168 0 4:176570716-4:178991910
7548 4 178351924 178363657 AGA brain_putamen_basal_ganglia -6.42e-01 0.000195 0 4:176570716-4:178991910
7564 4 178351930 178363657 AGA ntr.blood.rnaarr -2.65e-01 0.000165 0 4:176570716-4:178991910
12157 4 177241115 177253396 SPCS3 psychencode 1.44e+00 0.000433 0 4:176570716-4:178991910
7553 4 178366133 178598280 RP11-130F10.1 brain_frontal_cortex_ba9 -5.36e-01 0.000183 0 4:176570716-4:178991910
7526 4 176711458 176733340 RP11-806K15.1 brain_cerebellum -1.80e+00 0.000764 0 4:176570716-4:178991910
7551 4 178351924 178363657 AGA brain_nucleus_accumbens_basal_ganglia -5.81e-01 0.000187 0 4:176570716-4:178991910
7540 4 177134824 177198722 ASB5 brain_frontal_cortex_ba9 -9.54e-01 0.000248 0 4:176570716-4:178991910
7556 4 176554085 176923815 GPM6A brain_cerebellum 3.68e-01 0.000170 0 4:176570716-4:178991910
7552 4 178351924 178363657 AGA brain_cerebellum -5.42e-01 0.000184 0 4:176570716-4:178991910
7543 4 176711458 176733340 RP11-806K15.1 brain_cortex -8.89e-01 0.000233 0 4:176570716-4:178991910
7558 4 178366133 178598280 RP11-130F10.1 brain_putamen_basal_ganglia -3.55e-01 0.000169 0 4:176570716-4:178991910
7570 4 178366133 178598280 RP11-130F10.1 thyroid 2.14e-02 0.000159 0 4:176570716-4:178991910
13262 4 178366133 178598280 RP11-130F10.1 psychencode -1.78e-02 0.000159 0 4:176570716-4:178991910
7541 4 177134824 177198722 ASB5 brain_cerebellar_hemisphere -9.13e-01 0.000239 0 4:176570716-4:178991910
7555 4 178351924 178363657 AGA brain_cerebellar_hemisphere -4.38e-01 0.000175 0 4:176570716-4:178991910
7531 4 178650792 178829090 RP11-162G9.1 brain_putamen_basal_ganglia 1.32e+00 0.000371 0 4:176570716-4:178991910
7538 4 178650792 178829090 RP11-162G9.1 brain_amygdala 9.99e-01 0.000258 0 4:176570716-4:178991910
7533 4 176986984 177103985 WDR17 cmc.brain.rnaseq_splicing 1.29e+00 0.000358 0 4:176570716-4:178991910
7546 4 178650792 178829090 RP11-162G9.1 brain_nucleus_accumbens_basal_ganglia 7.31e-01 0.000206 0 4:176570716-4:178991910
7550 4 176986984 177103985 WDR17 cmc.brain.rnaseq_splicing 5.85e-01 0.000188 0 4:176570716-4:178991910
7524 4 176711458 176733340 RP11-806K15.1 brain_frontal_cortex_ba9 -2.00e+00 0.001110 0 4:176570716-4:178991910
7557 4 178351924 178363657 AGA thyroid -3.48e-01 0.000169 0 4:176570716-4:178991910
7545 4 176986985 177103978 WDR17 brain_cerebellum 7.36e-01 0.000207 0 4:176570716-4:178991910
7569 4 176986985 177103978 WDR17 thyroid -1.64e-02 0.000159 0 4:176570716-4:178991910
7560 4 178351924 178363657 AGA brain_hypothalamus -3.14e-01 0.000167 0 4:176570716-4:178991910
12365 4 176986985 177103978 WDR17 psychencode -9.12e-01 0.000239 0 4:176570716-4:178991910
7561 4 178351924 178363657 AGA yfs.blood.rnaarr 2.73e-01 0.000167 0 4:176570716-4:178991910
12366 4 177105789 177116822 SPATA4 psychencode 1.02e+00 0.000264 0 4:176570716-4:178991910
7525 4 177134824 177198722 ASB5 brain_anterior_cingulate_cortex_ba24 -1.88e+00 0.000885 0 4:176570716-4:178991910
7566 4 176554087 176923842 GPM6A cmc.brain.rnaseq_splicing 1.37e-01 0.000161 0 4:176570716-4:178991910
11641 4 178351924 178363657 AGA psychencode -3.73e-01 0.000171 0 4:176570716-4:178991910
7542 4 177134824 177198722 ASB5 brain_cerebellum -9.06e-01 0.000237 0 4:176570716-4:178991910
7562 4 178351924 178363657 AGA brain_frontal_cortex_ba9 -2.76e-01 0.000166 0 4:176570716-4:178991910
7528 4 177134824 177198722 ASB5 brain_putamen_basal_ganglia -1.54e+00 0.000501 0 4:176570716-4:178991910
7563 4 178351924 178363657 AGA brain_caudate_basal_ganglia -2.72e-01 0.000166 0 4:176570716-4:178991910
7544 4 177241115 177253396 SPCS3 yfs.blood.rnaarr 8.02e-01 0.000218 0 4:176570716-4:178991910
7529 4 177134824 177198722 ASB5 brain_nucleus_accumbens_basal_ganglia -1.40e+00 0.000412 0 4:176570716-4:178991910
7539 4 177134824 177198722 ASB5 pituitary -9.62e-01 0.000249 0 4:176570716-4:178991910
7547 4 178650792 178829090 RP11-162G9.1 brain_hypothalamus 7.03e-01 0.000202 0 4:176570716-4:178991910
7530 4 177134824 177198722 ASB5 brain_caudate_basal_ganglia -1.34e+00 0.000379 0 4:176570716-4:178991910
7565 4 178351924 178363657 AGA adrenal_gland -1.37e-01 0.000161 0 4:176570716-4:178991910
7532 4 177134824 177198722 ASB5 brain_hypothalamus -1.30e+00 0.000360 0 4:176570716-4:178991910
7549 4 178650792 178829090 RP11-162G9.1 brain_caudate_basal_ganglia 6.13e-01 0.000191 0 4:176570716-4:178991910
7534 4 177134824 177198722 ASB5 brain_hippocampus -1.25e+00 0.000341 0 4:176570716-4:178991910
7535 4 177134824 177198722 ASB5 brain_substantia_nigra -1.23e+00 0.000333 0 4:176570716-4:178991910
12497 4 177134824 177198722 ASB5 psychencode -1.08e+00 0.000279 0 4:176570716-4:178991910
7536 4 177134824 177198722 ASB5 brain_amygdala -1.13e+00 0.000294 0 4:176570716-4:178991910
7567 4 178351924 178363657 AGA pituitary -5.67e-02 0.000160 0 4:176570716-4:178991910
7537 4 177134825 177190373 ASB5 cmc.brain.rnaseq -1.11e+00 0.000289 0 4:176570716-4:178991910
7523 4 176711458 176733340 RP11-806K15.1 brain_cerebellar_hemisphere -2.41e+00 0.002690 0 4:176570716-4:178991910
7568 4 178351924 178363657 AGA whole_blood -6.12e-02 0.000160 0 4:176570716-4:178991910
7590 5 49692026 49739082 EMB thyroid -7.31e-01 0.000209 0 5:50163883-5:52134410
12601 5 49692026 49739082 EMB psychencode 9.91e-01 0.000256 0 5:50163883-5:52134410
7592 5 50679167 50690564 ISL1 pituitary 5.87e-01 0.000188 0 5:50163883-5:52134410
7586 5 49692030 49737234 EMB cmc.brain.rnaseq -9.25e-01 0.000241 0 5:50163883-5:52134410
7575 5 52405672 52410956 CTD-2366F13.1 brain_hippocampus 1.86e+00 0.000853 0 5:50163883-5:52134410
7584 5 52391509 52405608 MOCS2 brain_anterior_cingulate_cortex_ba24 1.10e+00 0.000286 0 5:50163883-5:52134410
7580 5 52405672 52410956 CTD-2366F13.1 adrenal_gland 1.55e+00 0.000507 0 5:50163883-5:52134410
7589 5 52405672 52410956 CTD-2366F13.1 brain_hypothalamus -7.71e-01 0.000213 0 5:50163883-5:52134410
7598 5 52405672 52410956 CTD-2366F13.1 brain_substantia_nigra -2.15e-01 0.000162 0 5:50163883-5:52134410
13240 5 52405672 52410956 CTD-2366F13.1 psychencode -1.57e+00 0.000526 0 5:50163883-5:52134410
12498 5 52391509 52405893 MOCS2 psychencode -5.61e-01 0.000185 0 5:50163883-5:52134410
7599 5 51971027 52081426 CTD-2288O8.1 adrenal_gland -2.06e-01 0.000162 0 5:50163883-5:52134410
7582 5 52384846 52385298 CTD-2366F13.2 brain_putamen_basal_ganglia 1.35e+00 0.000386 0 5:50163883-5:52134410
13479 5 49958693 49959100 RP11-269M20.3 psychencode -5.44e-01 0.000183 0 5:50163883-5:52134410
7579 5 52391509 52405608 MOCS2 brain_cortex 1.59e+00 0.000544 0 5:50163883-5:52134410
7594 5 49961732 50142356 PARP8 cmc.brain.rnaseq 4.46e-01 0.000175 0 5:50163883-5:52134410
7577 5 52083730 52255040 ITGA1 adrenal_gland -1.66e+00 0.000606 0 5:50163883-5:52134410
7601 5 52393894 52405598 MOCS2 cmc.brain.rnaseq_splicing -1.89e-01 0.000161 0 5:50163883-5:52134410
7583 5 52384846 52385298 CTD-2366F13.2 brain_cortex -1.10e+00 0.000287 0 5:50163883-5:52134410
7600 5 49961732 50142356 PARP8 cmc.brain.rnaseq_splicing -1.72e-01 0.000161 0 5:50163883-5:52134410
7574 5 52391509 52405608 MOCS2 thyroid 1.94e+00 0.000982 0 5:50163883-5:52134410
7588 5 52083730 52255040 ITGA1 whole_blood 7.93e-01 0.000215 0 5:50163883-5:52134410
7602 5 52083764 52098954 PELO ntr.blood.rnaarr 3.60e-02 0.000159 0 5:50163883-5:52134410
7571 5 49961733 50142356 PARP8 adrenal_gland -2.01e+00 0.001160 0 5:50163883-5:52134410
7573 5 49961733 50142356 PARP8 thyroid 1.98e+00 0.001110 0 5:50163883-5:52134410
7581 5 52095719 52099880 PELO whole_blood 1.39e+00 0.000406 0 5:50163883-5:52134410
7585 5 49692026 49739082 EMB brain_hippocampus -1.08e+00 0.000280 0 5:50163883-5:52134410
7595 5 49961733 50142356 PARP8 brain_cerebellum 3.74e-01 0.000172 0 5:50163883-5:52134410
7591 5 52285155 52390609 ITGA2 cmc.brain.rnaseq -7.50e-01 0.000208 0 5:50163883-5:52134410
7576 5 52083773 52098452 PELO cmc.brain.rnaseq -1.69e+00 0.000637 0 5:50163883-5:52134410
12370 5 49961733 50142356 PARP8 psychencode 1.82e+00 0.000795 0 5:50163883-5:52134410
7572 5 50265051 50265884 CTD-2089N3.2 brain_caudate_basal_ganglia 2.02e+00 0.001150 0 5:50163883-5:52134410
7578 5 52391509 52405608 MOCS2 whole_blood 1.61e+00 0.000565 0 5:50163883-5:52134410
7593 5 52083730 52255040 ITGA1 thyroid 4.45e-01 0.000175 0 5:50163883-5:52134410
7596 5 52083773 52249485 ITGA1 cmc.brain.rnaseq 3.93e-01 0.000171 0 5:50163883-5:52134410
7587 5 52285156 52390609 ITGA2 thyroid 8.98e-01 0.000234 0 5:50163883-5:52134410
7597 5 52083774 52099880 PELO yfs.blood.rnaarr 3.67e-01 0.000169 0 5:50163883-5:52134410
12998 5 52083730 52255040 ITGA1 psychencode 3.09e-01 0.000166 0 5:50163883-5:52134410
12373 5 52083774 52099880 PELO psychencode 7.88e-01 0.000215 0 5:50163883-5:52134410
7724 5 68790040 69006341 GUSBP3 brain_cerebellar_hemisphere 7.07e-01 0.000217 0 5:67850860-5:71240289
7717 5 68790040 69006341 GUSBP3 brain_substantia_nigra -7.57e-01 0.000230 0 5:67850860-5:71240289
7713 5 68788119 68853931 OCLN thyroid -7.38e-01 0.000232 0 5:67850860-5:71240289
7681 5 68790040 69006341 GUSBP3 brain_cerebellum 1.27e+00 0.000362 0 5:67850860-5:71240289
7606 5 68788119 68853931 OCLN adrenal_gland 1.80e+00 0.000837 0 5:67850860-5:71240289
7746 5 68646811 68665632 TAF9 thyroid 4.41e-01 0.000188 0 5:67850860-5:71240289
7676 5 70264309 70407863 NAIP cmc.brain.rnaseq_splicing 1.29e+00 0.000379 0 5:67850860-5:71240289
7708 5 68576518 68628620 CCDC125 cmc.brain.rnaseq_splicing -8.49e-01 0.000241 0 5:67850860-5:71240289
7692 5 68790040 69006341 GUSBP3 brain_nucleus_accumbens_basal_ganglia 1.09e+00 0.000304 0 5:67850860-5:71240289
7754 5 68790040 69006341 GUSBP3 brain_frontal_cortex_ba9 -3.05e-01 0.000181 0 5:67850860-5:71240289
7617 5 70328995 70330227 RP11-195E2.4 brain_hypothalamus 1.66e+00 0.000637 0 5:67850860-5:71240289
7711 5 68646811 68665632 TAF9 whole_blood 8.20e-01 0.000239 0 5:67850860-5:71240289
7657 5 70196492 70214357 SERF1A brain_cerebellum 1.41e+00 0.000442 0 5:67850860-5:71240289
7670 5 70196492 70214357 SERF1A brain_substantia_nigra 1.38e+00 0.000424 0 5:67850860-5:71240289
7631 5 70370052 70389020 RP11-195E2.1 brain_anterior_cingulate_cortex_ba24 1.61e+00 0.000594 0 5:67850860-5:71240289
7633 5 70370052 70389020 RP11-195E2.1 brain_nucleus_accumbens_basal_ganglia 1.59e+00 0.000565 0 5:67850860-5:71240289
7755 5 68790040 69006341 GUSBP3 brain_hypothalamus 2.95e-01 0.000179 0 5:67850860-5:71240289
7674 5 70370052 70389020 RP11-195E2.1 brain_putamen_basal_ganglia 1.38e+00 0.000423 0 5:67850860-5:71240289
12899 5 68788119 68853931 OCLN psychencode -6.10e-01 0.000210 0 5:67850860-5:71240289
7619 5 70328995 70330227 RP11-195E2.4 adrenal_gland 1.66e+00 0.000636 0 5:67850860-5:71240289
7686 5 70370052 70389020 RP11-195E2.1 brain_hippocampus 1.17e+00 0.000332 0 5:67850860-5:71240289
7743 5 68790040 69006341 GUSBP3 brain_caudate_basal_ganglia 4.87e-01 0.000193 0 5:67850860-5:71240289
7628 5 70370052 70389020 RP11-195E2.1 brain_cortex 1.63e+00 0.000609 0 5:67850860-5:71240289
7772 5 69171098 69274436 RP11-98J23.2 brain_putamen_basal_ganglia -5.90e-03 0.000174 0 5:67850860-5:71240289
7658 5 70196492 70214357 SERF1A brain_putamen_basal_ganglia 1.40e+00 0.000439 0 5:67850860-5:71240289
7697 5 70264310 70320941 NAIP brain_amygdala 9.69e-01 0.000276 0 5:67850860-5:71240289
7737 5 68927790 68932312 RP11-848G14.5 thyroid 5.78e-01 0.000198 0 5:67850860-5:71240289
7659 5 70196492 70214357 SERF1A thyroid 1.40e+00 0.000437 0 5:67850860-5:71240289
7629 5 70370052 70389020 RP11-195E2.1 adrenal_gland 1.62e+00 0.000606 0 5:67850860-5:71240289
7671 5 70196492 70214357 SERF1A brain_caudate_basal_ganglia 1.38e+00 0.000424 0 5:67850860-5:71240289
7608 5 69321074 69338940 SERF1B brain_cerebellar_hemisphere 1.74e+00 0.000795 0 5:67850860-5:71240289
7630 5 70370052 70389020 RP11-195E2.1 brain_caudate_basal_ganglia 1.61e+00 0.000598 0 5:67850860-5:71240289
7687 5 70330784 70363479 GTF2H2 brain_cortex 1.17e+00 0.000323 0 5:67850860-5:71240289
7719 5 70330784 70363479 GTF2H2 brain_nucleus_accumbens_basal_ganglia -6.19e-01 0.000226 0 5:67850860-5:71240289
7689 5 68646811 68665632 TAF9 brain_hippocampus 1.09e+00 0.000309 0 5:67850860-5:71240289
12973 5 69321074 69338940 SERF1B psychencode -2.85e-01 0.000179 0 5:67850860-5:71240289
7660 5 70196492 70214357 SERF1A brain_cerebellar_hemisphere 1.40e+00 0.000437 0 5:67850860-5:71240289
7663 5 69321074 69338940 SERF1B brain_cerebellum 1.30e+00 0.000429 0 5:67850860-5:71240289
7688 5 68513587 68525956 MRPS36 thyroid -1.11e+00 0.000309 0 5:67850860-5:71240289
12318 5 70751442 70863649 BDP1 psychencode 1.67e+00 0.000637 0 5:67850860-5:71240289
7706 5 70370052 70389020 RP11-195E2.1 brain_amygdala 7.50e-01 0.000249 0 5:67850860-5:71240289
7622 5 68710939 68740157 MARVELD2 thyroid -1.61e+00 0.000634 0 5:67850860-5:71240289
7712 5 70370052 70389020 RP11-195E2.1 pituitary 6.47e-01 0.000237 0 5:67850860-5:71240289
7748 5 71656517 71658805 CTC-365E16.1 thyroid 4.48e-01 0.000187 0 5:67850860-5:71240289
13290 5 68790040 69006341 GUSBP3 psychencode -1.41e+00 0.000437 0 5:67850860-5:71240289
7767 5 70883114 70954530 MCCC2 cmc.brain.rnaseq_splicing 1.87e-01 0.000175 0 5:67850860-5:71240289
7762 5 68646811 68665632 TAF9 brain_cerebellar_hemisphere 2.32e-01 0.000175 0 5:67850860-5:71240289
7747 5 68485375 68506184 CENPH pituitary -4.54e-01 0.000188 0 5:67850860-5:71240289
7673 5 70196492 70214357 SERF1A brain_amygdala 1.38e+00 0.000424 0 5:67850860-5:71240289
7695 5 68576030 68628620 CCDC125 ntr.blood.rnaarr 1.02e+00 0.000284 0 5:67850860-5:71240289
12376 5 68665120 68710628 RAD17 psychencode -1.57e+00 0.000565 0 5:67850860-5:71240289
7639 5 70328995 70330227 RP11-195E2.4 brain_putamen_basal_ganglia 1.59e+00 0.000565 0 5:67850860-5:71240289
12202 5 68530668 68573250 CDK7 psychencode -4.19e-01 0.000188 0 5:67850860-5:71240289
7653 5 70196492 70214357 SERF1A adrenal_gland 1.42e+00 0.000452 0 5:67850860-5:71240289
7733 5 68576518 68628620 CCDC125 cmc.brain.rnaseq -6.21e-01 0.000207 0 5:67850860-5:71240289
7757 5 68927790 68932312 RP11-848G14.5 whole_blood -2.64e-01 0.000178 0 5:67850860-5:71240289
7765 5 68485375 68506184 CENPH adrenal_gland 1.87e-02 0.000175 0 5:67850860-5:71240289
7705 5 68576002 68628636 CCDC125 pituitary 8.75e-01 0.000250 0 5:67850860-5:71240289
7744 5 68790040 69006341 GUSBP3 brain_putamen_basal_ganglia 4.85e-01 0.000192 0 5:67850860-5:71240289
7605 5 70751441 70863649 BDP1 cmc.brain.rnaseq_splicing -1.98e+00 0.001100 0 5:67850860-5:71240289
7709 5 68576002 68628636 CCDC125 brain_cerebellum -8.11e-01 0.000241 0 5:67850860-5:71240289
7756 5 68773299 68798293 RP11-241G9.3 thyroid 2.59e-01 0.000178 0 5:67850860-5:71240289
7665 5 70196492 70214357 SERF1A brain_hippocampus 1.38e+00 0.000424 0 5:67850860-5:71240289
7678 5 69171098 69274436 RP11-98J23.2 pituitary -1.24e+00 0.000375 0 5:67850860-5:71240289
13261 5 70264310 70320941 NAIP psychencode -1.41e+00 0.000450 0 5:67850860-5:71240289
7745 5 68790040 69006341 GUSBP3 brain_anterior_cingulate_cortex_ba24 4.89e-01 0.000192 0 5:67850860-5:71240289
7685 5 68646811 68665632 TAF9 brain_cerebellum 1.18e+00 0.000338 0 5:67850860-5:71240289
7699 5 68513587 68525956 MRPS36 brain_amygdala -9.42e-01 0.000264 0 5:67850860-5:71240289
7682 5 68530668 68573250 CDK7 yfs.blood.rnaarr 1.24e+00 0.000361 0 5:67850860-5:71240289
7738 5 68647552 68665840 TAF9 cmc.brain.rnaseq_splicing -5.53e-01 0.000197 0 5:67850860-5:71240289
7680 5 68856035 68890550 GTF2H2C whole_blood 1.24e+00 0.000371 0 5:67850860-5:71240289
7632 5 68576002 68628636 CCDC125 brain_cerebellar_hemisphere -1.57e+00 0.000570 0 5:67850860-5:71240289
7725 5 70370052 70389020 RP11-195E2.1 brain_substantia_nigra 6.49e-01 0.000216 0 5:67850860-5:71240289
12201 5 68462837 68474072 CCNB1 psychencode 8.37e-01 0.000239 0 5:67850860-5:71240289
7625 5 70328995 70330227 RP11-195E2.4 thyroid 1.64e+00 0.000622 0 5:67850860-5:71240289
7763 5 68790040 69006341 GUSBP3 pituitary -1.08e-01 0.000175 0 5:67850860-5:71240289
12748 5 68856035 68890550 GTF2H2C psychencode -1.33e-01 0.000173 0 5:67850860-5:71240289
13263 5 68927790 68932312 RP11-848G14.5 psychencode -1.99e-01 0.000175 0 5:67850860-5:71240289
7740 5 68485375 68506184 CENPH brain_putamen_basal_ganglia -5.10e-01 0.000195 0 5:67850860-5:71240289
7702 5 70883115 70954531 MCCC2 thyroid 9.21e-01 0.000257 0 5:67850860-5:71240289
7642 5 68576002 68628636 CCDC125 adrenal_gland -1.55e+00 0.000551 0 5:67850860-5:71240289
12908 5 69171098 69274436 RP11-98J23.2 psychencode -1.40e+00 0.000442 0 5:67850860-5:71240289
12319 5 70330784 70363516 GTF2H2 psychencode -2.83e-01 0.000176 0 5:67850860-5:71240289
7698 5 68646811 68665632 TAF9 brain_cortex 9.47e-01 0.000265 0 5:67850860-5:71240289
7654 5 70196492 70214357 SERF1A brain_nucleus_accumbens_basal_ganglia 1.42e+00 0.000447 0 5:67850860-5:71240289
7773 5 67511548 67597649 PIK3R1 yfs.blood.rnaarr 2.10e-01 0.000173 0 5:67850860-5:71240289
7612 5 70264310 70320941 NAIP thyroid -1.77e+00 0.000731 0 5:67850860-5:71240289
12315 5 67511548 67597649 PIK3R1 psychencode 1.07e+00 0.000292 0 5:67850860-5:71240289
7760 5 67511583 67597649 PIK3R1 cmc.brain.rnaseq -2.82e-01 0.000176 0 5:67850860-5:71240289
7710 5 68530668 68573250 CDK7 whole_blood 8.25e-01 0.000239 0 5:67850860-5:71240289
7693 5 68128412 68257985 CTC-340D7.1 brain_anterior_cingulate_cortex_ba24 -1.08e+00 0.000297 0 5:67850860-5:71240289
7694 5 68609198 68609464 CFL1P5 whole_blood 1.03e+00 0.000292 0 5:67850860-5:71240289
7703 5 68646811 68665632 TAF9 pituitary 8.92e-01 0.000254 0 5:67850860-5:71240289
7651 5 70330950 70363497 GTF2H2 cmc.brain.rnaseq_splicing -1.45e+00 0.000467 0 5:67850860-5:71240289
7766 5 68485374 68506184 CENPH cmc.brain.rnaseq -2.60e-02 0.000175 0 5:67850860-5:71240289
12175 5 70883115 70954531 MCCC2 psychencode -1.48e+00 0.000483 0 5:67850860-5:71240289
7721 5 68530668 68573250 CDK7 brain_nucleus_accumbens_basal_ganglia -7.47e-01 0.000224 0 5:67850860-5:71240289
7718 5 68128412 68257985 CTC-340D7.1 brain_caudate_basal_ganglia -7.90e-01 0.000228 0 5:67850860-5:71240289
7771 5 70883114 70954530 MCCC2 cmc.brain.rnaseq -1.80e-01 0.000174 0 5:67850860-5:71240289
7750 5 68513587 68525956 MRPS36 yfs.blood.rnaarr -3.74e-01 0.000183 0 5:67850860-5:71240289
7749 5 68790040 69006341 GUSBP3 brain_hippocampus 4.27e-01 0.000186 0 5:67850860-5:71240289
7729 5 68790040 69006341 GUSBP3 thyroid 6.88e-01 0.000212 0 5:67850860-5:71240289
7726 5 68128412 68257985 CTC-340D7.1 brain_nucleus_accumbens_basal_ganglia 6.94e-01 0.000215 0 5:67850860-5:71240289
7666 5 70196492 70214357 SERF1A brain_hypothalamus 1.38e+00 0.000424 0 5:67850860-5:71240289
7640 5 70328995 70330227 RP11-195E2.4 pituitary 1.59e+00 0.000565 0 5:67850860-5:71240289
7742 5 68389473 68426896 SLC30A5 pituitary 5.34e-01 0.000194 0 5:67850860-5:71240289
7650 5 70883115 70954531 MCCC2 pituitary -1.47e+00 0.000474 0 5:67850860-5:71240289
7720 5 68576002 68628636 CCDC125 thyroid 7.40e-01 0.000224 0 5:67850860-5:71240289
13124 5 70370052 70389020 RP11-195E2.1 psychencode 7.87e-01 0.000262 0 5:67850860-5:71240289
11742 5 68646811 68665840 TAF9 psychencode 1.43e+00 0.000466 0 5:67850860-5:71240289
7707 5 68485375 68506184 CENPH brain_nucleus_accumbens_basal_ganglia -8.63e-01 0.000247 0 5:67850860-5:71240289
7758 5 68389473 68426896 SLC30A5 thyroid 2.98e-01 0.000177 0 5:67850860-5:71240289
7774 5 68128412 68257985 CTC-340D7.1 brain_frontal_cortex_ba9 -8.81e-02 0.000170 0 5:67850860-5:71240289
7648 5 70330784 70363479 GTF2H2 brain_caudate_basal_ganglia 1.50e+00 0.000501 0 5:67850860-5:71240289
7614 5 70370052 70389020 RP11-195E2.1 brain_cerebellum 1.71e+00 0.000686 0 5:67850860-5:71240289
7759 5 68513587 68525956 MRPS36 brain_cerebellum -2.13e-01 0.000177 0 5:67850860-5:71240289
7645 5 70370052 70389020 RP11-195E2.1 brain_frontal_cortex_ba9 1.54e+00 0.000530 0 5:67850860-5:71240289
7611 5 70398725 70424580 RP11-1280N14.3 brain_cortex 1.78e+00 0.000747 0 5:67850860-5:71240289
7727 5 70751441 70863649 BDP1 cmc.brain.rnaseq 7.05e-01 0.000215 0 5:67850860-5:71240289
7683 5 68788118 68853931 OCLN cmc.brain.rnaseq 1.19e+00 0.000343 0 5:67850860-5:71240289
7624 5 70370052 70389020 RP11-195E2.1 thyroid 1.64e+00 0.000623 0 5:67850860-5:71240289
7731 5 68513572 68525985 MRPS36 cmc.brain.rnaseq_splicing -6.28e-01 0.000209 0 5:67850860-5:71240289
7752 5 70398725 70424580 RP11-1280N14.3 brain_putamen_basal_ganglia -3.68e-01 0.000182 0 5:67850860-5:71240289
7728 5 68485375 68506184 CENPH brain_cerebellum -6.67e-01 0.000213 0 5:67850860-5:71240289
7609 5 70328995 70330227 RP11-195E2.4 brain_caudate_basal_ganglia 1.79e+00 0.000790 0 5:67850860-5:71240289
7641 5 70328995 70330227 RP11-195E2.4 brain_cerebellum 1.59e+00 0.000565 0 5:67850860-5:71240289
7646 5 70328995 70330227 RP11-195E2.4 brain_frontal_cortex_ba9 1.51e+00 0.000511 0 5:67850860-5:71240289
7696 5 70883115 70954531 MCCC2 brain_amygdala -1.03e+00 0.000281 0 5:67850860-5:71240289
12320 5 68389473 68426896 SLC30A5 psychencode -2.31e-01 0.000173 0 5:67850860-5:71240289
12200 5 68513587 68525956 MRPS36 psychencode -8.15e-02 0.000169 0 5:67850860-5:71240289
7730 5 68485375 68506184 CENPH brain_frontal_cortex_ba9 -6.71e-01 0.000211 0 5:67850860-5:71240289
7739 5 70751441 70863649 BDP1 cmc.brain.rnaseq_splicing -5.42e-01 0.000195 0 5:67850860-5:71240289
7736 5 68485375 68506184 CENPH brain_caudate_basal_ganglia -5.75e-01 0.000201 0 5:67850860-5:71240289
7770 5 68513587 68525956 MRPS36 brain_cerebellar_hemisphere -6.29e-02 0.000174 0 5:67850860-5:71240289
13492 5 71656517 71658805 CTC-365E16.1 psychencode 3.35e-01 0.000178 0 5:67850860-5:71240289
13259 5 68128412 68257985 CTC-340D7.1 psychencode -5.15e-01 0.000193 0 5:67850860-5:71240289
13288 5 70398725 70424580 RP11-1280N14.3 psychencode 4.29e-01 0.000189 0 5:67850860-5:71240289
7603 5 71014989 71016875 CARTPT cmc.brain.rnaseq_splicing -2.64e+00 0.004790 0 5:67850860-5:71240289
7672 5 70196492 70214357 SERF1A brain_anterior_cingulate_cortex_ba24 1.38e+00 0.000424 0 5:67850860-5:71240289
13260 5 68266266 68325992 7SK psychencode -6.95e-01 0.000214 0 5:67850860-5:71240289
7607 5 70435716 70585611 GUSBP9 adrenal_gland -1.81e+00 0.000822 0 5:67850860-5:71240289
7652 5 70328995 70330227 RP11-195E2.4 brain_amygdala 1.46e+00 0.000463 0 5:67850860-5:71240289
7661 5 70330784 70363479 GTF2H2 brain_frontal_cortex_ba9 1.39e+00 0.000434 0 5:67850860-5:71240289
7669 5 70330784 70363479 GTF2H2 thyroid 1.38e+00 0.000424 0 5:67850860-5:71240289
7656 5 70328995 70330227 RP11-195E2.4 brain_hippocampus 1.41e+00 0.000443 0 5:67850860-5:71240289
7675 5 70328995 70330227 RP11-195E2.4 brain_cortex 1.39e+00 0.000421 0 5:67850860-5:71240289
7684 5 70328995 70330227 RP11-195E2.4 brain_substantia_nigra 1.19e+00 0.000342 0 5:67850860-5:71240289
7734 5 68576002 68628636 CCDC125 whole_blood 6.18e-01 0.000207 0 5:67850860-5:71240289
13313 5 70328995 70330227 RP11-195E2.4 psychencode -8.21e-01 0.000233 0 5:67850860-5:71240289
7621 5 70330784 70363479 GTF2H2 adrenal_gland 1.66e+00 0.000635 0 5:67850860-5:71240289
7623 5 70330784 70363479 GTF2H2 brain_cerebellar_hemisphere 1.65e+00 0.000627 0 5:67850860-5:71240289
7634 5 70330784 70363479 GTF2H2 brain_anterior_cingulate_cortex_ba24 1.59e+00 0.000565 0 5:67850860-5:71240289
7635 5 70330784 70363479 GTF2H2 brain_hypothalamus 1.59e+00 0.000565 0 5:67850860-5:71240289
7691 5 70883115 70954531 MCCC2 brain_cerebellum -1.12e+00 0.000306 0 5:67850860-5:71240289
7644 5 71014990 71016875 CARTPT pituitary 1.52e+00 0.000536 0 5:67850860-5:71240289
7626 5 70435716 70585611 GUSBP9 thyroid -1.64e+00 0.000619 0 5:67850860-5:71240289
7732 5 68334345 68339648 CTC-498J12.1 brain_hippocampus -6.48e-01 0.000208 0 5:67850860-5:71240289
7636 5 70330784 70363479 GTF2H2 brain_cerebellum 1.59e+00 0.000565 0 5:67850860-5:71240289
7690 5 68530621 68573257 CDK7 cmc.brain.rnaseq_splicing -1.08e+00 0.000307 0 5:67850860-5:71240289
7637 5 70330784 70363479 GTF2H2 whole_blood 1.59e+00 0.000565 0 5:67850860-5:71240289
7649 5 71014990 71016875 CARTPT brain_cortex 1.51e+00 0.000498 0 5:67850860-5:71240289
13020 5 70435716 70585611 GUSBP9 psychencode 7.14e-01 0.000218 0 5:67850860-5:71240289
7615 5 70370052 70389020 RP11-195E2.1 brain_cerebellar_hemisphere 1.70e+00 0.000684 0 5:67850860-5:71240289
7647 5 70647682 70741886 RP11-136K7.2 thyroid -1.51e+00 0.000504 0 5:67850860-5:71240289
7715 5 69171098 69274436 RP11-98J23.2 thyroid -7.91e-01 0.000232 0 5:67850860-5:71240289
7735 5 68576518 68628620 CCDC125 cmc.brain.rnaseq_splicing 6.14e-01 0.000207 0 5:67850860-5:71240289
7613 5 70328995 70330227 RP11-195E2.4 brain_cerebellar_hemisphere 1.71e+00 0.000691 0 5:67850860-5:71240289
7616 5 70328995 70330227 RP11-195E2.4 whole_blood 1.66e+00 0.000640 0 5:67850860-5:71240289
7722 5 71014990 71016875 CARTPT thyroid 7.34e-01 0.000223 0 5:67850860-5:71240289
7638 5 70330784 70363479 GTF2H2 brain_putamen_basal_ganglia 1.59e+00 0.000565 0 5:67850860-5:71240289
7701 5 68389473 68426896 SLC30A5 yfs.blood.rnaarr 9.26e-01 0.000258 0 5:67850860-5:71240289
7620 5 70328995 70330227 RP11-195E2.4 brain_nucleus_accumbens_basal_ganglia 1.66e+00 0.000636 0 5:67850860-5:71240289
7768 5 68790040 69006341 GUSBP3 adrenal_gland -1.11e-01 0.000174 0 5:67850860-5:71240289
7716 5 68790040 69006341 GUSBP3 brain_cortex 7.80e-01 0.000231 0 5:67850860-5:71240289
7679 5 70883115 70954531 MCCC2 brain_cerebellar_hemisphere -1.27e+00 0.000371 0 5:67850860-5:71240289
7764 5 68790040 69006341 GUSBP3 whole_blood -1.60e-01 0.000175 0 5:67850860-5:71240289
7775 5 68389775 68426899 SLC30A5 cmc.brain.rnaseq -9.02e-02 0.000170 0 5:67850860-5:71240289
12505 5 71014990 71016875 CARTPT psychencode 2.38e+00 0.002560 0 5:67850860-5:71240289
7769 5 68530668 68573250 CDK7 thyroid -2.00e-01 0.000174 0 5:67850860-5:71240289
7610 5 71403061 71505395 MAP1B brain_putamen_basal_ganglia -1.74e+00 0.000766 0 5:67850860-5:71240289
7618 5 70370052 70389020 RP11-195E2.1 whole_blood 1.66e+00 0.000636 0 5:67850860-5:71240289
7662 5 70370052 70389020 RP11-195E2.1 brain_hypothalamus 1.39e+00 0.000431 0 5:67850860-5:71240289
7664 5 69171098 69274436 RP11-98J23.2 brain_cerebellar_hemisphere -1.27e+00 0.000426 0 5:67850860-5:71240289
12612 5 70220768 70249769 SMN1 psychencode -1.97e+00 0.001060 0 5:67850860-5:71240289
7643 5 71403061 71505395 MAP1B brain_cerebellar_hemisphere -1.54e+00 0.000541 0 5:67850860-5:71240289
13268 5 70647682 70742169 RP11-136K7.2 psychencode -3.35e-02 0.000169 0 5:67850860-5:71240289
7704 5 71403061 71505395 MAP1B brain_nucleus_accumbens_basal_ganglia -9.07e-01 0.000253 0 5:67850860-5:71240289
12174 5 71403061 71505395 MAP1B psychencode 3.06e+00 0.015500 0 5:67850860-5:71240289
7655 5 70196492 70214357 SERF1A brain_frontal_cortex_ba9 1.42e+00 0.000446 0 5:67850860-5:71240289
7627 5 70328995 70330227 RP11-195E2.4 brain_anterior_cingulate_cortex_ba24 1.63e+00 0.000610 0 5:67850860-5:71240289
7714 5 71515236 71616193 MRPS27 brain_anterior_cingulate_cortex_ba24 -7.79e-01 0.000232 0 5:67850860-5:71240289
7751 5 68647552 68665840 TAF9 cmc.brain.rnaseq 3.48e-01 0.000183 0 5:67850860-5:71240289
7667 5 70196492 70214357 SERF1A pituitary 1.38e+00 0.000424 0 5:67850860-5:71240289
7761 5 68485375 68506184 CENPH whole_blood 2.47e-01 0.000176 0 5:67850860-5:71240289
7753 5 68530621 68573257 CDK7 cmc.brain.rnaseq -3.27e-01 0.000182 0 5:67850860-5:71240289
7604 5 68788119 68853931 OCLN pituitary 2.23e+00 0.001920 0 5:67850860-5:71240289
7677 5 68665841 68710628 RAD17 thyroid -1.27e+00 0.000375 0 5:67850860-5:71240289
7668 5 70196492 70214357 SERF1A brain_cortex 1.38e+00 0.000424 0 5:67850860-5:71240289
12742 5 68576002 68628636 CCDC125 psychencode -1.03e+00 0.000286 0 5:67850860-5:71240289
7700 5 71656517 71658805 CTC-365E16.1 brain_cerebellum -9.01e-01 0.000260 0 5:67850860-5:71240289
7723 5 68609198 68609464 CFL1P5 thyroid 7.22e-01 0.000222 0 5:67850860-5:71240289
7741 5 68485375 68506184 CENPH thyroid -4.94e-01 0.000194 0 5:67850860-5:71240289
13229 5 77638189 77656331 CTD-2037K23.2 psychencode 4.28e-01 0.000177 0 5:75798866-5:77623214
7832 5 77296349 77590579 AP3B1 whole_blood -4.06e-01 0.000178 0 5:75798866-5:77623214
7822 5 77656338 77776562 SCAMP1 cmc.brain.rnaseq_splicing 6.57e-01 0.000209 0 5:75798866-5:77623214
7847 5 77638189 77656331 CTD-2037K23.2 thyroid -1.81e-01 0.000167 0 5:75798866-5:77623214
7800 5 76728068 76788332 WDR41 cmc.brain.rnaseq_splicing -1.14e+00 0.000310 0 5:75798866-5:77623214
7813 5 77337703 77339962 CTD-2179L22.1 thyroid 8.87e-01 0.000238 0 5:75798866-5:77623214
7829 5 77781038 78065844 LHFPL2 yfs.blood.rnaarr 5.50e-01 0.000189 0 5:75798866-5:77623214
7827 5 76248538 76276983 CRHBP thyroid 6.09e-01 0.000195 0 5:75798866-5:77623214
12501 5 76325076 76361059 AGGF1 psychencode 1.13e+00 0.000301 0 5:75798866-5:77623214
7808 5 76506274 76725632 PDE8B whole_blood 9.40e-01 0.000249 0 5:75798866-5:77623214
12502 5 76721795 76916436 WDR41 psychencode 1.32e+00 0.000374 0 5:75798866-5:77623214
7852 5 77656339 77776562 SCAMP1 brain_cortex 2.38e-02 0.000163 0 5:75798866-5:77623214
7815 5 77337703 77339962 CTD-2179L22.1 pituitary 8.57e-01 0.000232 0 5:75798866-5:77623214
7816 5 76506274 76725632 PDE8B brain_cerebellum 8.46e-01 0.000230 0 5:75798866-5:77623214
12188 5 77296349 77590579 AP3B1 psychencode 1.50e+00 0.000486 0 5:75798866-5:77623214
12071 5 75378997 75649764 SV2C psychencode -9.56e-01 0.000255 0 5:75798866-5:77623214
7778 5 77781052 77944648 LHFPL2 ntr.blood.rnaarr 2.17e+00 0.001590 0 5:75798866-5:77623214
7836 5 76506274 76725632 PDE8B thyroid 3.45e-01 0.000172 0 5:75798866-5:77623214
7781 5 76986991 77164604 TBCA yfs.blood.rnaarr -1.88e+00 0.000911 0 5:75798866-5:77623214
7837 5 76506274 76725632 PDE8B brain_cerebellar_hemisphere -3.30e-01 0.000172 0 5:75798866-5:77623214
7790 5 76986991 77164604 TBCA pituitary 1.63e+00 0.000594 0 5:75798866-5:77623214
7797 5 76986991 77164604 TBCA brain_cerebellar_hemisphere 1.25e+00 0.000371 0 5:75798866-5:77623214
11958 5 76506274 76725632 PDE8B psychencode 1.24e+00 0.000342 0 5:75798866-5:77623214
7803 5 76248538 76276983 CRHBP adrenal_gland 1.00e+00 0.000263 0 5:75798866-5:77623214
12500 5 76114758 76131140 F2RL1 psychencode -1.77e+00 0.000744 0 5:75798866-5:77623214
7824 5 77337703 77339962 CTD-2179L22.1 brain_cerebellum 7.09e-01 0.000207 0 5:75798866-5:77623214
7801 5 76367897 76375207 ZBED3 thyroid 1.14e+00 0.000306 0 5:75798866-5:77623214
7785 5 76114832 76131140 F2RL1 ntr.blood.rnaarr -1.71e+00 0.000681 0 5:75798866-5:77623214
7789 5 76506274 76725632 PDE8B brain_frontal_cortex_ba9 1.63e+00 0.000595 0 5:75798866-5:77623214
7841 5 75379304 75621416 SV2C cmc.brain.rnaseq 3.22e-01 0.000171 0 5:75798866-5:77623214
7805 5 76506535 76723243 PDE8B ntr.blood.rnaarr 9.74e-01 0.000257 0 5:75798866-5:77623214
7821 5 77298149 77590579 AP3B1 cmc.brain.rnaseq 7.29e-01 0.000210 0 5:75798866-5:77623214
7814 5 76506705 76724080 PDE8B cmc.brain.rnaseq 8.72e-01 0.000235 0 5:75798866-5:77623214
7817 5 77638189 77656331 CTD-2037K23.2 brain_cortex 8.03e-01 0.000228 0 5:75798866-5:77623214
13285 5 76586093 76587625 ALDH7A1P1 psychencode -8.77e-01 0.000237 0 5:75798866-5:77623214
7804 5 76986991 77164604 TBCA brain_cerebellum 9.80e-01 0.000257 0 5:75798866-5:77623214
7809 5 76721795 76916436 WDR41 pituitary -9.37e-01 0.000248 0 5:75798866-5:77623214
7812 5 76721795 76916436 WDR41 yfs.blood.rnaarr -8.96e-01 0.000240 0 5:75798866-5:77623214
7787 5 76114832 76131140 F2RL1 cmc.brain.rnaseq -1.64e+00 0.000601 0 5:75798866-5:77623214
7799 5 76728068 76788332 WDR41 cmc.brain.rnaseq 1.28e+00 0.000360 0 5:75798866-5:77623214
12189 5 76367897 76383148 ZBED3 psychencode 1.77e-01 0.000165 0 5:75798866-5:77623214
7777 5 77656339 77776562 SCAMP1 brain_caudate_basal_ganglia -2.43e+00 0.002810 0 5:75798866-5:77623214
7795 5 77781038 78065844 LHFPL2 pituitary -1.45e+00 0.000446 0 5:75798866-5:77623214
7819 5 76721795 76916436 WDR41 whole_blood 8.20e-01 0.000225 0 5:75798866-5:77623214
7823 5 76721795 76916436 WDR41 brain_cerebellar_hemisphere 7.14e-01 0.000209 0 5:75798866-5:77623214
7825 5 76721795 76916436 WDR41 brain_caudate_basal_ganglia -6.93e-01 0.000206 0 5:75798866-5:77623214
7830 5 76721795 76916436 WDR41 brain_cortex 5.29e-01 0.000186 0 5:75798866-5:77623214
12610 5 76986991 77164604 TBCA psychencode 6.36e-01 0.000201 0 5:75798866-5:77623214
7831 5 76721795 76916436 WDR41 brain_anterior_cingulate_cortex_ba24 -4.42e-01 0.000180 0 5:75798866-5:77623214
7792 5 76986994 77072185 TBCA cmc.brain.rnaseq 1.54e+00 0.000516 0 5:75798866-5:77623214
7838 5 77080705 77081827 ACTBP2 brain_hippocampus 3.41e-01 0.000172 0 5:75798866-5:77623214
7849 5 75699074 76003957 IQGAP2 whole_blood 1.40e-01 0.000164 0 5:75798866-5:77623214
7846 5 77656338 77776562 SCAMP1 cmc.brain.rnaseq -2.46e-01 0.000168 0 5:75798866-5:77623214
7820 5 75911307 75919259 F2RL2 thyroid -7.95e-01 0.000222 0 5:75798866-5:77623214
7780 5 77656339 77776562 SCAMP1 thyroid -2.09e+00 0.001340 0 5:75798866-5:77623214
7807 5 78073031 78282357 ARSB ntr.blood.rnaarr -9.53e-01 0.000251 0 5:75798866-5:77623214
7835 5 76721795 76916436 WDR41 brain_putamen_basal_ganglia 3.56e-01 0.000174 0 5:75798866-5:77623214
7776 5 77296349 77590579 AP3B1 thyroid -2.98e+00 0.011800 0 5:75798866-5:77623214
7828 5 75911307 75919259 F2RL2 ntr.blood.rnaarr 5.51e-01 0.000189 0 5:75798866-5:77623214
7783 5 76382565 76462734 ZBED3-AS1 thyroid 1.81e+00 0.000796 0 5:75798866-5:77623214
7842 5 76721795 76916436 WDR41 brain_nucleus_accumbens_basal_ganglia -3.08e-01 0.000171 0 5:75798866-5:77623214
7843 5 76721795 76916436 WDR41 brain_cerebellum 2.87e-01 0.000170 0 5:75798866-5:77623214
7782 5 77656339 77776562 SCAMP1 yfs.blood.rnaarr -1.85e+00 0.000847 0 5:75798866-5:77623214
7851 5 75911307 75919259 F2RL2 brain_cortex 5.05e-02 0.000163 0 5:75798866-5:77623214
13440 5 75627662 75629781 RP11-466P24.7 psychencode -1.79e-01 0.000165 0 5:75798866-5:77623214
7839 5 76011867 76031595 F2R cmc.brain.rnaseq -3.24e-01 0.000172 0 5:75798866-5:77623214
7802 5 76382565 76462734 ZBED3-AS1 brain_caudate_basal_ganglia 9.80e-01 0.000263 0 5:75798866-5:77623214
7798 5 76011868 76031606 F2R pituitary -1.22e+00 0.000368 0 5:75798866-5:77623214
12317 5 75699074 76003957 IQGAP2 psychencode -1.03e+00 0.000269 0 5:75798866-5:77623214
7833 5 76011868 76031606 F2R yfs.blood.rnaarr -4.30e-01 0.000178 0 5:75798866-5:77623214
7845 5 76011868 76031606 F2R adrenal_gland 2.36e-01 0.000168 0 5:75798866-5:77623214
13277 5 76382565 76462734 ZBED3-AS1 psychencode 2.00e+00 0.001130 0 5:75798866-5:77623214
7818 5 77656339 77776562 SCAMP1 whole_blood 8.05e-01 0.000228 0 5:75798866-5:77623214
7826 5 75699074 76003957 IQGAP2 yfs.blood.rnaarr 6.20e-01 0.000195 0 5:75798866-5:77623214
7848 5 76011868 76031606 F2R brain_putamen_basal_ganglia -5.05e-02 0.000164 0 5:75798866-5:77623214
7844 5 76721795 76916436 WDR41 adrenal_gland 2.83e-01 0.000169 0 5:75798866-5:77623214
7796 5 75911307 75919259 F2RL2 adrenal_gland -1.35e+00 0.000399 0 5:75798866-5:77623214
12707 5 76011868 76031606 F2R psychencode 7.98e-01 0.000222 0 5:75798866-5:77623214
7806 5 75911307 75919259 F2RL2 brain_frontal_cortex_ba9 -9.48e-01 0.000253 0 5:75798866-5:77623214
7779 5 76114758 76131140 F2RL1 brain_substantia_nigra -2.12e+00 0.001440 0 5:75798866-5:77623214
7850 5 78073036 78282357 ARSB cmc.brain.rnaseq 1.01e-01 0.000163 0 5:75798866-5:77623214
7811 5 75911307 75919259 F2RL2 brain_putamen_basal_ganglia 8.89e-01 0.000240 0 5:75798866-5:77623214
7784 5 76114758 76131140 F2RL1 whole_blood -1.72e+00 0.000688 0 5:75798866-5:77623214
7810 5 77296349 77590579 AP3B1 yfs.blood.rnaarr -9.24e-01 0.000246 0 5:75798866-5:77623214
7834 5 76721795 76916436 WDR41 thyroid 3.95e-01 0.000175 0 5:75798866-5:77623214
7786 5 76114758 76131140 F2RL1 brain_frontal_cortex_ba9 -1.69e+00 0.000659 0 5:75798866-5:77623214
7788 5 76114758 76131140 F2RL1 brain_cortex -1.64e+00 0.000601 0 5:75798866-5:77623214
7794 5 76114758 76131140 F2RL1 brain_putamen_basal_ganglia -1.45e+00 0.000456 0 5:75798866-5:77623214
7791 5 76114758 76131140 F2RL1 pituitary -1.62e+00 0.000581 0 5:75798866-5:77623214
7840 5 75699074 76003957 IQGAP2 thyroid 3.31e-01 0.000172 0 5:75798866-5:77623214
7793 5 76114758 76131140 F2RL1 brain_anterior_cingulate_cortex_ba24 -1.45e+00 0.000456 0 5:75798866-5:77623214
12316 5 78407602 78428108 BHMT psychencode -5.89e-01 0.000293 0 5:77624228-5:79393144
7897 5 78407602 78428108 BHMT brain_hypothalamus -1.19e+00 0.000531 0 5:77624228-5:79393144
7858 5 78407602 78428108 BHMT brain_caudate_basal_ganglia -3.42e+00 0.025400 1 5:77624228-5:79393144
7876 5 78293428 78365449 DMGDH cmc.brain.rnaseq -1.99e+00 0.001640 0 5:77624228-5:79393144
12506 5 78907943 78982471 PAPD4 psychencode 6.01e-01 0.000319 0 5:77624228-5:79393144
7911 5 78073036 78282357 ARSB cmc.brain.rnaseq 1.16e+00 0.000368 0 5:77624228-5:79393144
7924 5 78407603 78428113 BHMT cmc.brain.rnaseq -3.80e-02 0.000319 0 5:77624228-5:79393144
7857 5 78532012 78623038 JMY brain_cerebellum 3.41e+00 0.040600 1 5:77624228-5:79393144
7892 5 77781038 78065844 LHFPL2 thyroid 2.16e+00 0.000660 0 5:77624228-5:79393144
7934 5 77638189 77656331 CTD-2037K23.2 thyroid 6.65e-01 0.000294 0 5:77624228-5:79393144
7863 5 77656339 77776562 SCAMP1 yfs.blood.rnaarr -3.11e+00 0.004340 0 5:77624228-5:79393144
7907 5 77296349 77590579 AP3B1 thyroid -1.86e-01 0.000407 0 5:77624228-5:79393144
7853 5 77656338 77776562 SCAMP1 cmc.brain.rnaseq -4.38e+00 0.385000 1 5:77624228-5:79393144
7884 5 78908243 78982471 PAPD4 brain_cerebellum 1.39e+00 0.000811 0 5:77624228-5:79393144
13252 5 77940088 77940668 HMGB1P21 psychencode -8.89e-01 0.000393 0 5:77624228-5:79393144
7922 5 77296349 77590579 AP3B1 yfs.blood.rnaarr -1.30e+00 0.000325 0 5:77624228-5:79393144
7879 5 78293438 78531861 DMGDH brain_nucleus_accumbens_basal_ganglia -2.10e+00 0.001180 0 5:77624228-5:79393144
7877 5 78532012 78623038 JMY yfs.blood.rnaarr -2.11e+00 0.001350 0 5:77624228-5:79393144
7929 5 77781052 77944648 LHFPL2 ntr.blood.rnaarr 1.24e+00 0.000309 0 5:77624228-5:79393144
7871 5 78407602 78428108 BHMT brain_nucleus_accumbens_basal_ganglia -2.46e+00 0.002760 0 5:77624228-5:79393144
7943 5 77781038 78065844 LHFPL2 yfs.blood.rnaarr 1.40e-01 0.000244 0 5:77624228-5:79393144
7902 5 78407602 78428108 BHMT brain_frontal_cortex_ba9 -1.31e+00 0.000442 0 5:77624228-5:79393144
7854 5 77656338 77776562 SCAMP1 cmc.brain.rnaseq_splicing -4.30e+00 0.296000 1 5:77624228-5:79393144
7860 5 77656338 77776562 SCAMP1 cmc.brain.rnaseq_splicing 3.57e+00 0.021100 0 5:77624228-5:79393144
7891 5 77296349 77590579 AP3B1 whole_blood 1.32e+00 0.000672 0 5:77624228-5:79393144
7855 5 77656339 77776562 SCAMP1 brain_cortex -3.95e+00 0.074100 1 5:77624228-5:79393144
7875 5 78531924 78623038 JMY ntr.blood.rnaarr -2.28e+00 0.001820 0 5:77624228-5:79393144
7865 5 77656339 77776562 SCAMP1 whole_blood -3.07e+00 0.004100 0 5:77624228-5:79393144
7868 5 78293438 78531861 DMGDH thyroid -2.47e+00 0.003430 0 5:77624228-5:79393144
7867 5 78407602 78428108 BHMT adrenal_gland -2.60e+00 0.003630 0 5:77624228-5:79393144
7903 5 77781037 77944648 LHFPL2 cmc.brain.rnaseq_splicing 1.78e+00 0.000439 0 5:77624228-5:79393144
7904 5 77638189 77656331 CTD-2037K23.2 brain_cortex -1.16e+00 0.000430 0 5:77624228-5:79393144
7908 5 77638189 77656331 CTD-2037K23.2 whole_blood 7.63e-01 0.000399 0 5:77624228-5:79393144
7874 5 78293438 78531861 DMGDH brain_caudate_basal_ganglia -2.37e+00 0.002270 0 5:77624228-5:79393144
7890 5 78531924 78623038 JMY cmc.brain.rnaseq 1.73e+00 0.000755 0 5:77624228-5:79393144
7872 5 78407602 78428108 BHMT brain_anterior_cingulate_cortex_ba24 -2.42e+00 0.002730 0 5:77624228-5:79393144
7895 5 78073031 78282357 ARSB ntr.blood.rnaarr 2.84e-01 0.000609 0 5:77624228-5:79393144
7906 5 77638189 77656331 CTD-2037K23.2 brain_cerebellar_hemisphere -3.47e-01 0.000425 0 5:77624228-5:79393144
7887 5 78407602 78428108 BHMT pituitary -1.72e+00 0.000768 0 5:77624228-5:79393144
7862 5 78407602 78428108 BHMT thyroid -2.72e+00 0.005310 0 5:77624228-5:79393144
7938 5 79703832 79775169 ZFYVE16 adrenal_gland -5.27e-01 0.000256 0 5:77624228-5:79393144
7883 5 78985700 79096063 CMYA5 yfs.blood.rnaarr -1.08e+00 0.000852 0 5:77624228-5:79393144
12657 5 79275584 79287082 MTX3 psychencode 4.41e-01 0.000306 0 5:77624228-5:79393144
7859 5 78295935 78296947 CTD-2299I21.1 brain_nucleus_accumbens_basal_ganglia -2.96e+00 0.022800 1 5:77624228-5:79393144
12371 5 78532012 78623038 JMY psychencode -4.67e-01 0.000420 0 5:77624228-5:79393144
7932 5 78073032 78281910 ARSB brain_hippocampus -6.17e-01 0.000302 0 5:77624228-5:79393144
7866 5 78293438 78531861 DMGDH brain_cortex -2.65e+00 0.003730 0 5:77624228-5:79393144
11643 5 79703832 79775169 ZFYVE16 psychencode 3.58e-01 0.000241 0 5:77624228-5:79393144
7899 5 76986991 77164604 TBCA brain_cerebellar_hemisphere 8.61e-01 0.000499 0 5:77624228-5:79393144
7928 5 78985700 79096045 CMYA5 pituitary -9.61e-01 0.000311 0 5:77624228-5:79393144
7941 5 79287134 79379110 THBS4 whole_blood -3.06e-01 0.000252 0 5:77624228-5:79393144
7935 5 79407049 79551898 SERINC5 cmc.brain.rnaseq 6.07e-01 0.000269 0 5:77624228-5:79393144
7901 5 76986991 77164604 TBCA yfs.blood.rnaarr -1.24e+00 0.000460 0 5:77624228-5:79393144
7915 5 76986991 77164604 TBCA brain_cerebellum 2.25e-01 0.000347 0 5:77624228-5:79393144
11743 5 77656339 77776562 SCAMP1 psychencode -1.24e+00 0.000360 0 5:77624228-5:79393144
7926 5 78985700 79096045 CMYA5 brain_caudate_basal_ganglia 6.61e-01 0.000314 0 5:77624228-5:79393144
13230 5 77638189 77656331 CTD-2037K23.2 psychencode 1.44e+00 0.001080 0 5:77624228-5:79393144
7885 5 78532012 78623038 JMY brain_cerebellar_hemisphere 1.72e+00 0.000789 0 5:77624228-5:79393144
7878 5 77781038 78065844 LHFPL2 pituitary 2.56e+00 0.001210 0 5:77624228-5:79393144
7869 5 78908243 78982471 PAPD4 thyroid 2.20e+00 0.003070 0 5:77624228-5:79393144
7909 5 79783799 79838382 FAM151B cmc.brain.rnaseq_splicing -1.25e+00 0.000399 0 5:77624228-5:79393144
7944 5 79407049 79551898 SERINC5 cmc.brain.rnaseq_splicing 3.13e-01 0.000241 0 5:77624228-5:79393144
7882 5 79783883 79838382 FAM151B whole_blood -1.78e+00 0.000973 0 5:77624228-5:79393144
12843 5 79852574 79866307 ANKRD34B psychencode -1.14e+00 0.000483 0 5:77624228-5:79393144
7920 5 79315432 79315743 RP11-168A11.4 thyroid -8.42e-01 0.000326 0 5:77624228-5:79393144
7942 5 79287134 79379110 THBS4 adrenal_gland 2.09e-01 0.000245 0 5:77624228-5:79393144
7936 5 79407050 79551898 SERINC5 adrenal_gland -3.37e-01 0.000260 0 5:77624228-5:79393144
7931 5 79703832 79775169 ZFYVE16 whole_blood -4.34e-01 0.000302 0 5:77624228-5:79393144
7889 5 78365540 78385289 BHMT2 brain_frontal_cortex_ba9 -1.83e+00 0.000764 0 5:77624228-5:79393144
7946 5 79272538 79287088 MTX3 cmc.brain.rnaseq_splicing 2.52e-01 0.000239 0 5:77624228-5:79393144
7919 5 77656339 77776562 SCAMP1 thyroid -1.40e+00 0.000330 0 5:77624228-5:79393144
7881 5 77656339 77776562 SCAMP1 brain_caudate_basal_ganglia -2.51e+00 0.001020 0 5:77624228-5:79393144
7927 5 79703837 79775498 ZFYVE16 cmc.brain.rnaseq_splicing -4.62e-01 0.000311 0 5:77624228-5:79393144
7905 5 78668459 78810040 HOMER1 thyroid 3.18e-01 0.000428 0 5:77624228-5:79393144
7937 5 79275584 79287082 MTX3 thyroid -1.00e-02 0.000260 0 5:77624228-5:79393144
12372 5 78668459 78810040 HOMER1 psychencode -8.25e-01 0.000380 0 5:77624228-5:79393144
12504 5 78985700 79096063 CMYA5 psychencode -1.00e+00 0.000304 0 5:77624228-5:79393144
7912 5 78407602 78428108 BHMT brain_putamen_basal_ganglia -8.79e-01 0.000366 0 5:77624228-5:79393144
7886 5 78073032 78281910 ARSB brain_caudate_basal_ganglia 1.53e+00 0.000778 0 5:77624228-5:79393144
7894 5 78365540 78385289 BHMT2 adrenal_gland -1.53e+00 0.000616 0 5:77624228-5:79393144
7925 5 78985700 79096045 CMYA5 thyroid -8.27e-01 0.000318 0 5:77624228-5:79393144
7940 5 78073036 78282357 ARSB cmc.brain.rnaseq_splicing 3.24e-01 0.000253 0 5:77624228-5:79393144
7916 5 79331169 79379107 THBS4 cmc.brain.rnaseq 7.62e-01 0.000339 0 5:77624228-5:79393144
7914 5 78365540 78385289 BHMT2 pituitary -9.29e-01 0.000349 0 5:77624228-5:79393144
12186 5 78293438 78531861 DMGDH psychencode -2.62e+00 0.004540 0 5:77624228-5:79393144
7880 5 79703837 79775498 ZFYVE16 cmc.brain.rnaseq 1.88e+00 0.001090 0 5:77624228-5:79393144
7917 5 78407602 78428108 BHMT brain_cortex -1.05e+00 0.000335 0 5:77624228-5:79393144
7861 5 78407602 78428108 BHMT brain_amygdala -2.89e+00 0.007410 0 5:77624228-5:79393144
7930 5 78365540 78385289 BHMT2 brain_cerebellar_hemisphere 1.58e-04 0.000306 0 5:77624228-5:79393144
7923 5 78073032 78281910 ARSB thyroid 5.02e-01 0.000322 0 5:77624228-5:79393144
7896 5 78073032 78281910 ARSB whole_blood 3.83e-01 0.000557 0 5:77624228-5:79393144
7893 5 78907943 78982471 PAPD4 yfs.blood.rnaarr 1.49e+00 0.000659 0 5:77624228-5:79393144
7864 5 78365540 78385289 BHMT2 brain_substantia_nigra -2.51e+00 0.004250 0 5:77624228-5:79393144
7945 5 79703837 79775498 ZFYVE16 cmc.brain.rnaseq_splicing -2.72e-01 0.000240 0 5:77624228-5:79393144
7921 5 78073032 78281910 ARSB brain_cerebellar_hemisphere 1.30e+00 0.000325 0 5:77624228-5:79393144
7933 5 78073032 78281910 ARSB brain_anterior_cingulate_cortex_ba24 8.48e-01 0.000299 0 5:77624228-5:79393144
13255 5 79778112 79783882 CTD-2015H6.3 psychencode 3.63e-01 0.000242 0 5:77624228-5:79393144
7870 5 78407602 78428108 BHMT brain_hippocampus -2.52e+00 0.002900 0 5:77624228-5:79393144
12503 5 79407050 79551898 SERINC5 psychencode 1.84e+00 0.001610 0 5:77624228-5:79393144
7939 5 79275584 79287082 MTX3 yfs.blood.rnaarr -3.91e-02 0.000256 0 5:77624228-5:79393144
7873 5 78365540 78385289 BHMT2 thyroid -2.31e+00 0.002310 0 5:77624228-5:79393144
7888 5 78365546 78385897 BHMT2 cmc.brain.rnaseq -1.86e+00 0.000766 0 5:77624228-5:79393144
7856 5 78293438 78531861 DMGDH brain_putamen_basal_ganglia -3.43e+00 0.056400 1 5:77624228-5:79393144
12187 5 78365540 78385289 BHMT2 psychencode -1.65e+00 0.000655 0 5:77624228-5:79393144
11961 5 79287134 79379110 THBS4 psychencode -1.07e-01 0.000238 0 5:77624228-5:79393144
7900 5 78073032 78281910 ARSB brain_cerebellum 1.38e+00 0.000476 0 5:77624228-5:79393144
7918 5 78073032 78281910 ARSB brain_frontal_cortex_ba9 1.03e+00 0.000333 0 5:77624228-5:79393144
7913 5 78073032 78281910 ARSB brain_cortex 1.14e+00 0.000362 0 5:77624228-5:79393144
7898 5 79315432 79315743 RP11-168A11.4 pituitary -1.40e+00 0.000517 0 5:77624228-5:79393144
11960 5 78073032 78281910 ARSB psychencode 9.95e-01 0.000312 0 5:77624228-5:79393144
7910 5 78073036 78282357 ARSB cmc.brain.rnaseq_splicing -1.57e+00 0.000377 0 5:77624228-5:79393144
13250 5 87008952 87029086 CTD-2316B1.2 psychencode 1.41e+00 0.000330 0 5:87390031-5:88891530
7969 5 87491022 87564665 TMEM161B cmc.brain.rnaseq_splicing -1.56e+00 0.000728 0 5:87390031-5:88891530
7962 5 87564888 87732502 TMEM161B-AS1 adrenal_gland 5.35e+00 0.008360 0 5:87390031-5:88891530
12499 5 87485450 87565293 TMEM161B psychencode -3.31e+00 0.000370 0 5:87390031-5:88891530
7963 5 87564888 87732502 TMEM161B-AS1 whole_blood 5.42e+00 0.008200 0 5:87390031-5:88891530
7964 5 87564888 87732502 TMEM161B-AS1 brain_hippocampus 3.73e+00 0.005630 0 5:87390031-5:88891530
7971 5 87570075 87570193 RNA5SP187 pituitary 2.52e+00 0.000594 0 5:87390031-5:88891530
13241 5 87564712 87732502 TMEM161B-AS1 psychencode 4.46e+00 0.003040 0 5:87390031-5:88891530
7982 5 87704799 87734907 CTC-498M16.2 brain_cortex 1.44e+00 0.000334 0 5:87390031-5:88891530
7974 5 87491022 87564665 TMEM161B cmc.brain.rnaseq_splicing 5.22e+00 0.000519 0 5:87390031-5:88891530
7948 5 87564888 87732502 TMEM161B-AS1 brain_anterior_cingulate_cortex_ba24 6.28e+00 0.136000 1 5:87390031-5:88891530
13264 5 87704799 87734907 CTC-498M16.2 psychencode -3.05e+00 0.000312 0 5:87390031-5:88891530
7950 5 87564888 87732502 TMEM161B-AS1 brain_frontal_cortex_ba9 6.42e+00 0.126000 1 5:87390031-5:88891530
7961 5 87564888 87732502 TMEM161B-AS1 brain_cerebellar_hemisphere 5.78e+00 0.025000 0 5:87390031-5:88891530
7966 5 87729709 87794514 CTC-498M16.4 brain_substantia_nigra 5.45e+00 0.004490 0 5:87390031-5:88891530
7981 5 87491022 87564665 TMEM161B cmc.brain.rnaseq_splicing 1.23e+00 0.000348 0 5:87390031-5:88891530
7951 5 87564888 87732502 TMEM161B-AS1 brain_amygdala 5.93e+00 0.117000 1 5:87390031-5:88891530
7952 5 87564888 87732502 TMEM161B-AS1 brain_cerebellum 5.83e+00 0.088000 1 5:87390031-5:88891530
7953 5 87564888 87732502 TMEM161B-AS1 brain_caudate_basal_ganglia 6.13e+00 0.082400 1 5:87390031-5:88891530
7954 5 87564888 87732502 TMEM161B-AS1 pituitary 5.77e+00 0.070200 1 5:87390031-5:88891530
7955 5 87564888 87732502 TMEM161B-AS1 brain_putamen_basal_ganglia 6.12e+00 0.059300 1 5:87390031-5:88891530
7987 5 87729709 87794514 CTC-498M16.4 brain_cortex 2.23e+00 0.000279 0 5:87390031-5:88891530
7956 5 87564888 87732502 TMEM161B-AS1 brain_hypothalamus 5.61e+00 0.057200 1 5:87390031-5:88891530
7965 5 87485450 87565284 TMEM161B brain_cerebellar_hemisphere -3.57e+00 0.004840 0 5:87390031-5:88891530
7947 5 87988462 87989789 CTC-467M3.3 brain_frontal_cortex_ba9 -7.07e+00 0.839000 1 5:87390031-5:88891530
7972 5 87729709 87794514 CTC-498M16.4 brain_cerebellum 1.34e+00 0.000573 0 5:87390031-5:88891530
7957 5 87564888 87732502 TMEM161B-AS1 brain_nucleus_accumbens_basal_ganglia 5.85e+00 0.056900 1 5:87390031-5:88891530
7973 5 87729709 87794514 CTC-498M16.4 brain_cerebellar_hemisphere 2.30e+00 0.000558 0 5:87390031-5:88891530
7949 5 87988462 87989789 CTC-467M3.3 brain_cerebellar_hemisphere -5.74e+00 0.135000 1 5:87390031-5:88891530
7979 5 87729709 87794514 CTC-498M16.4 brain_anterior_cingulate_cortex_ba24 3.37e+00 0.000356 0 5:87390031-5:88891530
7978 5 87729709 87794514 CTC-498M16.4 brain_nucleus_accumbens_basal_ganglia 2.06e+00 0.000373 0 5:87390031-5:88891530
7977 5 87491022 87564665 TMEM161B cmc.brain.rnaseq_splicing -5.75e-01 0.000396 0 5:87390031-5:88891530
7958 5 87564888 87732502 TMEM161B-AS1 brain_substantia_nigra 5.79e+00 0.049800 0 5:87390031-5:88891530
7985 5 87729709 87794514 CTC-498M16.4 brain_putamen_basal_ganglia 2.04e+00 0.000282 0 5:87390031-5:88891530
13485 5 87729709 87794514 CTC-498M16.4 psychencode 3.00e+00 0.000293 0 5:87390031-5:88891530
7984 5 87729709 87794514 CTC-498M16.4 brain_hippocampus 6.94e-01 0.000287 0 5:87390031-5:88891530
7967 5 87988462 87989789 CTC-467M3.3 brain_cortex -6.36e+00 0.004320 0 5:87390031-5:88891530
7980 5 87988462 87989789 CTC-467M3.3 brain_anterior_cingulate_cortex_ba24 -5.76e+00 0.000351 0 5:87390031-5:88891530
13267 5 87988462 87989789 CTC-467M3.3 psychencode -5.91e+00 0.021700 0 5:87390031-5:88891530
7968 5 88013975 88199922 MEF2C yfs.blood.rnaarr -2.09e+00 0.000996 0 5:87390031-5:88891530
7959 5 87564888 87732502 TMEM161B-AS1 brain_cortex 5.93e+00 0.048200 0 5:87390031-5:88891530
7976 5 87729709 87794514 CTC-498M16.4 brain_caudate_basal_ganglia 3.64e+00 0.000400 0 5:87390031-5:88891530
7983 5 87729709 87794514 CTC-498M16.4 brain_frontal_cortex_ba9 3.29e+00 0.000291 0 5:87390031-5:88891530
7988 5 88185142 88762215 MEF2C-AS1 thyroid 1.26e+00 0.000255 0 5:87390031-5:88891530
7960 5 87564888 87732502 TMEM161B-AS1 thyroid 5.82e+00 0.035900 0 5:87390031-5:88891530
7975 5 87729709 87794514 CTC-498M16.4 brain_amygdala 4.45e+00 0.000420 0 5:87390031-5:88891530
7986 5 87729709 87794514 CTC-498M16.4 brain_hypothalamus 1.93e+00 0.000281 0 5:87390031-5:88891530
7970 5 87803363 87986858 LINC00461 brain_hypothalamus 4.62e+00 0.000662 0 5:87390031-5:88891530
13228 5 87803363 87986858 LINC00461 psychencode -1.02e-01 0.000596 0 5:87390031-5:88891530
8002 5 94161666 94162399 CTC-484P3.1 brain_cerebellar_hemisphere -3.77e-01 0.000178 0 5:91840637-5:93808409
12781 5 93488671 93954309 KIAA0825 psychencode -2.21e+00 0.002010 0 5:91840637-5:93808409
8000 5 93903166 93904614 MTND5P12 brain_cerebellar_hemisphere 6.27e-01 0.000202 0 5:91840637-5:93808409
13144 5 93928473 93930496 CTC-303L1.1 psychencode -9.01e-01 0.000283 0 5:91840637-5:93808409
7990 5 93954052 94075141 ANKRD32 brain_putamen_basal_ganglia -1.81e+00 0.000765 0 5:91840637-5:93808409
8001 5 93954052 94075141 ANKRD32 brain_amygdala -4.32e-01 0.000194 0 5:91840637-5:93808409
7994 5 93954390 94031573 ANKRD32 cmc.brain.rnaseq -7.43e-01 0.000475 0 5:91840637-5:93808409
13186 5 92745065 92921354 NR2F1-AS1 psychencode 3.21e+00 0.022600 0 5:91840637-5:93808409
7989 5 92953430 93447404 FAM172A cmc.brain.rnaseq_splicing 2.49e+00 0.003080 0 5:91840637-5:93808409
12644 5 94039446 94620279 MCTP1 psychencode -1.24e+00 0.000333 0 5:91840637-5:93808409
11964 5 92953775 93447404 FAM172A psychencode 1.49e+00 0.000466 0 5:91840637-5:93808409
7998 5 94042288 94620279 MCTP1 cmc.brain.rnaseq 3.87e-01 0.000210 0 5:91840637-5:93808409
13247 5 93070508 93077343 POU5F2 psychencode 3.43e+00 0.045600 0 5:91840637-5:93808409
13507 5 93077346 93079206 RP11-185E12.2 psychencode 3.86e-01 0.000305 0 5:91840637-5:93808409
13280 5 93196375 93199531 RP11-549J18.1 psychencode 2.17e+00 0.001520 0 5:91840637-5:93808409
8003 5 94042288 94620279 MCTP1 cmc.brain.rnaseq_splicing -7.69e-02 0.000176 0 5:91840637-5:93808409
7991 5 94161666 94162399 CTC-484P3.1 brain_nucleus_accumbens_basal_ganglia 1.72e+00 0.000661 0 5:91840637-5:93808409
7992 5 94161666 94162399 CTC-484P3.1 brain_putamen_basal_ganglia -1.56e+00 0.000532 0 5:91840637-5:93808409
7999 5 93486555 93954309 KIAA0825 cmc.brain.rnaseq_splicing 6.67e-01 0.000210 0 5:91840637-5:93808409
7995 5 93488671 93918288 KIAA0825 brain_cerebellum 1.03e+00 0.000286 0 5:91840637-5:93808409
7993 5 94161666 94162399 CTC-484P3.1 brain_amygdala 1.52e+00 0.000485 0 5:91840637-5:93808409
7997 5 93488671 93918288 KIAA0825 whole_blood 9.60e-01 0.000257 0 5:91840637-5:93808409
7996 5 94161666 94162399 CTC-484P3.1 brain_cerebellum -9.36e-01 0.000266 0 5:91840637-5:93808409
8004 5 102884555 102898517 NUDT12 ntr.blood.rnaarr -2.21e+00 0.001680 0 5:103320005-5:104851305
8007 5 102884555 102898490 NUDT12 cmc.brain.rnaseq 9.34e-01 0.000239 0 5:103320005-5:104851305
8005 5 102884556 102898494 NUDT12 brain_anterior_cingulate_cortex_ba24 1.23e+00 0.000327 0 5:103320005-5:104851305
8006 5 102884556 102898494 NUDT12 brain_nucleus_accumbens_basal_ganglia 9.34e-01 0.000239 0 5:103320005-5:104851305
8010 5 107194740 107717111 FBXL17 ntr.blood.rnaarr -6.92e-01 0.000222 0 5:105893055-5:107264079
12769 5 106712590 107006596 EFNA5 psychencode -3.86e-02 0.000167 0 5:105893055-5:107264079
8009 5 107194733 107717799 FBXL17 cmc.brain.rnaseq -2.14e+00 0.001380 0 5:105893055-5:107264079
8008 5 107194736 107717799 FBXL17 whole_blood 3.60e+00 0.080700 0 5:105893055-5:107264079
12321 5 107194736 107717799 FBXL17 psychencode -1.92e+00 0.000890 0 5:105893055-5:107264079
12508 5 125877533 125931110 ALDH7A1 psychencode -1.85e+00 0.000836 0 5:123798100-5:125785452
8011 5 123972608 124084500 ZNF608 adrenal_gland -2.43e+00 0.002830 0 5:123798100-5:125785452
8012 5 126112315 126172712 LMNB1 thyroid 2.40e+00 0.002620 0 5:123798100-5:125785452
8018 5 125877533 125931110 ALDH7A1 whole_blood -8.99e-01 0.000234 0 5:123798100-5:125785452
8017 5 126112315 126172712 LMNB1 pituitary 9.59e-01 0.000247 0 5:123798100-5:125785452
8025 5 123972608 124084500 ZNF608 brain_nucleus_accumbens_basal_ganglia 1.47e-02 0.000158 0 5:123798100-5:125785452
12586 5 123972608 124084500 ZNF608 psychencode -1.31e+00 0.000363 0 5:123798100-5:125785452
8024 5 126112315 126172712 LMNB1 yfs.blood.rnaarr 3.31e-02 0.000158 0 5:123798100-5:125785452
8014 5 125695787 125829853 GRAMD3 cmc.brain.rnaseq_splicing 1.62e+00 0.000570 0 5:123798100-5:125785452
8019 5 125695787 125829853 GRAMD3 cmc.brain.rnaseq_splicing 8.03e-01 0.000216 0 5:123798100-5:125785452
8022 5 126203406 126366500 MARCH3 yfs.blood.rnaarr -3.14e-01 0.000166 0 5:123798100-5:125785452
8013 5 125695824 125832186 GRAMD3 thyroid -1.84e+00 0.000816 0 5:123798100-5:125785452
12391 5 125695824 125832186 GRAMD3 psychencode 3.18e-01 0.000166 0 5:123798100-5:125785452
8016 5 125769197 125826063 RP11-517I3.1 pituitary -1.17e+00 0.000308 0 5:123798100-5:125785452
13273 5 125769197 125826063 RP11-517I3.1 psychencode 1.76e+00 0.000718 0 5:123798100-5:125785452
8020 5 125877533 125931110 ALDH7A1 brain_cerebellum -7.66e-01 0.000210 0 5:123798100-5:125785452
8021 5 125877533 125931110 ALDH7A1 pituitary -3.74e-01 0.000170 0 5:123798100-5:125785452
8015 5 125877533 125931110 ALDH7A1 yfs.blood.rnaarr -1.57e+00 0.000525 0 5:123798100-5:125785452
8023 5 125877533 125931110 ALDH7A1 brain_cortex 1.36e-01 0.000160 0 5:123798100-5:125785452
8043 5 140261793 140264247 PCDHA13 brain_amygdala 4.46e+00 0.014000 1 5:139265072-5:140645971
8262 5 140073076 140078889 HARS2 thyroid -1.53e+00 0.000374 0 5:139265072-5:140645971
8041 5 140079919 140086248 ZMAT2 brain_substantia_nigra -4.51e+00 0.014900 1 5:139265072-5:140645971
8172 5 140213969 140216338 PCDHA7 pituitary -3.11e+00 0.000753 0 5:139265072-5:140645971
8037 5 140174444 140185206 PCDHA2 pituitary 4.53e+00 0.016200 1 5:139265072-5:140645971
8051 5 140557371 140560081 PCDHB8 brain_cerebellar_hemisphere -1.47e+00 0.010900 1 5:139265072-5:140645971
8284 5 140079919 140086248 ZMAT2 pituitary -1.52e+00 0.000326 0 5:139265072-5:140645971
8215 5 140474227 140476962 PCDHB2 brain_caudate_basal_ganglia 1.82e+00 0.000526 0 5:139265072-5:140645971
8049 5 140557371 140560081 PCDHB8 brain_frontal_cortex_ba9 -1.37e+00 0.011900 1 5:139265072-5:140645971
8067 5 140053710 140071609 HARS thyroid 4.03e+00 0.004840 1 5:139265072-5:140645971
8225 5 140078265 140086248 ZMAT2 yfs.blood.rnaarr -3.12e+00 0.000484 0 5:139265072-5:140645971
8234 5 140079919 140086248 ZMAT2 brain_nucleus_accumbens_basal_ganglia -7.36e-01 0.000443 0 5:139265072-5:140645971
8028 5 140180783 140183257 PCDHA3 brain_cerebellar_hemisphere 4.78e+00 0.051700 1 5:139265072-5:140645971
8048 5 140557371 140560081 PCDHB8 thyroid -1.25e+00 0.011900 1 5:139265072-5:140645971
8052 5 140557371 140560081 PCDHB8 brain_putamen_basal_ganglia -1.03e+00 0.009470 1 5:139265072-5:140645971
8302 5 141016517 141018588 RELL2 whole_blood 9.95e-01 0.000287 0 5:139265072-5:140645971
8064 5 140174444 140185206 PCDHA2 brain_cerebellum 4.01e+00 0.005230 1 5:139265072-5:140645971
8060 5 140261793 140264247 PCDHA13 brain_cerebellum 3.59e+00 0.006410 1 5:139265072-5:140645971
8070 5 140261793 140264247 PCDHA13 brain_frontal_cortex_ba9 3.68e+00 0.004730 1 5:139265072-5:140645971
13195 5 140261793 140391929 PCDHA13 psychencode 3.81e+00 0.006120 1 5:139265072-5:140645971
11947 5 140474227 140476962 PCDHB2 psychencode 2.55e+00 0.001810 1 5:139265072-5:140645971
8072 5 140557371 140560081 PCDHB8 brain_nucleus_accumbens_basal_ganglia -9.05e-01 0.004650 1 5:139265072-5:140645971
8071 5 140261793 140264247 PCDHA13 brain_cerebellar_hemisphere 3.77e+00 0.004670 1 5:139265072-5:140645971
8082 5 140557371 140560081 PCDHB8 brain_hypothalamus -8.46e-01 0.003660 1 5:139265072-5:140645971
8093 5 140560980 140565793 PCDHB16 brain_cerebellum 3.17e-01 0.002590 1 5:139265072-5:140645971
8196 5 140787770 140790187 PCDHGB6 thyroid 9.21e-01 0.000610 0 5:139265072-5:140645971
8297 5 140079919 140086248 ZMAT2 whole_blood 2.14e+00 0.000304 0 5:139265072-5:140645971
8092 5 140261793 140264247 PCDHA13 brain_hippocampus 3.52e+00 0.002730 1 5:139265072-5:140645971
8112 5 140560980 140565793 PCDHB16 brain_frontal_cortex_ba9 2.35e-01 0.001690 1 5:139265072-5:140645971
8118 5 140079919 140086248 ZMAT2 adrenal_gland -3.61e+00 0.001480 0 5:139265072-5:140645971
8133 5 140079919 140086248 ZMAT2 thyroid -3.71e+00 0.001180 0 5:139265072-5:140645971
13293 5 140787770 140892546 PCDHGB6 psychencode -1.54e+00 0.000766 0 5:139265072-5:140645971
8040 5 140201222 140203811 PCDHA5 thyroid -4.47e+00 0.015000 1 5:139265072-5:140645971
8083 5 140557371 140560081 PCDHB8 brain_hippocampus -7.98e-01 0.003480 1 5:139265072-5:140645971
8195 5 140552243 140555957 PCDHB7 brain_substantia_nigra -7.62e-02 0.000610 0 5:139265072-5:140645971
8185 5 140602931 140605858 PCDHB14 brain_cerebellar_hemisphere -1.28e-01 0.000653 0 5:139265072-5:140645971
8062 5 140560980 140565793 PCDHB16 brain_cerebellar_hemisphere 8.93e-01 0.005660 1 5:139265072-5:140645971
8101 5 140079919 140086248 ZMAT2 brain_anterior_cingulate_cortex_ba24 -3.75e+00 0.002150 1 5:139265072-5:140645971
8102 5 140557371 140560081 PCDHB8 brain_cortex -1.26e+00 0.002140 1 5:139265072-5:140645971
8180 5 140560979 140565796 PCDHB16 cmc.brain.rnaseq -1.51e+00 0.000692 0 5:139265072-5:140645971
8095 5 140480340 140483406 PCDHB3 brain_anterior_cingulate_cortex_ba24 1.46e+00 0.002520 1 5:139265072-5:140645971
8227 5 140602931 140605858 PCDHB14 brain_cerebellum -1.37e+00 0.000474 0 5:139265072-5:140645971
13299 5 140792743 140892546 PCDHGA10 psychencode -8.49e-02 0.000394 0 5:139265072-5:140645971
8168 5 140207563 140210070 PCDHA6 brain_cortex -3.23e-01 0.000780 0 5:139265072-5:140645971
8079 5 140560980 140565793 PCDHB16 thyroid 7.52e-01 0.003940 1 5:139265072-5:140645971
8065 5 140792743 140795178 PCDHGA10 brain_nucleus_accumbens_basal_ganglia -4.12e+00 0.005110 1 5:139265072-5:140645971
8108 5 140480340 140483406 PCDHB3 thyroid 5.94e-01 0.001840 1 5:139265072-5:140645971
12963 5 140213969 140391929 PCDHA7 psychencode -4.66e+00 0.031800 1 5:139265072-5:140645971
11957 5 140552243 140555957 PCDHB7 psychencode 4.20e-01 0.001610 1 5:139265072-5:140645971
8074 5 140571942 140575215 PCDHB10 thyroid 9.99e-01 0.004440 1 5:139265072-5:140645971
8242 5 140797427 140799841 PCDHGB7 pituitary 2.98e-01 0.000423 0 5:139265072-5:140645971
8269 5 140782520 140784943 PCDHGA9 pituitary 1.18e+00 0.000347 0 5:139265072-5:140645971
11735 5 140207563 140391929 PCDHA6 psychencode 1.72e+00 0.000358 0 5:139265072-5:140645971
8086 5 140619688 140624312 PCDHB19P cmc.brain.rnaseq 6.33e-01 0.003000 1 5:139265072-5:140645971
8175 5 140552243 140555957 PCDHB7 brain_cortex -7.44e-02 0.000713 0 5:139265072-5:140645971
8105 5 140571942 140575215 PCDHB10 brain_cerebellum 6.21e-01 0.002010 1 5:139265072-5:140645971
8298 5 140079919 140086248 ZMAT2 brain_hippocampus -1.76e+00 0.000303 0 5:139265072-5:140645971
8160 5 140894587 140998622 DIAPH1 cmc.brain.rnaseq_splicing -3.28e-01 0.000851 0 5:139265072-5:140645971
8139 5 140566893 140571111 PCDHB9 thyroid 3.79e-01 0.001140 0 5:139265072-5:140645971
8123 5 140557370 140560081 PCDHB8 cmc.brain.rnaseq -1.51e+00 0.001320 0 5:139265072-5:140645971
8035 5 140557371 140560081 PCDHB8 brain_caudate_basal_ganglia -1.46e+00 0.018400 1 5:139265072-5:140645971
8273 5 140894587 140998622 DIAPH1 cmc.brain.rnaseq_splicing -9.80e-01 0.000342 0 5:139265072-5:140645971
8278 5 141000443 141016437 HDAC3 yfs.blood.rnaarr -3.96e-01 0.000333 0 5:139265072-5:140645971
8301 5 141000443 141016437 HDAC3 brain_hippocampus -2.98e-01 0.000297 0 5:139265072-5:140645971
8256 5 141018869 141030986 FCHSD1 whole_blood 1.01e+00 0.000384 0 5:139265072-5:140645971
8203 5 140625146 140627801 PCDHB15 cmc.brain.rnaseq -5.50e-01 0.000585 0 5:139265072-5:140645971
11959 5 140625147 140627799 PCDHB15 psychencode -5.88e-01 0.000784 0 5:139265072-5:140645971
8299 5 140753651 140756074 PCDHGA6 brain_cerebellum -5.27e-01 0.000299 0 5:139265072-5:140645971
12966 5 140174444 140391929 PCDHA2 psychencode -4.05e+00 0.003480 1 5:139265072-5:140645971
8100 5 140213969 140216338 PCDHA7 brain_hippocampus -3.10e+00 0.002230 1 5:139265072-5:140645971
13489 5 140705777 140708924 AC005618.6 psychencode 3.18e+00 0.004600 1 5:139265072-5:140645971
8224 5 140235595 140238021 PCDHA10 brain_cortex -3.16e+00 0.000495 0 5:139265072-5:140645971
8152 5 141016516 141020631 RELL2 cmc.brain.rnaseq_splicing -5.71e-02 0.000903 0 5:139265072-5:140645971
8117 5 140480340 140483406 PCDHB3 brain_frontal_cortex_ba9 8.22e-01 0.001520 1 5:139265072-5:140645971
12057 5 140602931 140605858 PCDHB14 psychencode -1.08e-01 0.000358 0 5:139265072-5:140645971
8271 5 140710251 140892548 PCDHGA1 cmc.brain.rnaseq -1.49e+00 0.000345 0 5:139265072-5:140645971
13296 5 140762467 140892546 PCDHGA7 psychencode 1.44e+00 0.000542 0 5:139265072-5:140645971
13426 5 140619518 140621864 PCDHB19P psychencode -7.15e-01 0.000379 0 5:139265072-5:140645971
8055 5 140261853 140391929 PCDHA13 cmc.brain.rnaseq_splicing 3.95e+00 0.007230 1 5:139265072-5:140645971
8084 5 140261853 140391929 PCDHA13 cmc.brain.rnaseq 3.55e+00 0.003310 1 5:139265072-5:140645971
8075 5 140080031 140086239 ZMAT2 cmc.brain.rnaseq -3.98e+00 0.004290 1 5:139265072-5:140645971
8277 5 140235633 140391929 PCDHA10 cmc.brain.rnaseq -2.19e+00 0.000333 0 5:139265072-5:140645971
8233 5 140254930 140391929 PCDHA12 cmc.brain.rnaseq -2.18e+00 0.000444 0 5:139265072-5:140645971
8265 5 140474227 140476962 PCDHB2 brain_hippocampus 8.58e-02 0.000367 0 5:139265072-5:140645971
8220 5 141032968 141061788 ARAP3 yfs.blood.rnaarr 2.15e-01 0.000511 0 5:139265072-5:140645971
8110 5 140261793 140264247 PCDHA13 brain_anterior_cingulate_cortex_ba24 3.31e+00 0.001800 1 5:139265072-5:140645971
8187 5 140474227 140476962 PCDHB2 brain_nucleus_accumbens_basal_ganglia 1.83e+00 0.000649 0 5:139265072-5:140645971
8134 5 140868808 140871267 PCDHGC5 adrenal_gland -6.87e-01 0.001180 0 5:139265072-5:140645971
8145 5 140174444 140185206 PCDHA2 brain_frontal_cortex_ba9 -3.66e+00 0.001030 0 5:139265072-5:140645971
8109 5 140053710 140071609 HARS brain_cerebellar_hemisphere 2.93e+00 0.001810 1 5:139265072-5:140645971
8209 5 140613938 140617101 PCDHB18 thyroid -1.37e+00 0.000546 0 5:139265072-5:140645971
8080 5 140474227 140476962 PCDHB2 thyroid 3.28e+00 0.003940 1 5:139265072-5:140645971
11734 5 140501581 140505201 PCDHB4 psychencode 1.65e+00 0.000338 0 5:139265072-5:140645971
8046 5 140165876 140168446 PCDHA1 pituitary 4.47e+00 0.012900 1 5:139265072-5:140645971
11736 5 140718539 140892546 PCDHGA2 psychencode 3.68e+00 0.004730 1 5:139265072-5:140645971
8127 5 140165876 140168446 PCDHA1 brain_cerebellar_hemisphere 3.60e+00 0.001270 0 5:139265072-5:140645971
8103 5 140723601 140726024 PCDHGA3 brain_cortex -2.43e+00 0.002050 1 5:139265072-5:140645971
8089 5 140566893 140571111 PCDHB9 brain_cerebellar_hemisphere 6.60e-01 0.002830 1 5:139265072-5:140645971
8128 5 140044261 140053709 WDR55 yfs.blood.rnaarr -3.76e+00 0.001270 0 5:139265072-5:140645971
8236 5 140235595 140238021 PCDHA10 brain_cerebellum -2.91e+00 0.000439 0 5:139265072-5:140645971
8107 5 140557371 140560081 PCDHB8 pituitary -1.16e+00 0.001880 1 5:139265072-5:140645971
12666 5 140566893 140571111 PCDHB9 psychencode 5.24e-02 0.000538 0 5:139265072-5:140645971
8171 5 140019012 140024869 TMCO6 brain_caudate_basal_ganglia -3.45e+00 0.000754 0 5:139265072-5:140645971
8136 5 140044261 140052757 WDR55 brain_cerebellar_hemisphere -3.65e+00 0.001160 0 5:139265072-5:140645971
8047 5 141016517 141018588 RELL2 thyroid 1.26e+00 0.012000 1 5:139265072-5:140645971
8295 5 141032968 141061788 ARAP3 whole_blood 1.54e-01 0.000307 0 5:139265072-5:140645971
12172 5 140018325 140027370 NDUFA2 psychencode 4.10e+00 0.003280 1 5:139265072-5:140645971
8059 5 140186659 140189169 PCDHA4 brain_hippocampus -4.04e+00 0.006440 1 5:139265072-5:140645971
13289 5 140255058 140391929 PCDHA12 psychencode 1.08e+00 0.000305 0 5:139265072-5:140645971
8201 5 140019012 140024869 TMCO6 whole_blood -3.24e+00 0.000590 0 5:139265072-5:140645971
8148 5 140026643 140042063 IK whole_blood -3.63e+00 0.000998 0 5:139265072-5:140645971
8147 5 140220906 140391929 PCDHA8 cmc.brain.rnaseq -3.64e+00 0.001010 0 5:139265072-5:140645971
13497 5 140479829 140481794 AC005754.7 psychencode -1.99e+00 0.002100 1 5:139265072-5:140645971
13311 5 140723601 140892546 PCDHGA3 psychencode 4.72e+00 0.079000 1 5:139265072-5:140645971
8281 5 140044261 140052757 WDR55 whole_blood -2.49e+00 0.000329 0 5:139265072-5:140645971
8029 5 140019012 140024869 TMCO6 pituitary -4.61e+00 0.026600 1 5:139265072-5:140645971
8310 5 140729827 140892548 PCDHGB1 cmc.brain.rnaseq -1.84e-01 0.000252 0 5:139265072-5:140645971
8255 5 139944041 139948688 SLC35A4 yfs.blood.rnaarr -2.01e-02 0.000387 0 5:139265072-5:140645971
8132 5 140213969 140216338 PCDHA7 brain_cortex -3.64e+00 0.001200 0 5:139265072-5:140645971
8104 5 140227048 140233744 PCDHA9 pituitary -1.97e+00 0.002030 1 5:139265072-5:140645971
8288 5 140729828 140732236 PCDHGB1 adrenal_gland 4.14e-01 0.000320 0 5:139265072-5:140645971
8253 5 140613938 140617101 PCDHB18 brain_cerebellum -1.05e+00 0.000389 0 5:139265072-5:140645971
8206 5 140019012 140024869 TMCO6 thyroid -3.23e+00 0.000570 0 5:139265072-5:140645971
8026 5 140024947 140027370 NDUFA2 cmc.brain.rnaseq 5.16e+00 0.346000 1 5:139265072-5:140645971
13310 5 140729828 140892546 PCDHGB1 psychencode 1.02e+00 0.000344 0 5:139265072-5:140645971
11951 5 139937853 139973337 APBB3 psychencode -1.03e+00 0.000449 0 5:139265072-5:140645971
8114 5 140227048 140233744 PCDHA9 brain_nucleus_accumbens_basal_ganglia 3.38e+00 0.001610 1 5:139265072-5:140645971
8178 5 140026643 140042063 IK brain_amygdala -3.21e+00 0.000698 0 5:139265072-5:140645971
8176 5 140018325 140027354 NDUFA2 whole_blood 2.72e+00 0.000711 0 5:139265072-5:140645971
8027 5 140220907 140223351 PCDHA8 brain_cerebellar_hemisphere -4.96e+00 0.106000 1 5:139265072-5:140645971
8282 5 139944275 139948688 SLC35A4 whole_blood 1.03e+00 0.000329 0 5:139265072-5:140645971
8285 5 139944275 139948688 SLC35A4 adrenal_gland -7.45e-01 0.000324 0 5:139265072-5:140645971
8186 5 139961089 139961920 HAUS1P1 brain_cerebellum -1.28e+00 0.000650 0 5:139265072-5:140645971
8106 5 140864741 140867182 PCDHGC4 brain_amygdala 1.83e-01 0.001910 1 5:139265072-5:140645971
8250 5 140044261 140052757 WDR55 brain_cortex -2.25e+00 0.000401 0 5:139265072-5:140645971
8251 5 139961089 139961920 HAUS1P1 brain_cerebellar_hemisphere -1.90e+00 0.000397 0 5:139265072-5:140645971
8241 5 140011312 140013286 CD14 cmc.brain.rnaseq 2.96e-01 0.000423 0 5:139265072-5:140645971
8254 5 140613938 140617101 PCDHB18 brain_cerebellar_hemisphere -9.57e-01 0.000389 0 5:139265072-5:140645971
13336 5 140535577 140538639 PCDHB17 psychencode 1.99e+00 0.002100 1 5:139265072-5:140645971
13429 5 140734768 140892546 PCDHGA4 psychencode 2.82e-01 0.000591 0 5:139265072-5:140645971
8137 5 140227048 140233744 PCDHA9 brain_cortex 3.24e+00 0.001150 0 5:139265072-5:140645971
8157 5 140261793 140264247 PCDHA13 thyroid 2.85e+00 0.000859 0 5:139265072-5:140645971
8111 5 140571942 140575215 PCDHB10 brain_cerebellar_hemisphere 4.65e-01 0.001700 1 5:139265072-5:140645971
8200 5 140044261 140052757 WDR55 brain_cerebellum -3.21e+00 0.000596 0 5:139265072-5:140645971
12325 5 140613938 140617101 PCDHB18 psychencode 4.61e-01 0.001980 1 5:139265072-5:140645971
8115 5 140474227 140476962 PCDHB2 brain_anterior_cingulate_cortex_ba24 3.06e+00 0.001580 1 5:139265072-5:140645971
12327 5 140078265 140086248 ZMAT2 psychencode -3.58e+00 0.000882 0 5:139265072-5:140645971
8274 5 139917175 139937853 SRA1 brain_putamen_basal_ganglia 2.42e+00 0.000339 0 5:139265072-5:140645971
8056 5 140739702 140892548 PCDHGB2 cmc.brain.rnaseq -9.27e-01 0.006760 1 5:139265072-5:140645971
8119 5 140535579 140537990 PCDHB17 cmc.brain.rnaseq 1.54e+00 0.001480 0 5:139265072-5:140645971
8054 5 140026643 140042063 IK brain_cerebellum -4.30e+00 0.008470 1 5:139265072-5:140645971
13306 5 140797427 140892546 PCDHGB7 psychencode 1.36e+00 0.000686 0 5:139265072-5:140645971
12054 5 140044261 140053709 WDR55 psychencode -6.22e-01 0.000343 0 5:139265072-5:140645971
8197 5 140227048 140233744 PCDHA9 brain_frontal_cortex_ba9 1.98e+00 0.000608 0 5:139265072-5:140645971
12878 5 140560980 140565793 PCDHB16 psychencode -5.50e-01 0.000324 0 5:139265072-5:140645971
8246 5 140227048 140233744 PCDHA9 brain_anterior_cingulate_cortex_ba24 2.06e+00 0.000415 0 5:139265072-5:140645971
8146 5 140019012 140024993 TMCO6 yfs.blood.rnaarr -3.61e+00 0.001010 0 5:139265072-5:140645971
8088 5 140474236 140476964 PCDHB2 cmc.brain.rnaseq 2.79e+00 0.002960 1 5:139265072-5:140645971
8179 5 140767452 140769848 PCDHGB4 pituitary 3.93e-01 0.000695 0 5:139265072-5:140645971
8312 5 138745891 138775214 DNAJC18 cmc.brain.rnaseq_splicing -5.55e-01 0.000239 0 5:139265072-5:140645971
8230 5 140552242 140555957 PCDHB7 cmc.brain.rnaseq -3.40e-01 0.000458 0 5:139265072-5:140645971
8191 5 140261793 140264247 PCDHA13 brain_nucleus_accumbens_basal_ganglia 2.67e+00 0.000622 0 5:139265072-5:140645971
8038 5 140220907 140223351 PCDHA8 brain_frontal_cortex_ba9 -4.45e+00 0.015900 1 5:139265072-5:140645971
8098 5 140235595 140238021 PCDHA10 brain_cerebellar_hemisphere -3.96e+00 0.002320 1 5:139265072-5:140645971
8249 5 140792743 140795178 PCDHGA10 pituitary 1.38e+00 0.000401 0 5:139265072-5:140645971
8140 5 140165876 140168446 PCDHA1 brain_cortex 2.19e+00 0.001120 0 5:139265072-5:140645971
8228 5 140782520 140784943 PCDHGA9 brain_cerebellum 1.39e+00 0.000469 0 5:139265072-5:140645971
8229 5 140044261 140052757 WDR55 brain_caudate_basal_ganglia -2.35e+00 0.000463 0 5:139265072-5:140645971
8129 5 139781493 139929154 ANKHD1-EIF4EBP3 yfs.blood.rnaarr 1.36e+00 0.001250 0 5:139265072-5:140645971
8044 5 140480340 140483406 PCDHB3 brain_nucleus_accumbens_basal_ganglia 1.01e+00 0.013600 1 5:139265072-5:140645971
8205 5 139026884 139063467 CXXC5 yfs.blood.rnaarr -1.75e+00 0.000571 0 5:139265072-5:140645971
8247 5 140227048 140233744 PCDHA9 brain_cerebellar_hemisphere 2.54e+00 0.000413 0 5:139265072-5:140645971
8199 5 140019012 140024869 TMCO6 brain_hippocampus -2.07e+00 0.000599 0 5:139265072-5:140645971
8069 5 140261793 140264247 PCDHA13 brain_cortex 3.68e+00 0.004740 1 5:139265072-5:140645971
8305 5 140474227 140476962 PCDHB2 pituitary 3.85e-01 0.000284 0 5:139265072-5:140645971
8165 5 140248689 140251079 PCDHA11 brain_nucleus_accumbens_basal_ganglia 2.24e+00 0.000820 0 5:139265072-5:140645971
8198 5 140514799 140517704 PCDHB5 cmc.brain.rnaseq 3.85e-01 0.000602 0 5:139265072-5:140645971
13254 5 140240341 140243224 AC005609.1 psychencode 1.94e+00 0.000359 0 5:139265072-5:140645971
8300 5 141016517 141020644 RELL2 yfs.blood.rnaarr 8.71e-01 0.000297 0 5:139265072-5:140645971
8131 5 140053489 140071312 HARS cmc.brain.rnaseq_splicing 5.49e-01 0.001200 0 5:139265072-5:140645971
8260 5 140186671 140391929 PCDHA4 cmc.brain.rnaseq -1.40e+00 0.000381 0 5:139265072-5:140645971
12962 5 140220907 140391929 PCDHA8 psychencode -4.36e+00 0.008030 1 5:139265072-5:140645971
8267 5 140514800 140517703 PCDHB5 brain_cerebellum 8.39e-01 0.000353 0 5:139265072-5:140645971
8193 5 140248689 140251079 PCDHA11 brain_caudate_basal_ganglia 1.28e+00 0.000617 0 5:139265072-5:140645971
8143 5 140480340 140483406 PCDHB3 pituitary 3.09e+00 0.001080 0 5:139265072-5:140645971
8257 5 140227048 140233744 PCDHA9 brain_cerebellum 1.71e+00 0.000384 0 5:139265072-5:140645971
8290 5 140248689 140251079 PCDHA11 brain_cerebellar_hemisphere 9.74e-01 0.000319 0 5:139265072-5:140645971
8268 5 140011313 140013286 CD14 yfs.blood.rnaarr 1.32e+00 0.000352 0 5:139265072-5:140645971
8090 5 140480233 140483406 PCDHB3 cmc.brain.rnaseq 3.12e+00 0.002780 1 5:139265072-5:140645971
8135 5 140235595 140238021 PCDHA10 brain_substantia_nigra -3.11e+00 0.001180 0 5:139265072-5:140645971
8226 5 140498262 140500347 AC005754.8 brain_nucleus_accumbens_basal_ganglia 1.84e+00 0.000480 0 5:139265072-5:140645971
8121 5 140474227 140476962 PCDHB2 brain_cortex 2.50e+00 0.001410 0 5:139265072-5:140645971
13302 5 140739703 140892546 PCDHGB2 psychencode -1.52e+00 0.000634 0 5:139265072-5:140645971
8173 5 140480340 140483406 PCDHB3 brain_amygdala 8.07e-01 0.000745 0 5:139265072-5:140645971
8252 5 139554227 139661637 CYSTM1 brain_caudate_basal_ganglia 2.32e+00 0.000394 0 5:139265072-5:140645971
13301 5 140800762 140891835 PCDHGA11 psychencode 6.96e-01 0.000412 0 5:139265072-5:140645971
8183 5 140480340 140483406 PCDHB3 brain_cortex 1.50e+00 0.000678 0 5:139265072-5:140645971
8243 5 140235595 140238021 PCDHA10 brain_nucleus_accumbens_basal_ganglia -2.43e+00 0.000422 0 5:139265072-5:140645971
8126 5 139929651 139937678 SRA1 cmc.brain.rnaseq_splicing -3.69e+00 0.001270 0 5:139265072-5:140645971
8155 5 140571942 140575215 PCDHB10 brain_cortex -2.12e-01 0.000866 0 5:139265072-5:140645971
8231 5 140027383 140042065 IK cmc.brain.rnaseq -2.92e+00 0.000445 0 5:139265072-5:140645971
8057 5 140306301 140391929 PCDHAC1 cmc.brain.rnaseq -3.91e+00 0.006710 1 5:139265072-5:140645971
8237 5 140165876 140168446 PCDHA1 brain_cerebellum 2.54e+00 0.000436 0 5:139265072-5:140645971
8259 5 140261793 140264247 PCDHA13 brain_putamen_basal_ganglia 1.66e+00 0.000383 0 5:139265072-5:140645971
8291 5 139554227 139661637 CYSTM1 thyroid 5.81e-01 0.000313 0 5:139265072-5:140645971
8287 5 140011313 140013286 CD14 whole_blood -8.11e-01 0.000320 0 5:139265072-5:140645971
8167 5 140044383 140050553 WDR55 cmc.brain.rnaseq -1.63e+00 0.000799 0 5:139265072-5:140645971
8138 5 140474227 140476962 PCDHB2 brain_cerebellar_hemisphere 2.25e+00 0.001140 0 5:139265072-5:140645971
12961 5 140227048 140391929 PCDHA9 psychencode 4.84e-03 0.000265 0 5:139265072-5:140645971
8156 5 140026643 140042064 IK yfs.blood.rnaarr -2.35e+00 0.000861 0 5:139265072-5:140645971
8068 5 140213969 140216338 PCDHA7 brain_anterior_cingulate_cortex_ba24 -3.85e+00 0.004760 1 5:139265072-5:140645971
8308 5 140207649 140391929 PCDHA6 cmc.brain.rnaseq 3.57e-01 0.000267 0 5:139265072-5:140645971
8296 5 140227356 140391929 PCDHA9 cmc.brain.rnaseq 4.53e-01 0.000306 0 5:139265072-5:140645971
8061 5 140213968 140391929 PCDHA7 cmc.brain.rnaseq -4.29e+00 0.006260 1 5:139265072-5:140645971
8309 5 139579748 139582772 CTB-131B5.2 brain_cerebellum -2.15e-01 0.000258 0 5:139265072-5:140645971
8286 5 140743898 140746318 PCDHGA5 brain_hippocampus -1.63e+00 0.000323 0 5:139265072-5:140645971
8289 5 139927251 139929163 EIF4EBP3 brain_cortex -1.17e+00 0.000319 0 5:139265072-5:140645971
8164 5 140079919 140086248 ZMAT2 brain_caudate_basal_ganglia -3.05e+00 0.000823 0 5:139265072-5:140645971
8307 5 138855119 138862520 TMEM173 yfs.blood.rnaarr -6.38e-01 0.000270 0 5:139265072-5:140645971
8163 5 139929177 139938016 SRA1 ntr.blood.rnaarr -3.45e+00 0.000832 0 5:139265072-5:140645971
8094 5 140180783 140183257 PCDHA3 brain_cerebellum 4.00e+00 0.002530 1 5:139265072-5:140645971
8033 5 140235595 140238021 PCDHA10 brain_caudate_basal_ganglia -4.58e+00 0.020200 1 5:139265072-5:140645971
8162 5 140026643 140042063 IK thyroid -2.28e+00 0.000840 0 5:139265072-5:140645971
8141 5 140235595 140238021 PCDHA10 brain_amygdala -3.68e+00 0.001100 0 5:139265072-5:140645971
13295 5 140743898 140892546 PCDHGA5 psychencode 3.49e+00 0.002430 1 5:139265072-5:140645971
8063 5 140235595 140238021 PCDHA10 brain_hypothalamus -4.23e+00 0.005470 1 5:139265072-5:140645971
8076 5 140566892 140571111 PCDHB9 cmc.brain.rnaseq 6.95e-01 0.004210 1 5:139265072-5:140645971
8087 5 140560980 140565793 PCDHB16 pituitary 8.77e-01 0.002970 1 5:139265072-5:140645971
8275 5 140501580 140505201 PCDHB4 cmc.brain.rnaseq 6.69e-01 0.000336 0 5:139265072-5:140645971
8091 5 140552243 140555957 PCDHB7 brain_anterior_cingulate_cortex_ba24 -3.50e+00 0.002780 1 5:139265072-5:140645971
8303 5 139026884 139063467 CXXC5 whole_blood -4.02e-01 0.000286 0 5:139265072-5:140645971
8190 5 139917175 139937853 SRA1 brain_substantia_nigra 3.23e+00 0.000627 0 5:139265072-5:140645971
8194 5 140235595 140238021 PCDHA10 brain_putamen_basal_ganglia -3.34e+00 0.000612 0 5:139265072-5:140645971
8150 5 140053710 140071609 HARS brain_cerebellum 3.62e+00 0.000934 0 5:139265072-5:140645971
8212 5 139028300 139062680 CXXC5 cmc.brain.rnaseq_splicing 1.14e+00 0.000540 0 5:139265072-5:140645971
8218 5 140255058 140257424 PCDHA12 brain_substantia_nigra -4.86e-01 0.000518 0 5:139265072-5:140645971
8058 5 140213969 140216338 PCDHA7 thyroid -4.14e+00 0.006530 1 5:139265072-5:140645971
8279 5 139028300 139062680 CXXC5 cmc.brain.rnaseq_splicing 4.96e-01 0.000330 0 5:139265072-5:140645971
8258 5 139554227 139661637 CYSTM1 brain_cortex 2.33e+00 0.000383 0 5:139265072-5:140645971
11952 5 140019012 140024993 TMCO6 psychencode -3.66e+00 0.001110 0 5:139265072-5:140645971
8239 5 140480340 140483406 PCDHB3 brain_putamen_basal_ganglia -5.20e-01 0.000430 0 5:139265072-5:140645971
12964 5 140201222 140391929 PCDHA5 psychencode -2.21e+00 0.001440 0 5:139265072-5:140645971
8248 5 140044261 140052757 WDR55 thyroid -2.96e+00 0.000411 0 5:139265072-5:140645971
8207 5 140019012 140024869 TMCO6 brain_cerebellar_hemisphere -3.26e+00 0.000561 0 5:139265072-5:140645971
8210 5 139917175 139937853 SRA1 brain_caudate_basal_ganglia 3.01e+00 0.000545 0 5:139265072-5:140645971
8120 5 140073076 140078889 HARS2 brain_cerebellar_hemisphere -2.97e+00 0.001430 0 5:139265072-5:140645971
12965 5 140186659 140391929 PCDHA4 psychencode -9.06e-01 0.000271 0 5:139265072-5:140645971
13494 5 140498262 140500347 AC005754.8 psychencode 2.14e+00 0.000747 0 5:139265072-5:140645971
8066 5 140235595 140238021 PCDHA10 brain_anterior_cingulate_cortex_ba24 -4.22e+00 0.004910 1 5:139265072-5:140645971
8266 5 139917175 139937853 SRA1 thyroid 2.32e+00 0.000365 0 5:139265072-5:140645971
13217 5 139927251 139929163 EIF4EBP3 psychencode -7.93e-01 0.000329 0 5:139265072-5:140645971
8270 5 140480340 140483406 PCDHB3 brain_hypothalamus 1.60e+00 0.000347 0 5:139265072-5:140645971
8283 5 139917175 139937853 SRA1 brain_anterior_cingulate_cortex_ba24 1.94e+00 0.000326 0 5:139265072-5:140645971
8125 5 140552243 140555957 PCDHB7 brain_cerebellar_hemisphere -1.78e+00 0.001300 0 5:139265072-5:140645971
8097 5 140235595 140238021 PCDHA10 brain_frontal_cortex_ba9 -4.00e+00 0.002340 1 5:139265072-5:140645971
8306 5 139554227 139661637 CYSTM1 brain_frontal_cortex_ba9 1.49e+00 0.000280 0 5:139265072-5:140645971
8042 5 140220907 140223351 PCDHA8 brain_cerebellum -4.50e+00 0.014200 1 5:139265072-5:140645971
12326 5 139175406 139224051 PSD2 psychencode 1.53e+00 0.001480 0 5:139265072-5:140645971
8182 5 140474227 140476962 PCDHB2 brain_frontal_cortex_ba9 6.55e-01 0.000684 0 5:139265072-5:140645971
8188 5 140571942 140575215 PCDHB10 brain_amygdala -3.23e-01 0.000647 0 5:139265072-5:140645971
8202 5 140053710 140071609 HARS brain_nucleus_accumbens_basal_ganglia 3.28e+00 0.000589 0 5:139265072-5:140645971
8039 5 140557371 140560081 PCDHB8 adrenal_gland -1.32e+00 0.015400 1 5:139265072-5:140645971
8244 5 140571942 140575215 PCDHB10 brain_nucleus_accumbens_basal_ganglia -1.44e-01 0.000418 0 5:139265072-5:140645971
12991 5 139916925 139937895 SRA1 psychencode -3.04e-01 0.000271 0 5:139265072-5:140645971
8085 5 140498262 140500347 AC005754.8 pituitary 3.82e+00 0.003210 1 5:139265072-5:140645971
12600 5 140011313 140013286 CD14 psychencode -1.71e+00 0.000280 0 5:139265072-5:140645971
8081 5 140186659 140189169 PCDHA4 brain_amygdala -4.05e+00 0.003690 1 5:139265072-5:140645971
8208 5 140019012 140024869 TMCO6 brain_cerebellum -3.26e+00 0.000559 0 5:139265072-5:140645971
8184 5 140018325 140027370 NDUFA2 yfs.blood.rnaarr 3.27e+00 0.000663 0 5:139265072-5:140645971
11955 5 140514800 140517703 PCDHB5 psychencode 3.10e-01 0.000415 0 5:139265072-5:140645971
8053 5 140079919 140086248 ZMAT2 brain_cerebellum -4.32e+00 0.008770 1 5:139265072-5:140645971
8219 5 140498262 140500347 AC005754.8 brain_anterior_cingulate_cortex_ba24 1.79e+00 0.000515 0 5:139265072-5:140645971
8032 5 140180783 140183257 PCDHA3 pituitary 4.55e+00 0.020500 1 5:139265072-5:140645971
8030 5 140261793 140264247 PCDHA13 brain_caudate_basal_ganglia 4.11e+00 0.024900 1 5:139265072-5:140645971
11956 5 140529683 140532868 PCDHB6 psychencode 1.18e+00 0.000905 0 5:139265072-5:140645971
8034 5 139624624 139682706 PFDN1 adrenal_gland 4.08e+00 0.019500 1 5:139265072-5:140645971
8264 5 139554227 139661637 CYSTM1 pituitary 2.51e+00 0.000373 0 5:139265072-5:140645971
8099 5 139917175 139937853 SRA1 brain_cerebellar_hemisphere 3.76e+00 0.002240 1 5:139265072-5:140645971
13199 5 140855580 140892542 PCDHGC3 psychencode 1.29e+00 0.001390 0 5:139265072-5:140645971
8222 5 139536904 139548370 CTB-131B5.5 brain_nucleus_accumbens_basal_ganglia -1.56e+00 0.000502 0 5:139265072-5:140645971
12056 5 140571942 140575215 PCDHB10 psychencode 4.49e-01 0.001430 0 5:139265072-5:140645971
13257 5 140248689 140391929 PCDHA11 psychencode 1.22e+00 0.000296 0 5:139265072-5:140645971
8235 5 139536904 139548370 CTB-131B5.5 adrenal_gland 1.91e-01 0.000442 0 5:139265072-5:140645971
8169 5 139554227 139661637 CYSTM1 brain_cerebellum 2.49e+00 0.000777 0 5:139265072-5:140645971
8276 5 140011316 140013286 CD14 ntr.blood.rnaarr 2.15e+00 0.000334 0 5:139265072-5:140645971
8166 5 139929651 139937678 SRA1 cmc.brain.rnaseq_splicing 3.45e+00 0.000805 0 5:139265072-5:140645971
8144 5 140571942 140575215 PCDHB10 brain_frontal_cortex_ba9 2.72e-01 0.001040 0 5:139265072-5:140645971
8181 5 140186659 140189169 PCDHA4 adrenal_gland -2.74e+00 0.000686 0 5:139265072-5:140645971
8142 5 140571951 140575213 PCDHB10 cmc.brain.rnaseq 3.27e-01 0.001090 0 5:139265072-5:140645971
8124 5 140571942 140575215 PCDHB10 brain_anterior_cingulate_cortex_ba24 -6.56e-01 0.001320 0 5:139265072-5:140645971
8113 5 140207563 140210070 PCDHA6 brain_cerebellar_hemisphere 3.37e+00 0.001660 1 5:139265072-5:140645971
8036 5 140018325 140027354 NDUFA2 pituitary 4.48e+00 0.016700 1 5:139265072-5:140645971
8077 5 140220907 140223351 PCDHA8 brain_cortex -4.16e+00 0.004170 1 5:139265072-5:140645971
8214 5 140235595 140238021 PCDHA10 brain_hippocampus -3.04e+00 0.000537 0 5:139265072-5:140645971
8192 5 140579183 140582618 PCDHB11 adrenal_gland 1.50e+00 0.000621 0 5:139265072-5:140645971
11949 5 139712428 139726216 HBEGF psychencode -9.40e-01 0.003550 1 5:139265072-5:140645971
8240 5 139929651 139937678 SRA1 cmc.brain.rnaseq 2.84e+00 0.000426 0 5:139265072-5:140645971
8158 5 140593509 140596993 PCDHB13 thyroid -1.42e+00 0.000854 0 5:139265072-5:140645971
8149 5 139624624 139682706 PFDN1 yfs.blood.rnaarr 1.86e+00 0.000943 0 5:139265072-5:140645971
8116 5 139937853 139973337 APBB3 yfs.blood.rnaarr 3.76e+00 0.001580 1 5:139265072-5:140645971
8292 5 139917175 139937853 SRA1 brain_cortex 1.76e+00 0.000311 0 5:139265072-5:140645971
8304 5 139624624 139682706 PFDN1 thyroid 1.33e-01 0.000286 0 5:139265072-5:140645971
8154 5 140552243 140555957 PCDHB7 brain_amygdala 1.29e-01 0.000875 0 5:139265072-5:140645971
8263 5 140579183 140582618 PCDHB11 pituitary 4.18e-01 0.000373 0 5:139265072-5:140645971
8170 5 139554227 139661637 CYSTM1 brain_putamen_basal_ganglia 2.49e+00 0.000777 0 5:139265072-5:140645971
8313 5 138745891 138775214 DNAJC18 cmc.brain.rnaseq -5.54e-01 0.000239 0 5:139265072-5:140645971
11954 5 140480234 140483406 PCDHB3 psychencode 1.71e+00 0.000886 0 5:139265072-5:140645971
8294 5 140579183 140582618 PCDHB11 thyroid 9.49e-01 0.000308 0 5:139265072-5:140645971
8050 5 140186659 140189169 PCDHA4 pituitary -4.28e+00 0.011500 1 5:139265072-5:140645971
8293 5 139917175 139937853 SRA1 whole_blood 7.57e-01 0.000309 0 5:139265072-5:140645971
8031 5 140186659 140189169 PCDHA4 thyroid -4.60e+00 0.021800 1 5:139265072-5:140645971
12893 5 140579183 140582618 PCDHB11 psychencode 1.10e+00 0.000332 0 5:139265072-5:140645971
12055 5 140557371 140560081 PCDHB8 psychencode -1.58e+00 0.007770 1 5:139265072-5:140645971
8073 5 140174443 140391929 PCDHA2 cmc.brain.rnaseq -4.19e+00 0.004470 1 5:139265072-5:140645971
8211 5 139579748 139582772 CTB-131B5.2 brain_cerebellar_hemisphere -2.30e+00 0.000543 0 5:139265072-5:140645971
8232 5 139554227 139661637 CYSTM1 whole_blood -2.31e+00 0.000444 0 5:139265072-5:140645971
8261 5 140579347 140582618 PCDHB11 cmc.brain.rnaseq 1.06e+00 0.000377 0 5:139265072-5:140645971
8130 5 140588269 140591696 PCDHB12 pituitary -4.53e-01 0.001240 0 5:139265072-5:140645971
8217 5 140588269 140591696 PCDHB12 thyroid 1.63e-01 0.000519 0 5:139265072-5:140645971
8216 5 139927251 139929163 EIF4EBP3 thyroid -3.86e-02 0.000523 0 5:139265072-5:140645971
8151 5 140213969 140216338 PCDHA7 brain_cerebellar_hemisphere -3.44e+00 0.000931 0 5:139265072-5:140645971
12053 5 139554227 139661637 CYSTM1 psychencode 2.29e+00 0.000574 0 5:139265072-5:140645971
8280 5 140588269 140591696 PCDHB12 brain_cerebellum 2.45e-01 0.000329 0 5:139265072-5:140645971
12058 5 140588269 140591696 PCDHB12 psychencode 1.08e+00 0.013400 1 5:139265072-5:140645971
13334 5 140180783 140391929 PCDHA3 psychencode -1.83e+00 0.000317 0 5:139265072-5:140645971
8223 5 140235595 140238021 PCDHA10 thyroid -3.03e+00 0.000495 0 5:139265072-5:140645971
8245 5 140073076 140078889 HARS2 brain_frontal_cortex_ba9 -2.47e+00 0.000418 0 5:139265072-5:140645971
8045 5 140186659 140189169 PCDHA4 brain_caudate_basal_ganglia -4.39e+00 0.013300 1 5:139265072-5:140645971
11948 5 140071011 140078889 HARS2 psychencode -3.35e+00 0.000667 0 5:139265072-5:140645971
11953 5 140026643 140042064 IK psychencode -3.11e+00 0.000568 0 5:139265072-5:140645971
12817 5 140593509 140596993 PCDHB13 psychencode -1.25e+00 0.000367 0 5:139265072-5:140645971
13303 5 139728069 139737379 CTC-329D1.3 psychencode 4.21e+00 0.005780 1 5:139265072-5:140645971
8078 5 140026643 140042063 IK brain_anterior_cingulate_cortex_ba24 -4.15e+00 0.004000 1 5:139265072-5:140645971
8161 5 140248689 140251079 PCDHA11 brain_hippocampus -2.34e+00 0.000844 0 5:139265072-5:140645971
8213 5 139917175 139937853 SRA1 brain_frontal_cortex_ba9 5.83e-01 0.000538 0 5:139265072-5:140645971
8204 5 140593508 140596993 PCDHB13 cmc.brain.rnaseq -1.42e+00 0.000585 0 5:139265072-5:140645971
11950 5 139739787 139754728 SLC4A9 psychencode 2.76e+00 0.001470 0 5:139265072-5:140645971
8153 5 140240341 140243224 AC005609.1 brain_cerebellum 3.55e+00 0.000883 0 5:139265072-5:140645971
8096 5 139712428 139726216 HBEGF yfs.blood.rnaarr 2.77e+00 0.002440 1 5:139265072-5:140645971
8311 5 139554653 139623374 C5orf32 ntr.blood.rnaarr 8.16e-01 0.000248 0 5:139265072-5:140645971
8122 5 139917175 139937853 SRA1 brain_hippocampus 3.72e+00 0.001340 0 5:139265072-5:140645971
8177 5 139917175 139937853 SRA1 brain_hypothalamus 3.33e+00 0.000703 0 5:139265072-5:140645971
8189 5 139917175 139937853 SRA1 pituitary 3.31e+00 0.000637 0 5:139265072-5:140645971
8238 5 139917175 139937853 SRA1 brain_amygdala 2.79e+00 0.000435 0 5:139265072-5:140645971
8272 5 140235595 140238021 PCDHA10 pituitary -1.74e+00 0.000342 0 5:139265072-5:140645971
8221 5 139917175 139937853 SRA1 brain_cerebellum 3.16e+00 0.000504 0 5:139265072-5:140645971
8159 5 139739787 139754728 SLC4A9 thyroid -3.51e+00 0.000852 0 5:139265072-5:140645971
8174 5 140247830 140391929 PCDHA11 cmc.brain.rnaseq -2.58e+00 0.000729 0 5:139265072-5:140645971
12011 5 159990127 160279221 ATP10B psychencode 3.34e-01 0.000199 0 5:159973944-5:161482133
12324 5 160715436 160976050 GABRB2 psychencode -7.23e-01 0.000236 0 5:159973944-5:161482133
12507 5 159848829 159855748 PTTG1 psychencode 1.61e-01 0.000196 0 5:159973944-5:161482133
13036 5 159820155 159827104 C5orf54 psychencode -1.66e+00 0.000723 0 5:159973944-5:161482133
11962 5 159436120 159492550 TTC1 psychencode -4.25e-02 0.000192 0 5:159973944-5:161482133
8323 5 159488808 159546430 PWWP2A adrenal_gland 1.24e+00 0.000455 0 5:159973944-5:161482133
8334 5 159614373 159665729 FABP6 cmc.brain.rnaseq_splicing 2.72e-01 0.000202 0 5:159973944-5:161482133
8339 5 159990126 160279219 ATP10B cmc.brain.rnaseq -3.83e-02 0.000193 0 5:159973944-5:161482133
8322 5 159678659 159772403 CCNJL whole_blood -1.45e+00 0.000540 0 5:159973944-5:161482133
8328 5 159678659 159772403 CCNJL yfs.blood.rnaarr 8.37e-01 0.000262 0 5:159973944-5:161482133
8319 5 159990127 160279221 ATP10B thyroid 2.07e+00 0.001190 0 5:159973944-5:161482133
8332 5 159990127 160279221 ATP10B brain_amygdala 4.27e-01 0.000212 0 5:159973944-5:161482133
8333 5 159990127 160279221 ATP10B brain_anterior_cingulate_cortex_ba24 -3.95e-01 0.000211 0 5:159973944-5:161482133
8330 5 160974069 161129598 GABRA6 brain_anterior_cingulate_cortex_ba24 2.02e-01 0.000241 0 5:159973944-5:161482133
8331 5 159820155 159827104 C5orf54 brain_cerebellar_hemisphere -5.17e-01 0.000214 0 5:159973944-5:161482133
12323 5 160974069 161129599 GABRA6 psychencode -9.45e-01 0.000254 0 5:159973944-5:161482133
8335 5 159990127 160279221 ATP10B brain_cortex -1.84e-01 0.000197 0 5:159973944-5:161482133
8326 5 159828648 159848718 SLU7 yfs.blood.rnaarr 9.11e-01 0.000286 0 5:159973944-5:161482133
8336 5 159990127 160279221 ATP10B brain_frontal_cortex_ba9 -1.15e-01 0.000194 0 5:159973944-5:161482133
8327 5 161112657 161129598 GABRA6 cmc.brain.rnaseq -1.08e+00 0.000284 0 5:159973944-5:161482133
8329 5 161114353 161116414 RP11-348M17.2 brain_cerebellum -7.63e-01 0.000257 0 5:159973944-5:161482133
8317 5 160974069 161129598 GABRA6 brain_cerebellum -3.47e+00 0.038900 0 5:159973944-5:161482133
8315 5 161274196 161326965 GABRA1 cmc.brain.rnaseq_splicing 3.66e+00 0.074000 1 5:159973944-5:161482133
8316 5 161274196 161326965 GABRA1 cmc.brain.rnaseq_splicing -3.49e+00 0.041000 0 5:159973944-5:161482133
8318 5 161274196 161326965 GABRA1 cmc.brain.rnaseq 3.12e+00 0.012700 0 5:159973944-5:161482133
12322 5 159774758 159797648 C1QTNF2 psychencode 4.77e-01 0.000208 0 5:159973944-5:161482133
8324 5 159820155 159827104 C5orf54 whole_blood -1.35e+00 0.000435 0 5:159973944-5:161482133
8337 5 159990127 160279221 ATP10B brain_nucleus_accumbens_basal_ganglia -1.19e-01 0.000194 0 5:159973944-5:161482133
8320 5 161274197 161326975 GABRA1 brain_caudate_basal_ganglia 2.08e+00 0.001010 0 5:159973944-5:161482133
11623 5 161274197 161326975 GABRA1 psychencode 2.03e+00 0.000951 0 5:159973944-5:161482133
11963 5 161494546 161582542 GABRG2 psychencode 5.76e-01 0.000239 0 5:159973944-5:161482133
8314 5 160974069 161129598 GABRA6 brain_cerebellar_hemisphere -3.85e+00 0.151000 1 5:159973944-5:161482133
8321 5 161494647 161582545 GABRG2 cmc.brain.rnaseq_splicing -1.39e+00 0.000575 0 5:159973944-5:161482133
8338 5 159990127 160279221 ATP10B brain_caudate_basal_ganglia -8.31e-02 0.000193 0 5:159973944-5:161482133
8325 5 161494647 161582545 GABRG2 cmc.brain.rnaseq_splicing 1.40e+00 0.000374 0 5:159973944-5:161482133
8340 5 159990127 160279221 ATP10B brain_putamen_basal_ganglia -4.14e-02 0.000192 0 5:159973944-5:161482133
13211 5 163723702 164598649 CTC-340A15.2 psychencode -1.17e-01 0.000157 0 5:163772359-5:165642395
8341 5 163723702 164598649 CTC-340A15.2 brain_caudate_basal_ganglia -5.04e-01 0.000177 0 5:163772359-5:165642395
8343 5 166711804 167691162 TENM2 thyroid -1.95e+00 0.000995 0 5:166847740-5:168525089
13309 5 167080233 167087486 CTB-78F1.1 psychencode 3.51e-01 0.000167 0 5:166847740-5:168525089
11645 5 169010638 169031782 SPDL1 psychencode 1.48e+00 0.000457 0 5:166847740-5:168525089
13294 5 167148368 167156129 CTB-78F1.2 psychencode 1.82e+00 0.000798 0 5:166847740-5:168525089
8345 5 167718656 167899308 WWC1 brain_putamen_basal_ganglia 1.54e+00 0.000502 0 5:166847740-5:168525089
11966 5 167718656 167899308 WWC1 psychencode -4.60e-02 0.000158 0 5:166847740-5:168525089
8342 5 167913450 167946304 RARS brain_cortex -2.05e+00 0.001220 0 5:166847740-5:168525089
8344 5 167913450 167946304 RARS yfs.blood.rnaarr -1.87e+00 0.000865 0 5:166847740-5:168525089
8349 5 167956121 167957639 FBLL1 thyroid 1.05e+00 0.000271 0 5:166847740-5:168525089
8351 5 167956121 167957639 FBLL1 adrenal_gland 7.49e-01 0.000208 0 5:166847740-5:168525089
8352 5 167956121 167957639 FBLL1 pituitary 7.38e-01 0.000206 0 5:166847740-5:168525089
8356 5 167913450 167946304 RARS brain_anterior_cingulate_cortex_ba24 -6.63e-01 0.000195 0 5:166847740-5:168525089
8353 5 167956121 167957639 FBLL1 brain_cerebellum 7.13e-01 0.000203 0 5:166847740-5:168525089
8354 5 167956121 167957639 FBLL1 brain_cortex 6.95e-01 0.000200 0 5:166847740-5:168525089
8357 5 167913450 167946304 RARS thyroid -5.34e-01 0.000182 0 5:166847740-5:168525089
8359 5 167913450 167946304 RARS brain_cerebellar_hemisphere 3.11e-01 0.000172 0 5:166847740-5:168525089
8360 5 167913450 167946304 RARS brain_cerebellum -3.38e-01 0.000168 0 5:166847740-5:168525089
12050 5 167975500 168006605 PANK3 psychencode -1.38e+00 0.000399 0 5:166847740-5:168525089
8355 5 167956121 167957639 FBLL1 brain_cerebellar_hemisphere 6.92e-01 0.000200 0 5:166847740-5:168525089
12835 5 167956121 167957639 FBLL1 psychencode 6.25e-01 0.000191 0 5:166847740-5:168525089
11965 5 167913450 167946304 RARS psychencode -1.05e+00 0.000270 0 5:166847740-5:168525089
8347 5 167913462 167946309 RARS cmc.brain.rnaseq_splicing 1.17e+00 0.000305 0 5:166847740-5:168525089
8348 5 167913462 167946309 RARS cmc.brain.rnaseq_splicing -1.10e+00 0.000285 0 5:166847740-5:168525089
8350 5 167913462 167946309 RARS cmc.brain.rnaseq -9.90e-01 0.000254 0 5:166847740-5:168525089
8358 5 167956581 167957639 FBLL1 cmc.brain.rnaseq 4.58e-01 0.000175 0 5:166847740-5:168525089
8346 5 167956121 167957639 FBLL1 brain_caudate_basal_ganglia 1.26e+00 0.000343 0 5:166847740-5:168525089
12766 5 168088745 168728133 SLIT3 psychencode 2.88e-01 0.000164 0 5:166847740-5:168525089
8361 5 167975500 168006605 PANK3 adrenal_gland 1.18e-01 0.000159 0 5:166847740-5:168525089
8540 6 26839263 26924333 GUSBP2 brain_amygdala 7.70e-01 0.000228 0 6:25684587-6:26789628
8534 6 26686469 26688192 RP11-457M11.5 brain_amygdala 3.91e-01 0.000237 0 6:25684587-6:26789628
8542 6 26686469 26688192 RP11-457M11.5 brain_caudate_basal_ganglia -5.76e-01 0.000227 0 6:25684587-6:26789628
8414 6 25992890 26002003 U91328.19 brain_putamen_basal_ganglia 1.63e+00 0.003100 0 6:25684587-6:26789628
8545 6 26839263 26924333 GUSBP2 thyroid 6.29e-01 0.000207 0 6:25684587-6:26789628
8459 6 26013469 26013985 U91328.22 thyroid 1.83e+00 0.000866 0 6:25684587-6:26789628
12120 6 26027124 26027480 HIST1H4B psychencode 5.23e-02 0.000267 0 6:25684587-6:26789628
8363 6 26199716 26200972 HIST1H2BF ntr.blood.rnaarr -4.58e+00 0.261000 1 6:25684587-6:26789628
8383 6 26383324 26395102 BTN2A2 brain_substantia_nigra -1.77e+00 0.011700 1 6:25684587-6:26789628
8497 6 26124396 26138605 HIST1H2AC ntr.blood.rnaarr 1.82e+00 0.000383 0 6:25684587-6:26789628
8537 6 26114625 26124154 HIST1H2BC cmc.brain.rnaseq -5.61e-01 0.000232 0 6:25684587-6:26789628
8413 6 26839263 26924333 GUSBP2 adrenal_gland -4.70e+00 0.003100 0 6:25684587-6:26789628
8432 6 26199748 26200942 HIST1H2BF thyroid -3.27e+00 0.001950 0 6:25684587-6:26789628
8482 6 26383324 26395102 BTN2A2 brain_cerebellum -9.26e-01 0.000507 0 6:25684587-6:26789628
8400 6 26924771 26991703 LINC00240 adrenal_gland -4.83e+00 0.005040 1 6:25684587-6:26789628
8422 6 26924771 26991703 LINC00240 pituitary -4.65e+00 0.002540 0 6:25684587-6:26789628
12901 6 26199748 26200942 HIST1H2BF psychencode -7.89e-01 0.000487 0 6:25684587-6:26789628
8376 6 26055968 26056699 HIST1H1C brain_putamen_basal_ganglia -2.43e+00 0.020400 1 6:25684587-6:26789628
8520 6 26636518 26659980 ZNF322 brain_hypothalamus -2.18e+00 0.000294 0 6:25684587-6:26789628
12571 6 26156559 26157343 HIST1H1E psychencode -9.78e-01 0.000323 0 6:25684587-6:26789628
8543 6 26158348 26171577 HIST1H2BD ntr.blood.rnaarr 2.72e-01 0.000226 0 6:25684587-6:26789628
8435 6 26402465 26415444 BTN3A1 thyroid -3.23e+00 0.001580 0 6:25684587-6:26789628
8460 6 26686469 26688192 RP11-457M11.5 brain_hypothalamus -2.76e+00 0.000858 0 6:25684587-6:26789628
8439 6 26365387 26378546 BTN3A2 brain_cortex 3.30e+00 0.001380 0 6:25684587-6:26789628
8476 6 26087509 26098571 HFE thyroid 2.03e+00 0.000675 0 6:25684587-6:26789628
8461 6 26686469 26688192 RP11-457M11.5 brain_cerebellar_hemisphere 2.96e+00 0.000848 0 6:25684587-6:26789628
13503 6 26968987 26969427 RP11-239L20.6 psychencode -1.76e+00 0.000948 0 6:25684587-6:26789628
12569 6 26273144 26273622 HIST1H2BI psychencode 8.62e-01 0.000351 0 6:25684587-6:26789628
8538 6 26158349 26171577 HIST1H2BD whole_blood 5.81e-01 0.000232 0 6:25684587-6:26789628
8368 6 26440700 26453643 BTN3A3 thyroid 3.96e+00 0.044800 1 6:25684587-6:26789628
11945 6 26458150 26476849 BTN2A1 psychencode -1.71e+00 0.001990 0 6:25684587-6:26789628
8428 6 26458150 26476849 BTN2A1 brain_frontal_cortex_ba9 -1.83e+00 0.002350 0 6:25684587-6:26789628
8544 6 26158349 26171577 HIST1H2BD yfs.blood.rnaarr 8.32e-01 0.000219 0 6:25684587-6:26789628
8506 6 26383324 26395102 BTN2A2 pituitary -6.29e-01 0.000345 0 6:25684587-6:26789628
8425 6 26458152 26476849 BTN2A1 cmc.brain.rnaseq_splicing -1.90e+00 0.002450 0 6:25684587-6:26789628
12708 6 26636518 26659980 ZNF322 psychencode -3.06e+00 0.003660 0 6:25684587-6:26789628
8509 6 26027123 26027480 HIST1H4B cmc.brain.rnaseq -6.26e-01 0.000326 0 6:25684587-6:26789628
12121 6 26421619 26432611 BTN2A3P psychencode 3.95e+00 0.004490 0 6:25684587-6:26789628
8454 6 26458152 26476849 BTN2A1 cmc.brain.rnaseq 8.78e-02 0.000970 0 6:25684587-6:26789628
8381 6 26636518 26659980 ZNF322 adrenal_gland -4.21e+00 0.013200 1 6:25684587-6:26789628
8386 6 26440700 26453643 BTN3A3 brain_cerebellum -4.35e+00 0.010900 1 6:25684587-6:26789628
8421 6 26031816 26032327 HIST1H3B ntr.blood.rnaarr -4.15e+00 0.002640 0 6:25684587-6:26789628
8362 6 26365387 26378546 BTN3A2 pituitary 5.75e+00 0.277000 1 6:25684587-6:26789628
8385 6 26383324 26395102 BTN2A2 brain_putamen_basal_ganglia -6.74e-01 0.011300 1 6:25684587-6:26789628
8528 6 27100832 27103070 HIST1H2AG brain_hypothalamus 3.72e-01 0.000250 0 6:25684587-6:26789628
12896 6 26183958 26184454 HIST1H2BE psychencode 2.02e+00 0.000459 0 6:25684587-6:26789628
11728 6 25279306 25620758 LRRC16A psychencode -2.44e+00 0.000238 0 6:25684587-6:26789628
8369 6 26204858 26206266 HIST1H4E whole_blood -2.49e+00 0.044300 1 6:25684587-6:26789628
8411 6 26365387 26378546 BTN3A2 brain_anterior_cingulate_cortex_ba24 3.67e+00 0.003170 0 6:25684587-6:26789628
12826 6 26055968 26056699 HIST1H1C psychencode -5.58e-01 0.000298 0 6:25684587-6:26789628
8366 6 26087509 26098571 HFE brain_amygdala 2.97e+00 0.078900 1 6:25684587-6:26789628
11606 6 26087509 26098571 HFE psychencode 1.06e+00 0.000219 0 6:25684587-6:26789628
8387 6 26440700 26453643 BTN3A3 brain_cerebellar_hemisphere -4.27e+00 0.008620 1 6:25684587-6:26789628
8503 6 26225383 26225844 HIST1H3E brain_hypothalamus 5.62e-01 0.000358 0 6:25684587-6:26789628
12879 6 26225383 26225844 HIST1H3E psychencode 1.09e+00 0.000394 0 6:25684587-6:26789628
11937 6 26440700 26453643 BTN3A3 psychencode -4.13e+00 0.003270 0 6:25684587-6:26789628
8527 6 25783125 25832287 SLC17A1 adrenal_gland -7.09e-01 0.000254 0 6:25684587-6:26789628
8464 6 25963030 25987384 TRIM38 whole_blood 4.06e+00 0.000840 0 6:25684587-6:26789628
12881 6 26104104 26104518 HIST1H4C psychencode 1.61e-01 0.000338 0 6:25684587-6:26789628
8377 6 26365387 26378546 BTN3A2 brain_cerebellar_hemisphere 5.03e+00 0.016800 1 6:25684587-6:26789628
8418 6 27106073 27114619 HIST1H2BK brain_hypothalamus 2.54e+00 0.002750 0 6:25684587-6:26789628
8504 6 26199748 26200942 HIST1H2BF whole_blood -5.39e-01 0.000346 0 6:25684587-6:26789628
8382 6 26636518 26659980 ZNF322 brain_caudate_basal_ganglia -3.93e+00 0.011900 1 6:25684587-6:26789628
8430 6 27106073 27114619 HIST1H2BK yfs.blood.rnaarr 1.62e+00 0.002040 0 6:25684587-6:26789628
8419 6 26402465 26415444 BTN3A1 brain_cortex -3.35e+00 0.002720 0 6:25684587-6:26789628
8365 6 26188921 26189323 HIST1H4D ntr.blood.rnaarr -5.04e+00 0.187000 1 6:25684587-6:26789628
8436 6 26285354 26285727 HIST1H4H ntr.blood.rnaarr -4.32e-01 0.001580 0 6:25684587-6:26789628
8510 6 26440699 26453643 BTN3A3 cmc.brain.rnaseq -3.26e+00 0.000326 0 6:25684587-6:26789628
8474 6 26402465 26415444 BTN3A1 whole_blood -1.11e+00 0.000732 0 6:25684587-6:26789628
8469 6 25992890 26002003 U91328.19 brain_cerebellum 6.32e-01 0.000789 0 6:25684587-6:26789628
8449 6 26033319 26033796 HIST1H2AB cmc.brain.rnaseq -1.87e+00 0.001050 0 6:25684587-6:26789628
8457 6 26055968 26056699 HIST1H1C brain_anterior_cingulate_cortex_ba24 -1.27e+00 0.000869 0 6:25684587-6:26789628
12123 6 26234440 26235216 HIST1H1D psychencode 6.06e-01 0.000309 0 6:25684587-6:26789628
11942 6 25963030 25987384 TRIM38 psychencode 1.42e+00 0.001320 0 6:25684587-6:26789628
8499 6 26225383 26225844 HIST1H3E brain_nucleus_accumbens_basal_ganglia 9.74e-01 0.000380 0 6:25684587-6:26789628
8426 6 26521933 26527612 HCG11 cmc.brain.rnaseq -2.43e+00 0.002430 0 6:25684587-6:26789628
8539 6 26055968 26056699 HIST1H1C yfs.blood.rnaarr -7.29e-02 0.000231 0 6:25684587-6:26789628
12854 6 26043455 26043885 HIST1H2BB psychencode 1.19e+00 0.000526 0 6:25684587-6:26789628
8501 6 26225383 26225844 HIST1H3E brain_substantia_nigra 1.37e+00 0.000367 0 6:25684587-6:26789628
8465 6 26839263 26924333 GUSBP2 brain_cortex -4.07e+00 0.000826 0 6:25684587-6:26789628
13515 6 26013469 26013985 U91328.22 psychencode -6.25e-01 0.000422 0 6:25684587-6:26789628
8466 6 26686469 26688192 RP11-457M11.5 brain_hippocampus -8.45e-02 0.000818 0 6:25684587-6:26789628
8395 6 26839265 26924333 GUSBP2 cmc.brain.rnaseq 4.08e+00 0.006970 1 6:25684587-6:26789628
8500 6 26686469 26688192 RP11-457M11.5 brain_frontal_cortex_ba9 1.25e+00 0.000377 0 6:25684587-6:26789628
12861 6 26045639 26046097 HIST1H3C psychencode -3.20e+00 0.000397 0 6:25684587-6:26789628
8408 6 26686469 26688192 RP11-457M11.5 brain_cortex 3.63e+00 0.003510 0 6:25684587-6:26789628
8456 6 26458147 26469865 BTN2A1 ntr.blood.rnaarr 6.17e-01 0.000869 0 6:25684587-6:26789628
13057 6 26924771 26991703 LINC00240 psychencode 3.33e+00 0.001360 0 6:25684587-6:26789628
8389 6 26365387 26378546 BTN3A2 brain_hippocampus 4.81e+00 0.008270 1 6:25684587-6:26789628
8379 6 26055968 26056699 HIST1H1C brain_caudate_basal_ganglia -2.37e+00 0.014500 1 6:25684587-6:26789628
8498 6 25279306 25620758 LRRC16A adrenal_gland 4.04e-01 0.000382 0 6:25684587-6:26789628
8417 6 26636518 26659980 ZNF322 brain_substantia_nigra -4.49e+00 0.002750 0 6:25684587-6:26789628
8508 6 25992890 26002003 U91328.19 brain_cortex 7.30e-01 0.000333 0 6:25684587-6:26789628
8412 6 26365387 26378546 BTN3A2 brain_nucleus_accumbens_basal_ganglia 3.36e+00 0.003170 0 6:25684587-6:26789628
8429 6 26636518 26659980 ZNF322 thyroid -2.41e+00 0.002140 0 6:25684587-6:26789628
8489 6 26281282 26285762 HIST1H4H cmc.brain.rnaseq -1.81e+00 0.000449 0 6:25684587-6:26789628
8472 6 25963030 25987384 TRIM38 yfs.blood.rnaarr -2.13e+00 0.000753 0 6:25684587-6:26789628
8492 6 25652464 25702011 SCGN adrenal_gland 2.75e+00 0.000432 0 6:25684587-6:26789628
8374 6 26458150 26476849 BTN2A1 brain_nucleus_accumbens_basal_ganglia -4.00e+00 0.023800 1 6:25684587-6:26789628
12842 6 26188938 26189304 HIST1H4D psychencode 1.08e+00 0.000286 0 6:25684587-6:26789628
8502 6 26225383 26225844 HIST1H3E whole_blood 2.03e-01 0.000365 0 6:25684587-6:26789628
8473 6 26013469 26013985 U91328.22 brain_cerebellar_hemisphere 1.11e+00 0.000744 0 6:25684587-6:26789628
12328 6 26597180 26600278 ABT1 psychencode -1.08e-01 0.000364 0 6:25684587-6:26789628
8442 6 25992890 26002003 U91328.19 brain_hippocampus 1.27e+00 0.001290 0 6:25684587-6:26789628
8514 6 26240653 26241021 HIST1H4F cmc.brain.rnaseq 9.83e-01 0.000306 0 6:25684587-6:26789628
8437 6 26055968 26056699 HIST1H1C brain_hypothalamus -1.48e+00 0.001530 0 6:25684587-6:26789628
8375 6 26538571 26547164 HMGN4 cmc.brain.rnaseq_splicing -4.48e+00 0.022600 1 6:25684587-6:26789628
8533 6 26686469 26688192 RP11-457M11.5 thyroid 3.39e-01 0.000247 0 6:25684587-6:26789628
8490 6 26383324 26395102 BTN2A2 brain_frontal_cortex_ba9 5.77e-01 0.000445 0 6:25684587-6:26789628
8525 6 25992890 26002003 U91328.19 adrenal_gland 5.01e-02 0.000262 0 6:25684587-6:26789628
12801 6 26365387 26378546 BTN3A2 psychencode 3.30e+00 0.004090 0 6:25684587-6:26789628
8462 6 26402465 26415444 BTN3A1 brain_anterior_cingulate_cortex_ba24 -2.45e+00 0.000848 0 6:25684587-6:26789628
12891 6 26197068 26199521 HIST1H3D psychencode 2.83e-01 0.000191 0 6:25684587-6:26789628
8483 6 26225383 26225844 HIST1H3E brain_putamen_basal_ganglia 2.00e+00 0.000480 0 6:25684587-6:26789628
8402 6 26281283 26285762 HIST1H4H whole_blood -2.02e+00 0.004620 1 6:25684587-6:26789628
8531 6 26115101 26124154 HIST1H2BC yfs.blood.rnaarr 8.68e-01 0.000249 0 6:25684587-6:26789628
8479 6 26924771 26991703 LINC00240 brain_cerebellum -3.70e+00 0.000553 0 6:25684587-6:26789628
8420 6 26365387 26378546 BTN3A2 brain_hypothalamus 3.95e+00 0.002670 0 6:25684587-6:26789628
8404 6 26538633 26546482 HMGN4 whole_blood 3.38e+00 0.003640 0 6:25684587-6:26789628
12119 6 26383324 26395102 BTN2A2 psychencode 2.08e+00 0.000782 0 6:25684587-6:26789628
12416 6 26281283 26285762 HIST1H4H psychencode -1.45e+00 0.000675 0 6:25684587-6:26789628
8512 6 25992890 26002003 U91328.19 whole_blood -1.95e+00 0.000310 0 6:25684587-6:26789628
8372 6 26365387 26378546 BTN3A2 whole_blood 5.06e+00 0.037800 1 6:25684587-6:26789628
8427 6 26365387 26378546 BTN3A2 brain_frontal_cortex_ba9 3.96e+00 0.002420 0 6:25684587-6:26789628
8397 6 26365387 26378546 BTN3A2 brain_caudate_basal_ganglia 3.39e+00 0.005470 1 6:25684587-6:26789628
8547 6 26215416 26216920 HIST1H2BG ntr.blood.rnaarr -6.08e-01 0.000196 0 6:25684587-6:26789628
8394 6 26458150 26476849 BTN2A1 adrenal_gland -2.90e+00 0.007460 1 6:25684587-6:26789628
8407 6 26402465 26415444 BTN3A1 adrenal_gland -3.57e+00 0.003520 0 6:25684587-6:26789628
8535 6 26383324 26395102 BTN2A2 thyroid -8.98e-01 0.000235 0 6:25684587-6:26789628
13508 6 25992890 26002003 U91328.19 psychencode 1.16e+00 0.000462 0 6:25684587-6:26789628
8401 6 26458150 26476849 BTN2A1 whole_blood -2.40e+00 0.004770 1 6:25684587-6:26789628
12829 6 26216428 26216872 HIST1H2BG psychencode -4.92e-01 0.000272 0 6:25684587-6:26789628
8477 6 26402465 26415444 BTN3A1 pituitary -1.13e+00 0.000596 0 6:25684587-6:26789628
8399 6 26365387 26378546 BTN3A2 yfs.blood.rnaarr 4.03e+00 0.005130 1 6:25684587-6:26789628
8446 6 26402465 26415444 BTN3A1 yfs.blood.rnaarr -1.97e+00 0.001190 0 6:25684587-6:26789628
8546 6 26240560 26241021 HIST1H4F ntr.blood.rnaarr -1.90e-01 0.000200 0 6:25684587-6:26789628
11727 6 25652464 25702011 SCGN psychencode 7.28e-01 0.001430 0 6:25684587-6:26789628
8507 6 26217145 26217707 HIST1H2AE ntr.blood.rnaarr 4.50e-01 0.000335 0 6:25684587-6:26789628
8475 6 25833294 25874471 SLC17A3 adrenal_gland -1.82e+00 0.000684 0 6:25684587-6:26789628
8443 6 26055967 26056699 HIST1H1C cmc.brain.rnaseq -1.42e+00 0.001270 0 6:25684587-6:26789628
8458 6 26402464 26415444 BTN3A1 ntr.blood.rnaarr -3.07e-01 0.000869 0 6:25684587-6:26789628
8431 6 26636518 26659980 ZNF322 pituitary -1.72e+00 0.001990 0 6:25684587-6:26789628
8488 6 26383324 26395102 BTN2A2 whole_blood -2.46e+00 0.000457 0 6:25684587-6:26789628
12697 6 26115101 26124154 HIST1H2BC psychencode -6.26e-01 0.000225 0 6:25684587-6:26789628
13096 6 26522076 26526807 HCG11 psychencode 1.83e+00 0.000385 0 6:25684587-6:26789628
8392 6 26365387 26378546 BTN3A2 adrenal_gland 4.63e+00 0.007660 1 6:25684587-6:26789628
8491 6 26217165 26217711 HIST1H2AE thyroid -3.13e-01 0.000438 0 6:25684587-6:26789628
8415 6 26634610 26659980 ZNF322 cmc.brain.rnaseq -3.05e+00 0.003060 0 6:25684587-6:26789628
8448 6 25992890 26002003 U91328.19 brain_caudate_basal_ganglia 1.30e+00 0.001060 0 6:25684587-6:26789628
8406 6 26055968 26056699 HIST1H1C brain_cortex -1.52e+00 0.003530 0 6:25684587-6:26789628
8536 6 25963030 25987384 TRIM38 thyroid 4.85e-01 0.000234 0 6:25684587-6:26789628
8486 6 26421619 26432611 BTN2A3P adrenal_gland 1.48e+00 0.000460 0 6:25684587-6:26789628
8505 6 26686469 26688192 RP11-457M11.5 pituitary -8.95e-01 0.000346 0 6:25684587-6:26789628
8410 6 26365397 26378548 BTN3A2 cmc.brain.rnaseq 2.92e+00 0.003320 0 6:25684587-6:26789628
8484 6 26013469 26013985 U91328.22 brain_frontal_cortex_ba9 -9.26e-01 0.000464 0 6:25684587-6:26789628
8367 6 26365387 26378546 BTN3A2 thyroid 5.38e+00 0.069000 1 6:25684587-6:26789628
12124 6 26017260 26018040 HIST1H1A psychencode -2.86e+00 0.000250 0 6:25684587-6:26789628
8513 6 26686469 26688192 RP11-457M11.5 whole_blood 8.74e-01 0.000308 0 6:25684587-6:26789628
8390 6 26538571 26547164 HMGN4 cmc.brain.rnaseq_splicing 3.23e+00 0.008100 1 6:25684587-6:26789628
8463 6 26636518 26659980 ZNF322 whole_blood -3.68e-01 0.000846 0 6:25684587-6:26789628
8471 6 25992890 26002003 U91328.19 brain_anterior_cingulate_cortex_ba24 1.02e+00 0.000775 0 6:25684587-6:26789628
11632 6 26402465 26415444 BTN3A1 psychencode 1.39e+00 0.000617 0 6:25684587-6:26789628
8370 6 26538633 26546482 HMGN4 brain_cerebellum 5.36e+00 0.043100 1 6:25684587-6:26789628
8494 6 26216428 26216872 HIST1H2BG whole_blood -8.30e-01 0.000395 0 6:25684587-6:26789628
8493 6 25990989 25991454 U91328.20 thyroid 5.89e-01 0.000430 0 6:25684587-6:26789628
8515 6 26216428 26216872 HIST1H2BG thyroid -1.25e+00 0.000304 0 6:25684587-6:26789628
8453 6 26383324 26395102 BTN2A2 brain_hippocampus -1.31e+00 0.000973 0 6:25684587-6:26789628
8518 6 26217165 26217711 HIST1H2AE whole_blood -6.41e-01 0.000296 0 6:25684587-6:26789628
8532 6 26234439 26235216 HIST1H1D cmc.brain.rnaseq 5.56e-01 0.000248 0 6:25684587-6:26789628
8405 6 26538633 26546482 HMGN4 thyroid 3.96e+00 0.003630 0 6:25684587-6:26789628
8487 6 26104175 26104565 HIST1H4C cmc.brain.rnaseq 9.28e-01 0.000459 0 6:25684587-6:26789628
12818 6 26107640 26108364 HIST1H1T psychencode 1.45e+00 0.001290 0 6:25684587-6:26789628
8455 6 25992890 26002003 U91328.19 brain_cerebellar_hemisphere 8.08e-01 0.000953 0 6:25684587-6:26789628
12570 6 26217165 26217711 HIST1H2AE psychencode 8.84e-01 0.000234 0 6:25684587-6:26789628
8438 6 26383323 26395100 BTN2A2 cmc.brain.rnaseq 1.10e+00 0.001520 0 6:25684587-6:26789628
8433 6 26383324 26395102 BTN2A2 brain_nucleus_accumbens_basal_ganglia -1.64e-01 0.001670 0 6:25684587-6:26789628
8441 6 26538633 26546482 HMGN4 pituitary 4.62e+00 0.001370 0 6:25684587-6:26789628
8378 6 26225383 26225844 HIST1H3E thyroid -2.84e+00 0.014900 1 6:25684587-6:26789628
8391 6 26634611 26635861 RP11-457M11.2 brain_putamen_basal_ganglia -2.15e+00 0.007760 1 6:25684587-6:26789628
8521 6 25992890 26002003 U91328.19 brain_nucleus_accumbens_basal_ganglia 1.68e-01 0.000286 0 6:25684587-6:26789628
8478 6 26225383 26225844 HIST1H3E brain_caudate_basal_ganglia 7.27e-01 0.000571 0 6:25684587-6:26789628
8447 6 26383324 26395102 BTN2A2 brain_caudate_basal_ganglia 5.70e-01 0.001070 0 6:25684587-6:26789628
8384 6 26538198 26546976 HMGN4 ntr.blood.rnaarr 3.92e+00 0.011600 1 6:25684587-6:26789628
8380 6 26013469 26013985 U91328.22 brain_putamen_basal_ganglia 4.85e+00 0.014100 1 6:25684587-6:26789628
8468 6 26199748 26200942 HIST1H2BF brain_anterior_cingulate_cortex_ba24 -2.28e+00 0.000791 0 6:25684587-6:26789628
8517 6 26225383 26225844 HIST1H3E brain_cortex 7.02e-01 0.000299 0 6:25684587-6:26789628
8481 6 26839263 26924333 GUSBP2 pituitary 6.65e-01 0.000533 0 6:25684587-6:26789628
8444 6 26383323 26394999 BTN2A2 ntr.blood.rnaarr -3.96e+00 0.001270 0 6:25684587-6:26789628
12733 6 26538633 26546482 HMGN4 psychencode -5.01e+00 0.081200 1 6:25684587-6:26789628
8452 6 26597180 26600278 ABT1 brain_caudate_basal_ganglia 2.33e-01 0.000993 0 6:25684587-6:26789628
12876 6 26199079 26199471 HIST1H2AD psychencode 2.48e+00 0.000264 0 6:25684587-6:26789628
8467 6 26383324 26395102 BTN2A2 brain_hypothalamus 1.94e+00 0.000804 0 6:25684587-6:26789628
8485 6 26636518 26659980 ZNF322 brain_frontal_cortex_ba9 -1.15e+00 0.000462 0 6:25684587-6:26789628
8496 6 26225382 26226385 HIST1H3E ntr.blood.rnaarr 1.20e+00 0.000383 0 6:25684587-6:26789628
8511 6 26597180 26600278 ABT1 adrenal_gland 4.24e-03 0.000313 0 6:25684587-6:26789628
8393 6 26365387 26378546 BTN3A2 brain_putamen_basal_ganglia 2.36e+00 0.007520 1 6:25684587-6:26789628
8522 6 26597180 26600278 ABT1 yfs.blood.rnaarr 2.38e+00 0.000286 0 6:25684587-6:26789628
8529 6 26225383 26225844 HIST1H3E brain_cerebellum 3.39e-01 0.000250 0 6:25684587-6:26789628
8523 6 26597180 26600278 ABT1 whole_blood -1.40e+00 0.000283 0 6:25684587-6:26789628
8516 6 26202384 26202882 RP1-34B20.4 whole_blood 6.10e-01 0.000303 0 6:25684587-6:26789628
8371 6 26365386 26378540 BTN3A2 ntr.blood.rnaarr 5.32e+00 0.038900 1 6:25684587-6:26789628
8373 6 26839263 26924333 GUSBP2 brain_hippocampus -5.28e+00 0.031400 1 6:25684587-6:26789628
8480 6 25992890 26002003 U91328.19 brain_frontal_cortex_ba9 8.43e-01 0.000539 0 6:25684587-6:26789628
8398 6 26421619 26432611 BTN2A3P thyroid 3.30e+00 0.005140 1 6:25684587-6:26789628
12912 6 26240561 26240976 HIST1H4F psychencode 1.06e+00 0.000272 0 6:25684587-6:26789628
8403 6 26538633 26546482 HMGN4 yfs.blood.rnaarr 2.60e+00 0.003670 0 6:25684587-6:26789628
13417 6 26686469 26688192 RP11-457M11.5 psychencode 2.31e+00 0.001380 0 6:25684587-6:26789628
8388 6 26383324 26395102 BTN2A2 brain_cortex -3.08e+00 0.008490 1 6:25684587-6:26789628
8530 6 26597180 26600278 ABT1 thyroid 7.21e-01 0.000250 0 6:25684587-6:26789628
12915 6 26020718 26021186 HIST1H3A psychencode 6.59e-01 0.001320 0 6:25684587-6:26789628
8396 6 26365387 26378546 BTN3A2 brain_amygdala 4.58e+00 0.006070 1 6:25684587-6:26789628
8440 6 26383324 26395102 BTN2A2 brain_anterior_cingulate_cortex_ba24 1.48e+00 0.001370 0 6:25684587-6:26789628
8445 6 26027037 26027513 HIST1H4B ntr.blood.rnaarr 3.69e-02 0.001220 0 6:25684587-6:26789628
8364 6 26055968 26056699 HIST1H1C brain_nucleus_accumbens_basal_ganglia -2.61e+00 0.230000 1 6:25684587-6:26789628
8409 6 26013469 26013985 U91328.22 adrenal_gland 1.58e+00 0.003420 0 6:25684587-6:26789628
8541 6 26924771 26991703 LINC00240 thyroid -7.70e-01 0.000228 0 6:25684587-6:26789628
8434 6 26124373 26139344 HIST1H2AC whole_blood 2.83e+00 0.001630 0 6:25684587-6:26789628
8495 6 25992890 26002003 U91328.19 thyroid 5.96e-01 0.000389 0 6:25684587-6:26789628
13208 6 26839263 26924333 GUSBP2 psychencode 3.49e+00 0.002230 0 6:25684587-6:26789628
8526 6 26686469 26688192 RP11-457M11.5 brain_nucleus_accumbens_basal_ganglia 5.64e-01 0.000261 0 6:25684587-6:26789628
8416 6 26686469 26688192 RP11-457M11.5 brain_cerebellum 3.81e+00 0.003030 0 6:25684587-6:26789628
8423 6 26365387 26378546 BTN3A2 brain_cerebellum 3.83e+00 0.002520 0 6:25684587-6:26789628
8450 6 26055968 26056699 HIST1H1C brain_frontal_cortex_ba9 -2.34e+00 0.001040 0 6:25684587-6:26789628
8470 6 26522076 26526807 HCG11 brain_hippocampus 1.92e+00 0.000787 0 6:25684587-6:26789628
8451 6 26686469 26688192 RP11-457M11.5 brain_putamen_basal_ganglia 2.33e+00 0.001000 0 6:25684587-6:26789628
13411 6 26527291 26527632 CTA-14H9.5 psychencode 3.15e-01 0.000962 0 6:25684587-6:26789628
8519 6 26686469 26688192 RP11-457M11.5 adrenal_gland 3.14e+00 0.000294 0 6:25684587-6:26789628
8524 6 25992890 26002003 U91328.19 brain_amygdala 4.54e-01 0.000279 0 6:25684587-6:26789628
8424 6 26365387 26378546 BTN3A2 brain_substantia_nigra 3.60e+00 0.002480 0 6:25684587-6:26789628
8729 6 28048481 28057340 ZNF165 cmc.brain.rnaseq 1.04e+00 0.000348 0 6:26791421-6:28017629
8711 6 26686469 26688192 RP11-457M11.5 brain_hippocampus 1.54e+00 0.000459 0 6:26791421-6:28017629
8764 6 26839263 26924333 GUSBP2 brain_hippocampus -1.79e+00 0.000253 0 6:26791421-6:28017629
8723 6 26686469 26688192 RP11-457M11.5 brain_frontal_cortex_ba9 8.98e-01 0.000396 0 6:26791421-6:28017629
8646 6 26686469 26688192 RP11-457M11.5 brain_hypothalamus 1.87e+00 0.001120 0 6:26791421-6:28017629
12245 6 28192664 28201260 ZSCAN9 psychencode -1.18e+00 0.000382 0 6:26791421-6:28017629
8568 6 28249314 28270326 PGBD1 brain_cortex -5.13e+00 0.009260 1 6:26791421-6:28017629
12888 6 28048753 28057341 ZNF165 psychencode -3.40e+00 0.012200 1 6:26791421-6:28017629
8702 6 28234788 28245974 RP5-874C20.3 pituitary 4.08e+00 0.000516 0 6:26791421-6:28017629
8762 6 26839263 26924333 GUSBP2 adrenal_gland 8.07e-02 0.000254 0 6:26791421-6:28017629
8583 6 28234788 28245974 RP5-874C20.3 adrenal_gland 5.53e+00 0.005860 1 6:26791421-6:28017629
8763 6 26839263 26924333 GUSBP2 brain_cortex -1.32e-01 0.000253 0 6:26791421-6:28017629
8782 6 28041094 28042011 OR1F12 thyroid 4.84e-01 0.000216 0 6:26791421-6:28017629
8588 6 28212401 28227011 ZKSCAN4 yfs.blood.rnaarr -5.34e+00 0.004920 1 6:26791421-6:28017629
8668 6 28249313 28270326 PGBD1 cmc.brain.rnaseq 2.48e+00 0.000725 0 6:26791421-6:28017629
8745 6 26839263 26924333 GUSBP2 thyroid 1.11e-01 0.000288 0 6:26791421-6:28017629
8710 6 26686469 26688192 RP11-457M11.5 whole_blood 1.40e+00 0.000459 0 6:26791421-6:28017629
8621 6 28249314 28270326 PGBD1 yfs.blood.rnaarr -4.50e+00 0.002070 0 6:26791421-6:28017629
8736 6 26686469 26688192 RP11-457M11.5 brain_caudate_basal_ganglia 4.53e-01 0.000313 0 6:26791421-6:28017629
8565 6 28234788 28245974 RP5-874C20.3 thyroid 5.57e+00 0.010900 1 6:26791421-6:28017629
8737 6 26686469 26688192 RP11-457M11.5 brain_cerebellum 1.01e+00 0.000311 0 6:26791421-6:28017629
12844 6 28227098 28228736 NKAPL psychencode 3.57e+00 0.000507 0 6:26791421-6:28017629
8645 6 28234788 28245974 RP5-874C20.3 brain_caudate_basal_ganglia 4.21e+00 0.001130 0 6:26791421-6:28017629
8739 6 28234788 28245974 RP5-874C20.3 brain_amygdala 2.75e+00 0.000301 0 6:26791421-6:28017629
8720 6 26686469 26688192 RP11-457M11.5 thyroid 1.28e+00 0.000414 0 6:26791421-6:28017629
8587 6 28234788 28245974 RP5-874C20.3 brain_putamen_basal_ganglia 5.33e+00 0.005060 1 6:26791421-6:28017629
8585 6 27342394 27371683 ZNF391 brain_anterior_cingulate_cortex_ba24 3.97e+00 0.005170 1 6:26791421-6:28017629
8661 6 27342394 27371683 ZNF391 adrenal_gland 1.71e+00 0.000820 0 6:26791421-6:28017629
8790 6 28048909 28057341 ZNF165 brain_caudate_basal_ganglia -9.86e-02 0.000199 0 6:26791421-6:28017629
8678 6 27342394 27371683 ZNF391 brain_amygdala 3.86e-01 0.000660 0 6:26791421-6:28017629
8589 6 26839263 26924333 GUSBP2 pituitary 3.05e+00 0.004700 1 6:26791421-6:28017629
8644 6 27342394 27371683 ZNF391 brain_substantia_nigra 1.45e+00 0.001140 0 6:26791421-6:28017629
8629 6 28234788 28245974 RP5-874C20.3 whole_blood 3.98e+00 0.001660 0 6:26791421-6:28017629
8611 6 27342394 27371683 ZNF391 brain_hypothalamus 2.74e+00 0.002620 0 6:26791421-6:28017629
8696 6 28234788 28245974 RP5-874C20.3 brain_cerebellum 2.55e+00 0.000540 0 6:26791421-6:28017629
12871 6 27775899 27776429 HIST1H2AI psychencode 5.54e-01 0.000311 0 6:26791421-6:28017629
12887 6 27791884 27792257 HIST1H4J psychencode 4.56e+00 0.004240 1 6:26791421-6:28017629
8595 6 27342394 27371683 ZNF391 thyroid 2.28e+00 0.003230 1 6:26791421-6:28017629
8649 6 27418520 27440897 ZNF184 cmc.brain.rnaseq_splicing -1.37e+00 0.000986 0 6:26791421-6:28017629
8648 6 27418522 27440897 ZNF184 adrenal_gland -2.09e+00 0.001050 0 6:26791421-6:28017629
12767 6 27805658 27806117 HIST1H2AK psychencode -9.62e-01 0.000327 0 6:26791421-6:28017629
8756 6 28234788 28245974 RP5-874C20.3 brain_hypothalamus 1.81e+00 0.000262 0 6:26791421-6:28017629
12125 6 27342394 27371683 ZNF391 psychencode 2.44e+00 0.001550 0 6:26791421-6:28017629
8784 6 27798952 27799305 HIST1H4K thyroid 2.69e+00 0.000213 0 6:26791421-6:28017629
8761 6 28234788 28245974 RP5-874C20.3 brain_cortex 1.47e+00 0.000254 0 6:26791421-6:28017629
8593 6 28083406 28084329 RP1-265C24.5 brain_cerebellar_hemisphere 6.72e-01 0.003410 1 6:26791421-6:28017629
8640 6 27215480 27224250 PRSS16 brain_cerebellar_hemisphere -4.82e+00 0.001250 0 6:26791421-6:28017629
8783 6 28092338 28097860 ZSCAN16 brain_anterior_cingulate_cortex_ba24 8.52e-01 0.000216 0 6:26791421-6:28017629
8664 6 27371789 27374743 RP1-153G14.4 brain_hypothalamus 3.42e+00 0.000782 0 6:26791421-6:28017629
8733 6 27371789 27374743 RP1-153G14.4 brain_frontal_cortex_ba9 2.54e+00 0.000319 0 6:26791421-6:28017629
8700 6 28083406 28084329 RP1-265C24.5 pituitary 2.99e+00 0.000520 0 6:26791421-6:28017629
13480 6 27371789 27374743 RP1-153G14.4 psychencode 3.38e+00 0.000853 0 6:26791421-6:28017629
8605 6 26383323 26395100 BTN2A2 cmc.brain.rnaseq -3.98e+00 0.002790 1 6:26791421-6:28017629
12882 6 28234788 28245974 RP5-874C20.3 psychencode 2.86e+00 0.000358 0 6:26791421-6:28017629
13058 6 26924771 26991703 LINC00240 psychencode -1.35e+00 0.000206 0 6:26791421-6:28017629
8597 6 27342394 27371683 ZNF391 brain_cerebellar_hemisphere 2.79e+00 0.003170 1 6:26791421-6:28017629
8600 6 26458150 26476849 BTN2A1 brain_frontal_cortex_ba9 4.18e+00 0.002810 1 6:26791421-6:28017629
13504 6 26968987 26969427 RP11-239L20.6 psychencode 1.52e+00 0.002200 0 6:26791421-6:28017629
8656 6 27418522 27440897 ZNF184 brain_hypothalamus -4.85e+00 0.000884 0 6:26791421-6:28017629
8779 6 26458150 26476849 BTN2A1 brain_nucleus_accumbens_basal_ganglia -2.71e+00 0.000223 0 6:26791421-6:28017629
8599 6 27342394 27371683 ZNF391 brain_frontal_cortex_ba9 2.85e+00 0.002950 1 6:26791421-6:28017629
8794 6 28143966 28144452 AL022393.7 brain_nucleus_accumbens_basal_ganglia 4.46e-02 0.000193 0 6:26791421-6:28017629
8660 6 28155828 28157210 ZNF192P2 brain_cortex -5.33e-01 0.000858 0 6:26791421-6:28017629
8682 6 28234788 28245974 RP5-874C20.3 brain_frontal_cortex_ba9 3.35e-01 0.000636 0 6:26791421-6:28017629
11946 6 26458150 26476849 BTN2A1 psychencode 4.28e+00 0.000787 0 6:26791421-6:28017629
8785 6 27093676 27100541 HIST1H2BJ yfs.blood.rnaarr 4.00e-01 0.000212 0 6:26791421-6:28017629
13021 6 28143966 28144452 AL022393.7 psychencode 2.63e-01 0.005350 1 6:26791421-6:28017629
8550 6 28192664 28201260 ZSCAN9 brain_cerebellar_hemisphere -5.68e+00 0.083500 1 6:26791421-6:28017629
8760 6 28058932 28061442 ZSCAN12P1 brain_hypothalamus 8.22e-01 0.000256 0 6:26791421-6:28017629
8732 6 26458152 26476849 BTN2A1 cmc.brain.rnaseq_splicing 1.26e+00 0.000320 0 6:26791421-6:28017629
8630 6 27418522 27440897 ZNF184 thyroid -2.29e+00 0.001660 0 6:26791421-6:28017629
8793 6 28143966 28144452 AL022393.7 brain_putamen_basal_ganglia 1.74e+00 0.000197 0 6:26791421-6:28017629
8559 6 28192664 28201260 ZSCAN9 brain_hippocampus -5.79e+00 0.014300 1 6:26791421-6:28017629
8643 6 26597180 26600278 ABT1 brain_caudate_basal_ganglia -1.78e+00 0.001150 0 6:26791421-6:28017629
8617 6 28292470 28324048 ZSCAN31 brain_hypothalamus -4.79e+00 0.002260 0 6:26791421-6:28017629
8592 6 26440699 26453643 BTN3A3 cmc.brain.rnaseq -3.26e+00 0.003590 1 6:26791421-6:28017629
8766 6 28155828 28157210 ZNF192P2 brain_anterior_cingulate_cortex_ba24 -1.70e+00 0.000249 0 6:26791421-6:28017629
8727 6 28346597 28367544 ZSCAN12 cmc.brain.rnaseq_splicing 1.45e+00 0.000356 0 6:26791421-6:28017629
13487 6 28046570 28048908 RP1-313I6.12 psychencode 2.00e-01 0.000745 0 6:26791421-6:28017629
8577 6 28083406 28084329 RP1-265C24.5 brain_hypothalamus 4.93e+00 0.006520 1 6:26791421-6:28017629
8777 6 26458152 26476849 BTN2A1 cmc.brain.rnaseq 1.48e+00 0.000227 0 6:26791421-6:28017629
8604 6 26402465 26415444 BTN3A1 yfs.blood.rnaarr -3.98e+00 0.002790 1 6:26791421-6:28017629
8650 6 26597180 26600278 ABT1 adrenal_gland 5.74e-01 0.000973 0 6:26791421-6:28017629
8780 6 28143966 28144452 AL022393.7 brain_amygdala 3.63e-01 0.000222 0 6:26791421-6:28017629
8695 6 26440700 26453643 BTN3A3 thyroid 1.85e+00 0.000540 0 6:26791421-6:28017629
8666 6 28292470 28324048 ZSCAN31 brain_amygdala -4.22e+00 0.000740 0 6:26791421-6:28017629
8578 6 28393286 28411279 ZSCAN23 cmc.brain.rnaseq -5.45e+00 0.006450 1 6:26791421-6:28017629
8748 6 26522076 26526807 HCG11 brain_hippocampus 2.45e-01 0.000278 0 6:26791421-6:28017629
8562 6 27100832 27103070 HIST1H2AG brain_hypothalamus 3.46e+00 0.011300 1 6:26791421-6:28017629
8659 6 27215480 27224250 PRSS16 brain_caudate_basal_ganglia -4.74e+00 0.000869 0 6:26791421-6:28017629
8676 6 27371789 27374743 RP1-153G14.4 pituitary 2.93e+00 0.000671 0 6:26791421-6:28017629
13184 6 27375476 27375775 MCFD2P1 psychencode 2.06e+00 0.050400 1 6:26791421-6:28017629
8701 6 28083406 28084329 RP1-265C24.5 brain_frontal_cortex_ba9 4.08e+00 0.000517 0 6:26791421-6:28017629
12959 6 27325604 27339304 ZNF204P psychencode 1.13e+00 0.001440 0 6:26791421-6:28017629
8636 6 27106073 27114619 HIST1H2BK brain_hypothalamus 3.65e-01 0.001370 0 6:26791421-6:28017629
8620 6 28399707 28411279 ZSCAN23 brain_putamen_basal_ganglia 4.33e+00 0.002130 0 6:26791421-6:28017629
8713 6 28143966 28144452 AL022393.7 adrenal_gland -1.58e+00 0.000450 0 6:26791421-6:28017629
8639 6 26636518 26659980 ZNF322 brain_caudate_basal_ganglia -3.35e+00 0.001280 0 6:26791421-6:28017629
8680 6 27106073 27114619 HIST1H2BK yfs.blood.rnaarr -6.52e-02 0.000654 0 6:26791421-6:28017629
8558 6 27371789 27374743 RP1-153G14.4 brain_hippocampus 5.36e+00 0.018300 1 6:26791421-6:28017629
12773 6 27114861 27115317 HIST1H2AH psychencode 1.18e+00 0.000592 0 6:26791421-6:28017629
8718 6 28083406 28084329 RP1-265C24.5 brain_substantia_nigra -1.02e+00 0.000425 0 6:26791421-6:28017629
11786 6 27418522 27440897 ZNF184 psychencode -2.15e+00 0.011700 1 6:26791421-6:28017629
8740 6 28143966 28144452 AL022393.7 brain_hippocampus 9.86e-01 0.000296 0 6:26791421-6:28017629
8671 6 26686469 26688192 RP11-457M11.5 pituitary 1.89e+00 0.000707 0 6:26791421-6:28017629
8618 6 27342394 27371683 ZNF391 brain_caudate_basal_ganglia 2.66e+00 0.002200 0 6:26791421-6:28017629
8622 6 28046570 28048752 RP1-313I6.12 thyroid 3.27e+00 0.002070 0 6:26791421-6:28017629
8560 6 28046570 28048752 RP1-313I6.12 adrenal_gland 4.61e+00 0.012100 1 6:26791421-6:28017629
8663 6 28155828 28157210 ZNF192P2 brain_frontal_cortex_ba9 -2.03e+00 0.000792 0 6:26791421-6:28017629
8743 6 28317691 28336947 ZKSCAN3 pituitary 1.96e-01 0.000289 0 6:26791421-6:28017629
8719 6 28083406 28084329 RP1-265C24.5 whole_blood -2.69e+00 0.000420 0 6:26791421-6:28017629
8566 6 27325604 27339304 ZNF204P brain_nucleus_accumbens_basal_ganglia -9.93e-01 0.010100 1 6:26791421-6:28017629
8609 6 27342394 27371683 ZNF391 pituitary 2.74e+00 0.002790 0 6:26791421-6:28017629
12873 6 28092338 28097860 ZSCAN16 psychencode -1.08e+00 0.000779 0 6:26791421-6:28017629
8690 6 28155828 28157210 ZNF192P2 brain_nucleus_accumbens_basal_ganglia 2.50e+00 0.000575 0 6:26791421-6:28017629
8683 6 26597180 26600278 ABT1 yfs.blood.rnaarr -1.49e+00 0.000635 0 6:26791421-6:28017629
8570 6 27325604 27339304 ZNF204P adrenal_gland -4.89e+00 0.008260 1 6:26791421-6:28017629
8796 6 26636518 26659980 ZNF322 pituitary -5.53e-01 0.000178 0 6:26791421-6:28017629
8575 6 28083406 28084329 RP1-265C24.5 brain_caudate_basal_ganglia 1.52e+00 0.006640 1 6:26791421-6:28017629
8730 6 27840926 27841289 HIST1H4L ntr.blood.rnaarr 2.80e+00 0.000344 0 6:26791421-6:28017629
8716 6 27371789 27374743 RP1-153G14.4 brain_anterior_cingulate_cortex_ba24 9.36e-01 0.000440 0 6:26791421-6:28017629
8770 6 28058932 28061442 ZSCAN12P1 brain_substantia_nigra 3.16e-01 0.000239 0 6:26791421-6:28017629
13424 6 28104627 28107456 RP1-265C24.8 psychencode -6.45e-01 0.001370 0 6:26791421-6:28017629
8751 6 28212489 28227011 ZKSCAN4 cmc.brain.rnaseq 1.35e+00 0.000276 0 6:26791421-6:28017629
11938 6 26440700 26453643 BTN3A3 psychencode 2.73e+00 0.004940 1 6:26791421-6:28017629
8612 6 27325604 27339304 ZNF204P brain_cortex -1.11e+00 0.002600 0 6:26791421-6:28017629
8581 6 28399707 28411279 ZSCAN23 brain_hypothalamus -4.85e+00 0.006160 1 6:26791421-6:28017629
8725 6 28317691 28336947 ZKSCAN3 brain_nucleus_accumbens_basal_ganglia -1.54e+00 0.000375 0 6:26791421-6:28017629
8554 6 27356523 27369227 ZNF391 cmc.brain.rnaseq 3.86e+00 0.044100 1 6:26791421-6:28017629
8657 6 28393286 28411279 ZSCAN23 cmc.brain.rnaseq_splicing -9.07e-01 0.000882 0 6:26791421-6:28017629
8580 6 27418520 27440897 ZNF184 cmc.brain.rnaseq 8.71e-01 0.006400 1 6:26791421-6:28017629
8752 6 26458147 26469865 BTN2A1 ntr.blood.rnaarr 6.64e-01 0.000271 0 6:26791421-6:28017629
8747 6 26686469 26688192 RP11-457M11.5 brain_nucleus_accumbens_basal_ganglia 2.67e-01 0.000280 0 6:26791421-6:28017629
8758 6 28083406 28084329 RP1-265C24.5 brain_putamen_basal_ganglia 3.34e+00 0.000258 0 6:26791421-6:28017629
8755 6 28129559 28137372 ZNF192P1 brain_nucleus_accumbens_basal_ganglia 1.61e+00 0.000262 0 6:26791421-6:28017629
8602 6 26402464 26415444 BTN3A1 ntr.blood.rnaarr -3.98e+00 0.002790 1 6:26791421-6:28017629
8705 6 28058932 28061442 ZSCAN12P1 whole_blood -4.39e+00 0.000506 0 6:26791421-6:28017629
8551 6 27215480 27224250 PRSS16 pituitary -5.72e+00 0.077000 1 6:26791421-6:28017629
8721 6 27371789 27374743 RP1-153G14.4 brain_cortex 1.02e+00 0.000409 0 6:26791421-6:28017629
8689 6 26597180 26600278 ABT1 thyroid 1.34e+00 0.000578 0 6:26791421-6:28017629
8698 6 26839263 26924333 GUSBP2 brain_amygdala 5.48e-01 0.000536 0 6:26791421-6:28017629
8561 6 28192664 28201260 ZSCAN9 brain_cerebellum -5.38e+00 0.011800 1 6:26791421-6:28017629
8665 6 27325601 27343153 ZNF204P cmc.brain.rnaseq -1.05e+00 0.000771 0 6:26791421-6:28017629
8553 6 27342394 27371683 ZNF391 brain_hippocampus 3.89e+00 0.049600 1 6:26791421-6:28017629
8631 6 27325604 27339304 ZNF204P whole_blood 2.57e+00 0.001630 0 6:26791421-6:28017629
8627 6 28292470 28324048 ZSCAN31 brain_substantia_nigra -4.58e+00 0.001720 0 6:26791421-6:28017629
8564 6 28083406 28084329 RP1-265C24.5 brain_cortex 5.58e+00 0.011000 1 6:26791421-6:28017629
8556 6 26636518 26659980 ZNF322 brain_substantia_nigra -3.03e+00 0.021100 1 6:26791421-6:28017629
8571 6 28083406 28084329 RP1-265C24.5 brain_hippocampus 4.69e+00 0.007530 1 6:26791421-6:28017629
8672 6 28393286 28411279 ZSCAN23 cmc.brain.rnaseq_splicing -1.78e+00 0.000697 0 6:26791421-6:28017629
8576 6 27215480 27224250 PRSS16 whole_blood -5.09e+00 0.006580 1 6:26791421-6:28017629
8626 6 27215480 27224250 PRSS16 thyroid -4.59e+00 0.001760 0 6:26791421-6:28017629
8615 6 27342394 27371683 ZNF391 brain_cerebellum 2.80e+00 0.002430 0 6:26791421-6:28017629
8684 6 27325604 27339304 ZNF204P thyroid -2.94e+00 0.000627 0 6:26791421-6:28017629
8632 6 28083406 28084329 RP1-265C24.5 brain_amygdala 2.77e+00 0.001530 0 6:26791421-6:28017629
8634 6 27215480 27224250 PRSS16 brain_cerebellum -4.81e+00 0.001470 0 6:26791421-6:28017629
8708 6 27325604 27339304 ZNF204P brain_frontal_cortex_ba9 -2.39e+00 0.000490 0 6:26791421-6:28017629
8787 6 28249314 28270326 PGBD1 thyroid -1.26e+00 0.000209 0 6:26791421-6:28017629
8712 6 26924771 26991703 LINC00240 pituitary 4.91e-01 0.000453 0 6:26791421-6:28017629
8572 6 27342394 27371683 ZNF391 brain_nucleus_accumbens_basal_ganglia 1.55e+00 0.007350 1 6:26791421-6:28017629
8781 6 28249314 28270326 PGBD1 brain_caudate_basal_ganglia -9.69e-02 0.000222 0 6:26791421-6:28017629
12858 6 27782822 27783267 HIST1H2BM psychencode -2.18e-01 0.000232 0 6:26791421-6:28017629
12329 6 26597180 26600278 ABT1 psychencode 4.30e+00 0.021400 1 6:26791421-6:28017629
8717 6 26686469 26688192 RP11-457M11.5 brain_anterior_cingulate_cortex_ba24 8.07e-01 0.000430 0 6:26791421-6:28017629
8791 6 26636518 26659980 ZNF322 brain_frontal_cortex_ba9 5.54e-01 0.000198 0 6:26791421-6:28017629
8654 6 27704779 27706273 RP1-97D16.1 brain_nucleus_accumbens_basal_ganglia 4.01e+00 0.000899 0 6:26791421-6:28017629
8726 6 28292470 28324048 ZSCAN31 brain_putamen_basal_ganglia 2.19e-01 0.000372 0 6:26791421-6:28017629
13030 6 28083406 28084329 RP1-265C24.5 psychencode 3.69e+00 0.000665 0 6:26791421-6:28017629
8767 6 28083406 28084329 RP1-265C24.5 brain_anterior_cingulate_cortex_ba24 1.13e+00 0.000246 0 6:26791421-6:28017629
8685 6 26686469 26688192 RP11-457M11.5 adrenal_gland 1.91e+00 0.000605 0 6:26791421-6:28017629
13034 6 28058932 28061442 ZSCAN12P1 psychencode 5.81e+00 0.018100 1 6:26791421-6:28017629
8776 6 28192664 28201260 ZSCAN9 pituitary -2.02e+00 0.000231 0 6:26791421-6:28017629
8608 6 26402465 26415444 BTN3A1 brain_cortex 3.98e+00 0.002790 0 6:26791421-6:28017629
8669 6 27704779 27706273 RP1-97D16.1 brain_cerebellum 2.38e+00 0.000720 0 6:26791421-6:28017629
8706 6 28143966 28144452 AL022393.7 pituitary 5.65e-01 0.000503 0 6:26791421-6:28017629
8598 6 28092386 28097856 ZSCAN16 cmc.brain.rnaseq 3.86e+00 0.003110 1 6:26791421-6:28017629
8735 6 28287437 28287629 RP5-874C20.6 brain_cerebellar_hemisphere 2.97e+00 0.000313 0 6:26791421-6:28017629
8603 6 26402465 26415444 BTN3A1 brain_anterior_cingulate_cortex_ba24 -3.98e+00 0.002790 1 6:26791421-6:28017629
8582 6 28292470 28324048 ZSCAN31 brain_frontal_cortex_ba9 -4.76e+00 0.005950 1 6:26791421-6:28017629
8681 6 28292470 28324048 ZSCAN31 brain_anterior_cingulate_cortex_ba24 -4.01e+00 0.000652 0 6:26791421-6:28017629
8731 6 28109688 28127250 ZKSCAN8 thyroid -2.20e+00 0.000331 0 6:26791421-6:28017629
8704 6 27704779 27706273 RP1-97D16.1 brain_cerebellar_hemisphere 4.08e+00 0.000511 0 6:26791421-6:28017629
8638 6 27371789 27374743 RP1-153G14.4 brain_cerebellum 3.18e+00 0.001290 0 6:26791421-6:28017629
8625 6 28399707 28411279 ZSCAN23 brain_cortex -4.24e+00 0.001760 0 6:26791421-6:28017629
8623 6 28109688 28127250 ZKSCAN8 brain_cerebellum 2.38e+00 0.001920 0 6:26791421-6:28017629
8601 6 26402465 26415444 BTN3A1 adrenal_gland 3.98e+00 0.002790 1 6:26791421-6:28017629
8586 6 26924771 26991703 LINC00240 adrenal_gland -3.77e+00 0.005100 1 6:26791421-6:28017629
8590 6 26686469 26688192 RP11-457M11.5 brain_substantia_nigra 2.88e+00 0.004480 1 6:26791421-6:28017629
8549 6 27418522 27440897 ZNF184 brain_caudate_basal_ganglia -6.26e+00 0.111000 1 6:26791421-6:28017629
13167 6 28292470 28324048 ZSCAN31 psychencode 1.23e-01 0.000211 0 6:26791421-6:28017629
8772 6 28249314 28270326 PGBD1 brain_amygdala 1.27e+00 0.000238 0 6:26791421-6:28017629
8759 6 27325601 27343153 ZNF204P cmc.brain.rnaseq_splicing 1.62e+00 0.000257 0 6:26791421-6:28017629
8734 6 28292470 28324048 ZSCAN31 pituitary -2.07e+00 0.000319 0 6:26791421-6:28017629
12847 6 28317691 28336947 ZKSCAN3 psychencode -1.89e+00 0.000396 0 6:26791421-6:28017629
12916 6 27840926 27841289 HIST1H4L psychencode 3.97e+00 0.000649 0 6:26791421-6:28017629
8746 6 28249314 28270326 PGBD1 brain_anterior_cingulate_cortex_ba24 -6.04e-01 0.000287 0 6:26791421-6:28017629
8596 6 27342394 27371683 ZNF391 whole_blood 1.05e+00 0.003210 1 6:26791421-6:28017629
8567 6 28192664 28201260 ZSCAN9 thyroid -5.32e+00 0.010100 1 6:26791421-6:28017629
8614 6 28292470 28324048 ZSCAN31 brain_cerebellar_hemisphere 2.79e+00 0.002440 0 6:26791421-6:28017629
8788 6 28129559 28137372 ZNF192P1 brain_cortex -7.05e-01 0.000202 0 6:26791421-6:28017629
13068 6 28129559 28137372 ZNF192P1 psychencode -2.07e-01 0.000204 0 6:26791421-6:28017629
8619 6 27342394 27371683 ZNF391 brain_putamen_basal_ganglia 2.85e+00 0.002140 0 6:26791421-6:28017629
8749 6 26686469 26688192 RP11-457M11.5 brain_putamen_basal_ganglia 7.61e-01 0.000278 0 6:26791421-6:28017629
8775 6 28317691 28336947 ZKSCAN3 brain_hippocampus -8.63e-01 0.000232 0 6:26791421-6:28017629
11633 6 26402465 26415444 BTN3A1 psychencode -5.53e-01 0.000261 0 6:26791421-6:28017629
8795 6 28048909 28057341 ZNF165 thyroid 1.71e+00 0.000187 0 6:26791421-6:28017629
12709 6 26636518 26659980 ZNF322 psychencode -4.77e-01 0.000208 0 6:26791421-6:28017629
13209 6 26839263 26924333 GUSBP2 psychencode 1.17e+00 0.000386 0 6:26791421-6:28017629
8786 6 28021006 28021943 OR2B8P pituitary -2.67e-02 0.000210 0 6:26791421-6:28017629
8594 6 26686469 26688192 RP11-457M11.5 brain_amygdala 2.59e+00 0.003240 1 6:26791421-6:28017629
8774 6 27325601 27343153 ZNF204P cmc.brain.rnaseq_splicing -1.67e+00 0.000234 0 6:26791421-6:28017629
8768 6 26634610 26659980 ZNF322 cmc.brain.rnaseq -1.14e-02 0.000245 0 6:26791421-6:28017629
8584 6 26538633 26546482 HMGN4 pituitary 4.10e+00 0.005300 1 6:26791421-6:28017629
8548 6 28234788 28245974 RP5-874C20.3 brain_hippocampus 6.53e+00 0.546000 1 6:26791421-6:28017629
8703 6 27325604 27339304 ZNF204P brain_cerebellum -3.66e+00 0.000512 0 6:26791421-6:28017629
8606 6 26421619 26432611 BTN2A3P adrenal_gland 3.98e+00 0.002790 0 6:26791421-6:28017629
8613 6 26538633 26546482 HMGN4 thyroid 2.78e+00 0.002530 0 6:26791421-6:28017629
13026 6 28155828 28157210 ZNF192P2 psychencode -9.24e-01 0.000425 0 6:26791421-6:28017629
8724 6 28143966 28144452 AL022393.7 brain_hypothalamus 2.54e+00 0.000394 0 6:26791421-6:28017629
8728 6 26839263 26924333 GUSBP2 whole_blood 5.42e-01 0.000353 0 6:26791421-6:28017629
8642 6 26538633 26546482 HMGN4 yfs.blood.rnaarr 2.05e+00 0.001160 0 6:26791421-6:28017629
8633 6 28399707 28411279 ZSCAN23 brain_caudate_basal_ganglia -3.10e+00 0.001470 0 6:26791421-6:28017629
8722 6 26538633 26546482 HMGN4 brain_cerebellum -1.73e+00 0.000403 0 6:26791421-6:28017629
8754 6 26686469 26688192 RP11-457M11.5 brain_cortex 3.34e-01 0.000268 0 6:26791421-6:28017629
8778 6 26538633 26546482 HMGN4 whole_blood -1.19e-01 0.000226 0 6:26791421-6:28017629
8653 6 28109688 28127250 ZKSCAN8 brain_nucleus_accumbens_basal_ganglia -1.13e+00 0.000913 0 6:26791421-6:28017629
8641 6 28109688 28127250 ZKSCAN8 brain_frontal_cortex_ba9 3.00e+00 0.001250 0 6:26791421-6:28017629
8714 6 28058932 28061442 ZSCAN12P1 brain_cortex 3.45e-01 0.000449 0 6:26791421-6:28017629
8652 6 28192664 28201260 ZSCAN9 brain_frontal_cortex_ba9 -4.02e+00 0.000938 0 6:26791421-6:28017629
8552 6 28092338 28097860 ZSCAN16 yfs.blood.rnaarr -6.04e+00 0.052900 1 6:26791421-6:28017629
12734 6 26538633 26546482 HMGN4 psychencode -4.01e-01 0.000249 0 6:26791421-6:28017629
8753 6 26686469 26688192 RP11-457M11.5 brain_cerebellar_hemisphere 4.24e-01 0.000271 0 6:26791421-6:28017629
13097 6 26522076 26526807 HCG11 psychencode 2.47e+00 0.002240 0 6:26791421-6:28017629
8674 6 28192664 28201260 ZSCAN9 whole_blood -1.35e+00 0.000691 0 6:26791421-6:28017629
8557 6 28143966 28144452 AL022393.7 brain_caudate_basal_ganglia 5.85e+00 0.020200 1 6:26791421-6:28017629
8769 6 28185421 28186655 TOB2P1 brain_nucleus_accumbens_basal_ganglia 1.91e+00 0.000241 0 6:26791421-6:28017629
8742 6 26924771 26991703 LINC00240 thyroid -4.41e-01 0.000291 0 6:26791421-6:28017629
8765 6 28317691 28336947 ZKSCAN3 brain_cortex 4.59e-01 0.000251 0 6:26791421-6:28017629
13023 6 27704779 27706273 RP1-97D16.1 psychencode 1.47e+00 0.026000 1 6:26791421-6:28017629
8658 6 28292470 28324048 ZSCAN31 brain_cortex -5.11e-01 0.000882 0 6:26791421-6:28017629
8591 6 28058932 28061442 ZSCAN12P1 adrenal_gland 5.53e+00 0.004190 1 6:26791421-6:28017629
8673 6 26839265 26924333 GUSBP2 cmc.brain.rnaseq 2.01e+00 0.000692 0 6:26791421-6:28017629
8741 6 26634611 26635861 RP11-457M11.2 brain_putamen_basal_ganglia -3.14e+00 0.000292 0 6:26791421-6:28017629
8699 6 28292470 28324048 ZSCAN31 brain_nucleus_accumbens_basal_ganglia -3.85e+00 0.000533 0 6:26791421-6:28017629
8789 6 28021006 28021943 OR2B8P thyroid 5.33e-01 0.000201 0 6:26791421-6:28017629
12248 6 28249314 28270326 PGBD1 psychencode -2.60e+00 0.000436 0 6:26791421-6:28017629
8662 6 27215480 27224250 PRSS16 brain_frontal_cortex_ba9 -4.89e+00 0.000813 0 6:26791421-6:28017629
12827 6 28399707 28411279 ZSCAN23 psychencode -2.44e+00 0.001280 0 6:26791421-6:28017629
13418 6 26686469 26688192 RP11-457M11.5 psychencode 5.60e-01 0.000302 0 6:26791421-6:28017629
8773 6 26538571 26547164 HMGN4 cmc.brain.rnaseq_splicing -1.35e+00 0.000235 0 6:26791421-6:28017629
8709 6 28155828 28157210 ZNF192P2 brain_cerebellum 1.95e+00 0.000482 0 6:26791421-6:28017629
8655 6 28143966 28144452 AL022393.7 brain_cortex -4.10e+00 0.000895 0 6:26791421-6:28017629
8647 6 26924771 26991703 LINC00240 brain_cerebellum 1.30e+00 0.001060 0 6:26791421-6:28017629
8563 6 28317691 28336947 ZKSCAN3 brain_frontal_cortex_ba9 -4.73e+00 0.011100 1 6:26791421-6:28017629
8675 6 28143966 28144452 AL022393.7 brain_anterior_cingulate_cortex_ba24 -6.94e-01 0.000691 0 6:26791421-6:28017629
8738 6 27253682 27279949 POM121L2 brain_cortex 2.25e+00 0.000301 0 6:26791421-6:28017629
8555 6 27356496 27369469 ZNF391 ntr.blood.rnaarr 2.80e+00 0.027600 1 6:26791421-6:28017629
8707 6 28109688 28127250 ZKSCAN8 brain_anterior_cingulate_cortex_ba24 2.09e+00 0.000498 0 6:26791421-6:28017629
8569 6 28317691 28336947 ZKSCAN3 thyroid 4.84e+00 0.008910 1 6:26791421-6:28017629
8792 6 27325601 27343153 ZNF204P cmc.brain.rnaseq_splicing -9.69e-01 0.000198 0 6:26791421-6:28017629
8750 6 28109688 28127250 ZKSCAN8 brain_cortex 2.94e+00 0.000277 0 6:26791421-6:28017629
8677 6 28143966 28144452 AL022393.7 brain_frontal_cortex_ba9 -2.91e+00 0.000660 0 6:26791421-6:28017629
8679 6 28143966 28144452 AL022393.7 thyroid 1.86e+00 0.000657 0 6:26791421-6:28017629
8573 6 26597180 26600278 ABT1 whole_blood -4.19e+00 0.007120 1 6:26791421-6:28017629
8635 6 28399707 28411279 ZSCAN23 pituitary -4.37e+00 0.001390 0 6:26791421-6:28017629
8693 6 28292470 28324048 ZSCAN31 thyroid -4.10e+00 0.000560 0 6:26791421-6:28017629
8637 6 28317691 28336947 ZKSCAN3 brain_amygdala 3.98e+00 0.001330 0 6:26791421-6:28017629
8624 6 27342394 27371683 ZNF391 brain_cortex 1.98e+00 0.001790 0 6:26791421-6:28017629
8744 6 28192664 28201260 ZSCAN9 brain_nucleus_accumbens_basal_ganglia -1.47e+00 0.000288 0 6:26791421-6:28017629
8691 6 28143966 28144452 AL022393.7 brain_substantia_nigra 9.04e-01 0.000562 0 6:26791421-6:28017629
8687 6 27215480 27224250 PRSS16 adrenal_gland -3.51e+00 0.000593 0 6:26791421-6:28017629
12910 6 28109688 28127250 ZKSCAN8 psychencode 3.47e-01 0.000354 0 6:26791421-6:28017629
8715 6 28129559 28137372 ZNF192P1 brain_amygdala -3.32e+00 0.000448 0 6:26791421-6:28017629
8771 6 27325604 27339304 ZNF204P pituitary -1.93e+00 0.000238 0 6:26791421-6:28017629
8616 6 28185421 28186655 TOB2P1 brain_caudate_basal_ganglia 4.89e+00 0.002410 0 6:26791421-6:28017629
8651 6 28317691 28336947 ZKSCAN3 brain_cerebellum 2.28e+00 0.000941 0 6:26791421-6:28017629
8628 6 28083406 28084329 RP1-265C24.5 brain_cerebellum 6.66e-01 0.001710 0 6:26791421-6:28017629
8610 6 28129559 28137372 ZNF192P1 brain_hippocampus 4.24e+00 0.002710 0 6:26791421-6:28017629
13157 6 27806323 27823487 HIST1H2BN psychencode -9.96e-02 0.000532 0 6:26791421-6:28017629
8670 6 28129559 28137372 ZNF192P1 adrenal_gland -3.48e+00 0.000713 0 6:26791421-6:28017629
8694 6 28143966 28144452 AL022393.7 brain_cerebellum -1.61e-01 0.000545 0 6:26791421-6:28017629
8688 6 28129559 28137372 ZNF192P1 brain_caudate_basal_ganglia -3.06e+00 0.000587 0 6:26791421-6:28017629
8686 6 28317691 28336947 ZKSCAN3 brain_cerebellar_hemisphere 2.05e+00 0.000597 0 6:26791421-6:28017629
8667 6 28292470 28324048 ZSCAN31 brain_cerebellum 2.58e+00 0.000735 0 6:26791421-6:28017629
8692 6 28129559 28137372 ZNF192P1 thyroid 1.08e+00 0.000561 0 6:26791421-6:28017629
8697 6 28129559 28137372 ZNF192P1 brain_frontal_cortex_ba9 -3.33e+00 0.000537 0 6:26791421-6:28017629
8579 6 28399707 28411279 ZSCAN23 brain_substantia_nigra -5.45e+00 0.006450 1 6:26791421-6:28017629
8574 6 26538198 26546976 HMGN4 ntr.blood.rnaarr 3.39e+00 0.006860 1 6:26791421-6:28017629
8607 6 26383323 26394999 BTN2A2 ntr.blood.rnaarr -3.98e+00 0.002790 0 6:26791421-6:28017629
8757 6 27325604 27339304 ZNF204P brain_cerebellar_hemisphere -2.84e+00 0.000260 0 6:26791421-6:28017629
8805 6 28234788 28245974 RP5-874C20.3 brain_cerebellum 5.36e+00 0.025800 1 6:28018353-6:28917525
8806 6 28234788 28245974 RP5-874C20.3 brain_hypothalamus 4.55e+00 0.025700 1 6:28018353-6:28917525
8809 6 28234788 28245974 RP5-874C20.3 brain_hippocampus 4.52e+00 0.017600 1 6:28018353-6:28917525
8850 6 28046570 28048752 RP1-313I6.12 thyroid 1.35e+00 0.001210 0 6:28018353-6:28917525
8826 6 28234788 28245974 RP5-874C20.3 thyroid 4.93e+00 0.003480 0 6:28018353-6:28917525
8915 6 28046570 28048752 RP1-313I6.12 adrenal_gland 3.48e+00 0.000508 0 6:28018353-6:28917525
8840 6 28212401 28227011 ZKSCAN4 yfs.blood.rnaarr -3.31e+00 0.001550 0 6:28018353-6:28917525
8827 6 28234788 28245974 RP5-874C20.3 adrenal_gland 4.75e+00 0.003250 0 6:28018353-6:28917525
8829 6 28234788 28245974 RP5-874C20.3 brain_frontal_cortex_ba9 4.45e+00 0.002810 0 6:28018353-6:28917525
8874 6 28192664 28201260 ZSCAN9 whole_blood 3.25e+00 0.000813 0 6:28018353-6:28917525
8911 6 28192664 28201260 ZSCAN9 thyroid -5.51e-01 0.000519 0 6:28018353-6:28917525
8944 6 28192664 28201260 ZSCAN9 brain_nucleus_accumbens_basal_ganglia 9.63e-01 0.000304 0 6:28018353-6:28917525
8804 6 28234788 28245974 RP5-874C20.3 whole_blood 5.45e+00 0.029900 1 6:28018353-6:28917525
8848 6 28185421 28186655 TOB2P1 brain_caudate_basal_ganglia 3.88e+00 0.001330 0 6:28018353-6:28917525
8800 6 28192664 28201260 ZSCAN9 pituitary -5.80e+00 0.057900 1 6:28018353-6:28917525
8894 6 28048481 28057340 ZNF165 cmc.brain.rnaseq 3.73e+00 0.000618 0 6:28018353-6:28917525
8893 6 28185421 28186655 TOB2P1 brain_nucleus_accumbens_basal_ganglia -8.80e-01 0.000624 0 6:28018353-6:28917525
12889 6 28048753 28057341 ZNF165 psychencode 2.73e+00 0.000781 0 6:28018353-6:28917525
8929 6 28192664 28201260 ZSCAN9 brain_cerebellar_hemisphere -1.52e+00 0.000426 0 6:28018353-6:28917525
8879 6 28234788 28245974 RP5-874C20.3 brain_cortex 3.41e+00 0.000760 0 6:28018353-6:28917525
8835 6 28234788 28245974 RP5-874C20.3 pituitary 4.32e+00 0.001900 0 6:28018353-6:28917525
8843 6 27798952 27799305 HIST1H4K thyroid 5.00e+00 0.001530 0 6:28018353-6:28917525
8900 6 28234788 28245974 RP5-874C20.3 brain_cerebellar_hemisphere 3.23e+00 0.000591 0 6:28018353-6:28917525
8883 6 28092338 28097860 ZSCAN16 brain_anterior_cingulate_cortex_ba24 3.98e+00 0.000705 0 6:28018353-6:28917525
8875 6 28083406 28084329 RP1-265C24.5 brain_anterior_cingulate_cortex_ba24 3.82e+00 0.000800 0 6:28018353-6:28917525
8905 6 28083406 28084329 RP1-265C24.5 whole_blood 4.47e+00 0.000556 0 6:28018353-6:28917525
8907 6 28083406 28084329 RP1-265C24.5 adrenal_gland 4.04e+00 0.000548 0 6:28018353-6:28917525
8947 6 28234788 28245974 RP5-874C20.3 brain_amygdala 2.65e+00 0.000283 0 6:28018353-6:28917525
8942 6 28192664 28201260 ZSCAN9 brain_frontal_cortex_ba9 1.03e+00 0.000313 0 6:28018353-6:28917525
12874 6 28092338 28097860 ZSCAN16 psychencode 3.25e+00 0.000608 0 6:28018353-6:28917525
8836 6 28143966 28144452 AL022393.7 brain_putamen_basal_ganglia -4.62e+00 0.001870 0 6:28018353-6:28917525
8841 6 28234788 28245974 RP5-874C20.3 brain_anterior_cingulate_cortex_ba24 4.23e+00 0.001550 0 6:28018353-6:28917525
8838 6 28143966 28144452 AL022393.7 brain_amygdala -3.20e+00 0.001710 0 6:28018353-6:28917525
8849 6 28143966 28144452 AL022393.7 brain_caudate_basal_ganglia -4.32e+00 0.001210 0 6:28018353-6:28917525
8852 6 28143966 28144452 AL022393.7 brain_cortex -4.13e+00 0.001170 0 6:28018353-6:28917525
8860 6 28143966 28144452 AL022393.7 brain_hippocampus -4.11e+00 0.000930 0 6:28018353-6:28917525
8862 6 28143966 28144452 AL022393.7 brain_nucleus_accumbens_basal_ganglia -3.93e+00 0.000907 0 6:28018353-6:28917525
8864 6 28143966 28144452 AL022393.7 brain_cerebellum -4.04e+00 0.000894 0 6:28018353-6:28917525
8866 6 28143966 28144452 AL022393.7 brain_frontal_cortex_ba9 -2.79e+00 0.000861 0 6:28018353-6:28917525
8869 6 28143966 28144452 AL022393.7 brain_anterior_cingulate_cortex_ba24 -4.37e+00 0.000854 0 6:28018353-6:28917525
8901 6 28041094 28042011 OR1F12 thyroid -4.38e+00 0.000589 0 6:28018353-6:28917525
8882 6 28143966 28144452 AL022393.7 brain_hypothalamus -3.89e+00 0.000711 0 6:28018353-6:28917525
12249 6 28249314 28270326 PGBD1 psychencode 9.15e-02 0.000342 0 6:28018353-6:28917525
8801 6 28317691 28336947 ZKSCAN3 brain_amygdala 4.95e+00 0.054800 1 6:28018353-6:28917525
8885 6 28143966 28144452 AL022393.7 brain_cerebellar_hemisphere -4.15e+00 0.000701 0 6:28018353-6:28917525
8931 6 28292470 28324048 ZSCAN31 brain_substantia_nigra -3.64e+00 0.000417 0 6:28018353-6:28917525
8895 6 28346597 28367544 ZSCAN12 cmc.brain.rnaseq_splicing 2.33e+00 0.000606 0 6:28018353-6:28917525
8926 6 28058932 28061442 ZSCAN12P1 brain_substantia_nigra -6.88e-01 0.000450 0 6:28018353-6:28917525
12420 6 28346732 28367511 ZSCAN12 psychencode -1.21e+00 0.000381 0 6:28018353-6:28917525
8887 6 28143966 28144452 AL022393.7 thyroid -2.04e+00 0.000693 0 6:28018353-6:28917525
8890 6 28143966 28144452 AL022393.7 brain_substantia_nigra -4.44e+00 0.000655 0 6:28018353-6:28917525
8878 6 28393286 28411279 ZSCAN23 cmc.brain.rnaseq -3.50e+00 0.000769 0 6:28018353-6:28917525
8917 6 28143966 28144452 AL022393.7 adrenal_gland -2.07e+00 0.000492 0 6:28018353-6:28917525
8828 6 28292470 28324048 ZSCAN31 brain_caudate_basal_ganglia -4.37e+00 0.003240 0 6:28018353-6:28917525
8923 6 28143966 28144452 AL022393.7 pituitary -3.06e+00 0.000470 0 6:28018353-6:28917525
13488 6 28046570 28048908 RP1-313I6.12 psychencode 3.56e+00 0.000495 0 6:28018353-6:28917525
8912 6 28083406 28084329 RP1-265C24.5 brain_cortex 4.18e+00 0.000519 0 6:28018353-6:28917525
8914 6 28083406 28084329 RP1-265C24.5 brain_cerebellar_hemisphere 4.00e+00 0.000510 0 6:28018353-6:28917525
8807 6 28249314 28270326 PGBD1 brain_anterior_cingulate_cortex_ba24 -1.44e+00 0.023200 1 6:28018353-6:28917525
8937 6 28058932 28061442 ZSCAN12P1 brain_hypothalamus -1.31e+00 0.000366 0 6:28018353-6:28917525
8865 6 28317690 28336954 ZKSCAN3 cmc.brain.rnaseq 3.38e+00 0.000892 0 6:28018353-6:28917525
8817 6 28292470 28324048 ZSCAN31 pituitary -5.00e+00 0.005340 0 6:28018353-6:28917525
8924 6 28292470 28324048 ZSCAN31 brain_frontal_cortex_ba9 -3.29e+00 0.000457 0 6:28018353-6:28917525
8930 6 28048909 28057341 ZNF165 thyroid 3.93e+00 0.000419 0 6:28018353-6:28917525
8857 6 28317691 28336947 ZKSCAN3 brain_frontal_cortex_ba9 3.85e+00 0.001010 0 6:28018353-6:28917525
8833 6 28292470 28324048 ZSCAN31 brain_hypothalamus -4.54e+00 0.002080 0 6:28018353-6:28917525
8845 6 28249314 28270326 PGBD1 brain_caudate_basal_ganglia -4.03e+00 0.001400 0 6:28018353-6:28917525
8853 6 28234788 28245974 RP5-874C20.3 brain_caudate_basal_ganglia 4.02e+00 0.001120 0 6:28018353-6:28917525
8880 6 28192664 28201260 ZSCAN9 brain_hippocampus -2.71e+00 0.000730 0 6:28018353-6:28917525
8906 6 28292470 28324048 ZSCAN31 brain_putamen_basal_ganglia -3.71e+00 0.000551 0 6:28018353-6:28917525
8816 6 28155828 28157210 ZNF192P2 brain_cerebellum 4.83e+00 0.005980 0 6:28018353-6:28917525
8922 6 28083406 28084329 RP1-265C24.5 brain_frontal_cortex_ba9 3.99e+00 0.000470 0 6:28018353-6:28917525
8803 6 28234788 28245974 RP5-874C20.3 brain_putamen_basal_ganglia 5.28e+00 0.033500 1 6:28018353-6:28917525
8932 6 28292470 28324048 ZSCAN31 brain_cerebellar_hemisphere -1.12e+00 0.000414 0 6:28018353-6:28917525
8934 6 28083406 28084329 RP1-265C24.5 brain_putamen_basal_ganglia 3.91e+00 0.000408 0 6:28018353-6:28917525
8938 6 28083406 28084329 RP1-265C24.5 brain_substantia_nigra 3.80e+00 0.000362 0 6:28018353-6:28917525
12828 6 28399707 28411279 ZSCAN23 psychencode -2.44e+00 0.000373 0 6:28018353-6:28917525
8858 6 28317691 28336947 ZKSCAN3 brain_cortex 3.97e+00 0.000975 0 6:28018353-6:28917525
8871 6 28058932 28061442 ZSCAN12P1 brain_cortex -3.68e-01 0.000844 0 6:28018353-6:28917525
8884 6 28249314 28270326 PGBD1 brain_cortex 2.08e+00 0.000704 0 6:28018353-6:28917525
8830 6 28129559 28137372 ZNF192P1 brain_amygdala -1.65e+00 0.002410 0 6:28018353-6:28917525
8933 6 28292470 28324048 ZSCAN31 brain_cerebellum -1.01e-01 0.000410 0 6:28018353-6:28917525
8910 6 28155828 28157210 ZNF192P2 brain_cerebellar_hemisphere 3.24e+00 0.000525 0 6:28018353-6:28917525
8903 6 28212489 28227011 ZKSCAN4 cmc.brain.rnaseq -2.20e+00 0.000560 0 6:28018353-6:28917525
8872 6 28393286 28411279 ZSCAN23 cmc.brain.rnaseq_splicing 2.89e+00 0.000832 0 6:28018353-6:28917525
12883 6 28234788 28245974 RP5-874C20.3 psychencode 4.23e+00 0.000619 0 6:28018353-6:28917525
8823 6 27840926 27841289 HIST1H4L ntr.blood.rnaarr 5.29e+00 0.003760 0 6:28018353-6:28917525
8798 6 28092338 28097860 ZSCAN16 yfs.blood.rnaarr -5.56e+00 0.086800 1 6:28018353-6:28917525
8941 6 28249313 28270326 PGBD1 cmc.brain.rnaseq -1.86e-01 0.000330 0 6:28018353-6:28917525
8948 6 28616063 28616843 LINC00533 brain_cerebellar_hemisphere 5.50e-01 0.000279 0 6:28018353-6:28917525
8820 6 28393286 28411279 ZSCAN23 cmc.brain.rnaseq_splicing -4.16e+00 0.004470 0 6:28018353-6:28917525
8939 6 28083406 28084329 RP1-265C24.5 brain_amygdala 3.54e+00 0.000350 0 6:28018353-6:28917525
13031 6 28083406 28084329 RP1-265C24.5 psychencode 3.99e+00 0.000531 0 6:28018353-6:28917525
8877 6 28083406 28084329 RP1-265C24.5 brain_caudate_basal_ganglia 3.15e+00 0.000769 0 6:28018353-6:28917525
13425 6 28104627 28107456 RP1-265C24.8 psychencode -4.20e+00 0.006620 0 6:28018353-6:28917525
8940 6 28155828 28157210 ZNF192P2 brain_nucleus_accumbens_basal_ganglia 6.99e-01 0.000332 0 6:28018353-6:28917525
8844 6 28155828 28157210 ZNF192P2 brain_cortex 3.64e+00 0.001410 0 6:28018353-6:28917525
8814 6 28083406 28084329 RP1-265C24.5 brain_hippocampus 5.33e+00 0.008010 1 6:28018353-6:28917525
8867 6 28155828 28157210 ZNF192P2 brain_anterior_cingulate_cortex_ba24 3.65e+00 0.000860 0 6:28018353-6:28917525
12845 6 28227098 28228736 NKAPL psychencode 4.71e+00 0.021200 1 6:28018353-6:28917525
8808 6 28393286 28411279 ZSCAN23 cmc.brain.rnaseq_splicing 4.25e+00 0.023100 1 6:28018353-6:28917525
8824 6 28092386 28097856 ZSCAN16 cmc.brain.rnaseq 2.78e+00 0.003720 0 6:28018353-6:28917525
8904 6 28083406 28084329 RP1-265C24.5 brain_hypothalamus 4.27e+00 0.000559 0 6:28018353-6:28917525
8802 6 28317691 28336947 ZKSCAN3 thyroid 5.63e+00 0.037600 1 6:28018353-6:28917525
8856 6 28083406 28084329 RP1-265C24.5 pituitary 3.45e+00 0.001070 0 6:28018353-6:28917525
12848 6 28317691 28336947 ZKSCAN3 psychencode 3.38e+00 0.000518 0 6:28018353-6:28917525
8855 6 28292470 28324048 ZSCAN31 brain_nucleus_accumbens_basal_ganglia -3.87e+00 0.001080 0 6:28018353-6:28917525
8821 6 28317691 28336947 ZKSCAN3 brain_hippocampus 4.97e+00 0.004190 0 6:28018353-6:28917525
8891 6 28292470 28324048 ZSCAN31 brain_hippocampus -3.77e+00 0.000653 0 6:28018353-6:28917525
12917 6 27840926 27841289 HIST1H4L psychencode 6.22e+00 0.328000 1 6:28018353-6:28917525
12246 6 28192664 28201260 ZSCAN9 psychencode -3.50e+00 0.131000 1 6:28018353-6:28917525
8832 6 28317691 28336947 ZKSCAN3 brain_cerebellar_hemisphere 2.88e+00 0.002100 0 6:28018353-6:28917525
8868 6 28292470 28324048 ZSCAN31 thyroid -4.27e+00 0.000854 0 6:28018353-6:28917525
13035 6 28058932 28061442 ZSCAN12P1 psychencode 5.09e+00 0.302000 1 6:28018353-6:28917525
8839 6 28129559 28137372 ZNF192P1 brain_hippocampus -2.69e+00 0.001670 0 6:28018353-6:28917525
8873 6 28129559 28137372 ZNF192P1 brain_nucleus_accumbens_basal_ganglia -3.25e+00 0.000832 0 6:28018353-6:28917525
8951 6 28870778 28892296 TRIM27 ntr.blood.rnaarr -7.73e-01 0.000223 0 6:28018353-6:28917525
8799 6 28399707 28411279 ZSCAN23 brain_hypothalamus -5.77e+00 0.067400 1 6:28018353-6:28917525
8898 6 28155828 28157210 ZNF192P2 brain_frontal_cortex_ba9 3.33e+00 0.000599 0 6:28018353-6:28917525
8812 6 28287437 28287629 RP5-874C20.6 brain_cerebellar_hemisphere 3.65e+00 0.009230 1 6:28018353-6:28917525
8810 6 28399707 28411279 ZSCAN23 pituitary -4.88e+00 0.017000 1 6:28018353-6:28917525
13069 6 28129559 28137372 ZNF192P1 psychencode -3.33e+00 0.001090 0 6:28018353-6:28917525
8892 6 28083406 28084329 RP1-265C24.5 thyroid 3.63e+00 0.000637 0 6:28018353-6:28917525
13022 6 28143966 28144452 AL022393.7 psychencode -3.40e+00 0.001700 0 6:28018353-6:28917525
8920 6 28317691 28336947 ZKSCAN3 yfs.blood.rnaarr -1.38e+00 0.000471 0 6:28018353-6:28917525
8945 6 28870779 28891766 TRIM27 yfs.blood.rnaarr -1.86e+00 0.000295 0 6:28018353-6:28917525
8846 6 28292470 28324048 ZSCAN31 brain_cortex -3.88e+00 0.001380 0 6:28018353-6:28917525
8870 6 27704779 27706273 RP1-97D16.1 brain_cerebellar_hemisphere 4.59e+00 0.000844 0 6:28018353-6:28917525
8949 6 28870779 28891766 TRIM27 whole_blood -1.34e+00 0.000273 0 6:28018353-6:28917525
8811 6 28399707 28411279 ZSCAN23 brain_putamen_basal_ganglia -5.13e+00 0.011300 1 6:28018353-6:28917525
8935 6 28399707 28411279 ZSCAN23 brain_substantia_nigra -2.97e+00 0.000396 0 6:28018353-6:28917525
8851 6 28317691 28336947 ZKSCAN3 pituitary 4.55e+00 0.001170 0 6:28018353-6:28917525
8797 6 28249314 28270326 PGBD1 brain_cerebellar_hemisphere -6.05e+00 0.141000 1 6:28018353-6:28917525
8902 6 27704779 27706273 RP1-97D16.1 brain_cerebellum 3.84e+00 0.000579 0 6:28018353-6:28917525
8863 6 28083406 28084329 RP1-265C24.5 brain_cerebellum 4.47e+00 0.000905 0 6:28018353-6:28917525
8888 6 28129559 28137372 ZNF192P1 brain_cerebellum -4.39e+00 0.000665 0 6:28018353-6:28917525
8813 6 28317691 28336947 ZKSCAN3 brain_cerebellum 4.31e+00 0.008650 1 6:28018353-6:28917525
8834 6 28399707 28411279 ZSCAN23 adrenal_gland -3.49e+00 0.002030 0 6:28018353-6:28917525
12958 6 28870779 28891766 TRIM27 psychencode 4.02e+00 0.000592 0 6:28018353-6:28917525
8927 6 28292470 28324048 ZSCAN31 brain_anterior_cingulate_cortex_ba24 -3.17e+00 0.000449 0 6:28018353-6:28917525
8818 6 28129559 28137372 ZNF192P1 brain_cortex -2.84e+00 0.004800 0 6:28018353-6:28917525
13027 6 28155828 28157210 ZNF192P2 psychencode 6.64e-01 0.025800 1 6:28018353-6:28917525
8936 6 28129559 28137372 ZNF192P1 adrenal_gland 3.46e+00 0.000393 0 6:28018353-6:28917525
12768 6 27805658 27806117 HIST1H2AK psychencode -5.88e-01 0.000900 0 6:28018353-6:28917525
8881 6 28109688 28127250 ZKSCAN8 brain_cerebellum 4.58e+00 0.000726 0 6:28018353-6:28917525
8859 6 28399707 28411279 ZSCAN23 brain_hippocampus -3.36e+00 0.000940 0 6:28018353-6:28917525
8815 6 28048909 28057341 ZNF165 brain_caudate_basal_ganglia -2.21e+00 0.007810 1 6:28018353-6:28917525
13024 6 27704779 27706273 RP1-97D16.1 psychencode 1.66e+00 0.000599 0 6:28018353-6:28917525
8861 6 28399707 28411279 ZSCAN23 brain_frontal_cortex_ba9 -3.30e+00 0.000909 0 6:28018353-6:28917525
8886 6 28399707 28411279 ZSCAN23 brain_cerebellar_hemisphere -3.51e+00 0.000697 0 6:28018353-6:28917525
8908 6 28129559 28137372 ZNF192P1 brain_cerebellar_hemisphere -3.92e+00 0.000547 0 6:28018353-6:28917525
8946 6 28317691 28336947 ZKSCAN3 brain_nucleus_accumbens_basal_ganglia 1.86e+00 0.000290 0 6:28018353-6:28917525
8889 6 28109688 28127250 ZKSCAN8 brain_nucleus_accumbens_basal_ganglia 4.43e+00 0.000664 0 6:28018353-6:28917525
13168 6 28292470 28324048 ZSCAN31 psychencode -2.63e+00 0.000330 0 6:28018353-6:28917525
8916 6 28129559 28137372 ZNF192P1 thyroid 3.87e+00 0.000492 0 6:28018353-6:28917525
8822 6 28292470 28324048 ZSCAN31 brain_amygdala -4.94e+00 0.004060 0 6:28018353-6:28917525
8925 6 28249314 28270326 PGBD1 brain_amygdala 1.61e+00 0.000456 0 6:28018353-6:28917525
8909 6 28129559 28137372 ZNF192P1 brain_caudate_basal_ganglia -3.47e+00 0.000530 0 6:28018353-6:28917525
8896 6 28399707 28411279 ZSCAN23 brain_cerebellum -3.20e+00 0.000605 0 6:28018353-6:28917525
8943 6 28129559 28137372 ZNF192P1 brain_frontal_cortex_ba9 8.34e-01 0.000309 0 6:28018353-6:28917525
8854 6 28234788 28245974 RP5-874C20.3 brain_nucleus_accumbens_basal_ganglia 4.22e+00 0.001110 0 6:28018353-6:28917525
12911 6 28109688 28127250 ZKSCAN8 psychencode -3.83e+00 0.000419 0 6:28018353-6:28917525
8928 6 28399707 28411279 ZSCAN23 thyroid -2.91e+00 0.000429 0 6:28018353-6:28917525
8831 6 28109688 28127250 ZKSCAN8 thyroid -4.46e+00 0.002170 0 6:28018353-6:28917525
8825 6 28058932 28061442 ZSCAN12P1 whole_blood -4.94e+00 0.003590 0 6:28018353-6:28917525
8899 6 28083406 28084329 RP1-265C24.5 brain_nucleus_accumbens_basal_ganglia 3.89e+00 0.000596 0 6:28018353-6:28917525
8918 6 28399707 28411279 ZSCAN23 brain_cortex -3.07e+00 0.000478 0 6:28018353-6:28917525
8897 6 28192664 28201260 ZSCAN9 brain_cerebellum -3.42e+00 0.000599 0 6:28018353-6:28917525
8837 6 28109688 28127250 ZKSCAN8 brain_frontal_cortex_ba9 4.70e+00 0.001720 0 6:28018353-6:28917525
8913 6 28021006 28021943 OR2B8P thyroid -4.10e+00 0.000512 0 6:28018353-6:28917525
13433 6 28945252 28945547 RN7SL471P psychencode 1.35e+00 0.000274 0 6:28018353-6:28917525
8876 6 28109688 28127250 ZKSCAN8 brain_anterior_cingulate_cortex_ba24 3.72e+00 0.000795 0 6:28018353-6:28917525
8819 6 28249314 28270326 PGBD1 thyroid -3.80e+00 0.004580 0 6:28018353-6:28917525
8950 6 28962562 28973093 ZNF311 thyroid -4.16e-01 0.000240 0 6:28018353-6:28917525
8919 6 28399707 28411279 ZSCAN23 brain_caudate_basal_ganglia -3.16e+00 0.000473 0 6:28018353-6:28917525
8921 6 28021006 28021943 OR2B8P pituitary -3.99e+00 0.000470 0 6:28018353-6:28917525
8842 6 28109688 28127250 ZKSCAN8 brain_cortex 4.74e+00 0.001540 0 6:28018353-6:28917525
8847 6 28058932 28061442 ZSCAN12P1 adrenal_gland -2.15e+00 0.001370 0 6:28018353-6:28917525
8997 6 29758807 29760850 HCG4 cmc.brain.rnaseq -1.84e+00 0.001010 0 6:28917832-6:29737971
9087 6 29758816 29760213 HCG4 brain_nucleus_accumbens_basal_ganglia -9.99e-01 0.000343 0 6:28917832-6:29737971
8991 6 29855071 29856045 HCG4P7 whole_blood -2.07e+00 0.001220 0 6:28917832-6:29737971
9056 6 29855071 29856045 HCG4P7 brain_frontal_cortex_ba9 -1.21e+00 0.000429 0 6:28917832-6:29737971
8966 6 29856244 29858259 HLA-H brain_cortex 3.01e+00 0.010400 1 6:28917832-6:29737971
9180 6 29855071 29856045 HCG4P7 pituitary -3.36e-01 0.000234 0 6:28917832-6:29737971
9117 6 29894955 29897009 HLA-K brain_putamen_basal_ganglia -8.15e-01 0.000299 0 6:28917832-6:29737971
9005 6 29758816 29760213 HCG4 brain_cortex -1.72e+00 0.000778 0 6:28917832-6:29737971
8990 6 29894955 29897009 HLA-K brain_amygdala -2.02e+00 0.001240 0 6:28917832-6:29737971
9131 6 29894955 29897009 HLA-K brain_nucleus_accumbens_basal_ganglia -6.55e-01 0.000280 0 6:28917832-6:29737971
9036 6 29758816 29760213 HCG4 brain_caudate_basal_ganglia -1.35e+00 0.000532 0 6:28917832-6:29737971
8992 6 29855071 29856045 HCG4P7 brain_cerebellum -1.85e+00 0.001180 0 6:28917832-6:29737971
8996 6 29856244 29858259 HLA-H brain_hypothalamus 1.89e+00 0.001020 0 6:28917832-6:29737971
9124 6 29893760 29894750 HCG4B thyroid -4.87e-01 0.000290 0 6:28917832-6:29737971
9058 6 30034486 30038042 PPP1R11 thyroid 1.17e+00 0.000417 0 6:28917832-6:29737971
8972 6 29894955 29897009 HLA-K brain_hypothalamus -2.79e+00 0.005810 1 6:28917832-6:29737971
9145 6 29894955 29897009 HLA-K thyroid -4.83e-02 0.000266 0 6:28917832-6:29737971
9122 6 30026676 30032686 ZNRD1 yfs.blood.rnaarr -5.54e-01 0.000292 0 6:28917832-6:29737971
9054 6 29894955 29897009 HLA-K adrenal_gland -5.52e-01 0.000433 0 6:28917832-6:29737971
8952 6 29901878 29902063 HLA-U pituitary 3.55e+00 0.059900 1 6:28917832-6:29737971
8979 6 29856244 29858259 HLA-H thyroid 2.42e+00 0.003190 0 6:28917832-6:29737971
9027 6 29855071 29856045 HCG4P7 brain_cerebellar_hemisphere -1.55e+00 0.000565 0 6:28917832-6:29737971
9151 6 30029418 30032686 ZNRD1 whole_blood -4.50e-02 0.000261 0 6:28917832-6:29737971
9019 6 29758816 29760213 HCG4 thyroid -1.45e+00 0.000617 0 6:28917832-6:29737971
9092 6 29864431 29865563 HLA-T whole_blood 7.90e-02 0.000334 0 6:28917832-6:29737971
8953 6 29901878 29902063 HLA-U brain_frontal_cortex_ba9 3.39e+00 0.058300 1 6:28917832-6:29737971
9169 6 29855071 29856045 HCG4P7 brain_nucleus_accumbens_basal_ganglia -4.88e-01 0.000248 0 6:28917832-6:29737971
9016 6 29856244 29858259 HLA-H whole_blood 1.44e+00 0.000651 0 6:28917832-6:29737971
9065 6 29894955 29897009 HLA-K brain_anterior_cingulate_cortex_ba24 -1.18e+00 0.000389 0 6:28917832-6:29737971
8978 6 29909037 29913661 HLA-A whole_blood -2.27e+00 0.003330 0 6:28917832-6:29737971
9084 6 30029030 30032678 ZNRD1 ntr.blood.rnaarr 1.09e-01 0.000347 0 6:28917832-6:29737971
8987 6 29855071 29856045 HCG4P7 adrenal_gland -2.10e+00 0.001570 0 6:28917832-6:29737971
9175 6 29855071 29856045 HCG4P7 brain_hippocampus -5.49e-01 0.000243 0 6:28917832-6:29737971
9181 6 29864431 29865563 HLA-T brain_cerebellum -1.23e-01 0.000233 0 6:28917832-6:29737971
8963 6 29901878 29902063 HLA-U thyroid 3.03e+00 0.012400 1 6:28917832-6:29737971
9007 6 29894955 29897009 HLA-K whole_blood 1.57e+00 0.000766 0 6:28917832-6:29737971
9153 6 29894955 29897009 HLA-K brain_caudate_basal_ganglia -4.73e-01 0.000260 0 6:28917832-6:29737971
9067 6 29894955 29897009 HLA-K brain_cortex -8.24e-01 0.000385 0 6:28917832-6:29737971
9160 6 29894955 29897009 HLA-K pituitary -5.05e-01 0.000257 0 6:28917832-6:29737971
9001 6 29758816 29760213 HCG4 brain_frontal_cortex_ba9 -1.77e+00 0.000811 0 6:28917832-6:29737971
9051 6 29856244 29858259 HLA-H brain_nucleus_accumbens_basal_ganglia 1.14e+00 0.000452 0 6:28917832-6:29737971
9093 6 29909037 29913661 HLA-A thyroid 1.09e+00 0.000333 0 6:28917832-6:29737971
8993 6 29856244 29858259 HLA-H pituitary 1.97e+00 0.001140 0 6:28917832-6:29737971
8969 6 30029418 30032686 ZNRD1 thyroid -2.91e+00 0.007740 1 6:28917832-6:29737971
9135 6 29968787 30028961 ZNRD1-AS1 cmc.brain.rnaseq_splicing 7.90e-02 0.000278 0 6:28917832-6:29737971
9097 6 29910306 29913648 HLA-A cmc.brain.rnaseq_splicing -8.90e-01 0.000327 0 6:28917832-6:29737971
9138 6 29856244 29858259 HLA-H brain_cerebellum 4.80e-04 0.000269 0 6:28917832-6:29737971
8960 6 29909874 29910844 HCG4P5 whole_blood -3.04e+00 0.018900 1 6:28917832-6:29737971
9002 6 29909874 29910844 HCG4P5 thyroid -1.83e+00 0.000805 0 6:28917832-6:29737971
9004 6 29909037 29913661 HLA-A adrenal_gland -1.68e+00 0.000780 0 6:28917832-6:29737971
9081 6 29909874 29910844 HCG4P5 adrenal_gland -1.08e+00 0.000349 0 6:28917832-6:29737971
8959 6 29938578 29940241 MICD adrenal_gland 3.29e+00 0.021500 1 6:28917832-6:29737971
9032 6 29893760 29894750 HCG4B brain_putamen_basal_ganglia 1.45e+00 0.000538 0 6:28917832-6:29737971
8982 6 29973898 29974893 HCG4P3 brain_putamen_basal_ganglia 2.47e+00 0.002850 0 6:28917832-6:29737971
8971 6 29758816 29760213 HCG4 adrenal_gland -2.81e+00 0.006740 1 6:28917832-6:29737971
9143 6 29856244 29858259 HLA-H brain_cerebellar_hemisphere 5.33e-01 0.000267 0 6:28917832-6:29737971
8962 6 29758731 29765588 HLA-V adrenal_gland -3.14e+00 0.013800 1 6:28917832-6:29737971
9003 6 29758731 29765588 HLA-V brain_nucleus_accumbens_basal_ganglia 1.58e+00 0.000804 0 6:28917832-6:29737971
9041 6 29718506 29718925 IFITM4P pituitary -1.38e+00 0.000512 0 6:28917832-6:29737971
9046 6 29758731 29765588 HLA-V whole_blood -1.28e+00 0.000477 0 6:28917832-6:29737971
9053 6 29718506 29718925 IFITM4P adrenal_gland -1.38e+00 0.000447 0 6:28917832-6:29737971
9127 6 29758731 29765588 HLA-V pituitary 5.50e-01 0.000286 0 6:28917832-6:29737971
9070 6 30038111 30043664 RNF39 brain_cerebellum -1.26e+00 0.000370 0 6:28917832-6:29737971
9028 6 30070674 30080883 TRIM31 thyroid -1.41e+00 0.000553 0 6:28917832-6:29737971
8986 6 29758816 29760213 HCG4 brain_cerebellum -2.07e+00 0.001650 0 6:28917832-6:29737971
9048 6 29893760 29894750 HCG4B pituitary 1.41e+00 0.000472 0 6:28917832-6:29737971
9071 6 29968787 30028961 ZNRD1-AS1 cmc.brain.rnaseq_splicing -7.77e-01 0.000360 0 6:28917832-6:29737971
9006 6 29938578 29940241 MICD whole_blood 1.83e+00 0.000774 0 6:28917832-6:29737971
9080 6 30038111 30043664 RNF39 brain_substantia_nigra 1.08e+00 0.000349 0 6:28917832-6:29737971
9182 6 30119722 30128711 TRIM10 whole_blood -1.21e-01 0.000232 0 6:28917832-6:29737971
9010 6 29909037 29913661 HLA-A yfs.blood.rnaarr -1.65e+00 0.000705 0 6:28917832-6:29737971
9113 6 29975174 29977733 HLA-J brain_caudate_basal_ganglia 9.33e-01 0.000313 0 6:28917832-6:29737971
9000 6 29758816 29760213 HCG4 brain_amygdala -1.78e+00 0.000854 0 6:28917832-6:29737971
9141 6 30034486 30038110 PPP1R11 yfs.blood.rnaarr -8.75e-03 0.000268 0 6:28917832-6:29737971
9107 6 29675902 29676324 ZDHHC20P1 whole_blood -4.37e-01 0.000320 0 6:28917832-6:29737971
9163 6 29894955 29897009 HLA-K brain_frontal_cortex_ba9 -4.20e-01 0.000256 0 6:28917832-6:29737971
9168 6 29894955 29897009 HLA-K brain_cerebellar_hemisphere -3.19e-01 0.000251 0 6:28917832-6:29737971
9082 6 30038042 30043628 RNF39 cmc.brain.rnaseq 6.93e-01 0.000348 0 6:28917832-6:29737971
9030 6 29758816 29760213 HCG4 brain_hippocampus -1.37e+00 0.000543 0 6:28917832-6:29737971
8981 6 29855536 29858857 HLA-H cmc.brain.rnaseq_splicing 2.55e+00 0.003130 0 6:28917832-6:29737971
9125 6 29694446 29694659 RPL23AP1 brain_putamen_basal_ganglia -1.99e-01 0.000289 0 6:28917832-6:29737971
8970 6 29702805 29716770 HLA-F-AS1 thyroid 2.80e+00 0.007250 1 6:28917832-6:29737971
9037 6 29758816 29760213 HCG4 brain_cerebellar_hemisphere -1.48e+00 0.000531 0 6:28917832-6:29737971
9012 6 29702805 29716770 HLA-F-AS1 brain_cerebellar_hemisphere -1.59e+00 0.000694 0 6:28917832-6:29737971
9078 6 29894955 29897009 HLA-K brain_cerebellum -8.44e-01 0.000352 0 6:28917832-6:29737971
9023 6 29702805 29716770 HLA-F-AS1 whole_blood -1.56e+00 0.000597 0 6:28917832-6:29737971
9042 6 29910306 29913648 HLA-A ntr.blood.rnaarr -1.50e+00 0.000507 0 6:28917832-6:29737971
9132 6 29694446 29694659 RPL23AP1 brain_hippocampus 6.06e-01 0.000280 0 6:28917832-6:29737971
9026 6 29702805 29716770 HLA-F-AS1 adrenal_gland 9.83e-01 0.000566 0 6:28917832-6:29737971
9029 6 29702805 29716770 HLA-F-AS1 brain_cerebellum -1.43e+00 0.000550 0 6:28917832-6:29737971
8964 6 29856244 29858259 HLA-H brain_caudate_basal_ganglia 2.95e+00 0.011000 1 6:28917832-6:29737971
9045 6 29702805 29716770 HLA-F-AS1 brain_cortex -1.26e+00 0.000481 0 6:28917832-6:29737971
9061 6 29702805 29716770 HLA-F-AS1 brain_anterior_cingulate_cortex_ba24 -1.19e+00 0.000406 0 6:28917832-6:29737971
8957 6 29968788 30029030 ZNRD1-AS1 adrenal_gland 3.33e+00 0.027700 1 6:28917832-6:29737971
8977 6 30154575 30156391 PAIP1P1 brain_anterior_cingulate_cortex_ba24 -2.58e+00 0.003380 0 6:28917832-6:29737971
9034 6 29973898 29974893 HCG4P3 brain_anterior_cingulate_cortex_ba24 -1.48e+00 0.000533 0 6:28917832-6:29737971
9055 6 29794755 29798913 HLA-G ntr.blood.rnaarr 1.22e+00 0.000433 0 6:28917832-6:29737971
9011 6 29690552 29706305 HLA-F brain_cerebellum -1.66e+00 0.000705 0 6:28917832-6:29737971
8965 6 29640169 29648887 ZFP57 whole_blood 2.87e+00 0.010800 1 6:28917832-6:29737971
9014 6 29690552 29706305 HLA-F brain_cerebellar_hemisphere -1.69e+00 0.000686 0 6:28917832-6:29737971
8958 6 29968788 30029030 ZNRD1-AS1 brain_putamen_basal_ganglia 3.29e+00 0.022000 1 6:28917832-6:29737971
9052 6 30070674 30080883 TRIM31 adrenal_gland -1.23e+00 0.000452 0 6:28917832-6:29737971
9018 6 29690552 29706305 HLA-F brain_nucleus_accumbens_basal_ganglia -1.66e+00 0.000619 0 6:28917832-6:29737971
9020 6 30038111 30043664 RNF39 thyroid -1.15e+00 0.000613 0 6:28917832-6:29737971
8980 6 29968788 30029030 ZNRD1-AS1 pituitary 2.58e+00 0.003190 0 6:28917832-6:29737971
9024 6 29640169 29648887 ZFP57 pituitary 1.52e+00 0.000579 0 6:28917832-6:29737971
9157 6 29702805 29716770 HLA-F-AS1 brain_caudate_basal_ganglia 4.98e-01 0.000260 0 6:28917832-6:29737971
9068 6 29758816 29760213 HCG4 pituitary -1.12e+00 0.000380 0 6:28917832-6:29737971
9184 6 30152232 30181204 TRIM26 yfs.blood.rnaarr 4.83e-02 0.000229 0 6:28917832-6:29737971
9165 6 29702805 29716770 HLA-F-AS1 brain_amygdala 1.31e-01 0.000253 0 6:28917832-6:29737971
8984 6 29709508 29713011 MICE brain_putamen_basal_ganglia 2.41e+00 0.002440 0 6:28917832-6:29737971
9035 6 29758816 29760213 HCG4 brain_anterior_cingulate_cortex_ba24 -1.43e+00 0.000532 0 6:28917832-6:29737971
9171 6 29691060 29706234 HLA-F cmc.brain.rnaseq_splicing -1.30e-02 0.000248 0 6:28917832-6:29737971
9022 6 29690552 29706305 HLA-F thyroid 1.57e+00 0.000605 0 6:28917832-6:29737971
9123 6 30073020 30082501 TRIM31-AS1 adrenal_gland -3.58e-01 0.000292 0 6:28917832-6:29737971
9072 6 29910306 29913648 HLA-A cmc.brain.rnaseq_splicing -1.00e+00 0.000358 0 6:28917832-6:29737971
9076 6 29758816 29760213 HCG4 brain_hypothalamus -1.04e+00 0.000355 0 6:28917832-6:29737971
9177 6 29973898 29974893 HCG4P3 brain_frontal_cortex_ba9 1.15e-01 0.000240 0 6:28917832-6:29737971
9073 6 29640169 29648887 ZFP57 adrenal_gland 1.10e+00 0.000357 0 6:28917832-6:29737971
8989 6 29709508 29713011 MICE whole_blood 1.87e+00 0.001380 0 6:28917832-6:29737971
9013 6 29968788 30029030 ZNRD1-AS1 brain_anterior_cingulate_cortex_ba24 1.78e+00 0.000686 0 6:28917832-6:29737971
9154 6 29624758 29640149 MOG whole_blood -5.54e-01 0.000260 0 6:28917832-6:29737971
9057 6 29709508 29713011 MICE brain_hippocampus -1.30e+00 0.000426 0 6:28917832-6:29737971
9155 6 29909037 29913661 HLA-A pituitary 1.49e-01 0.000260 0 6:28917832-6:29737971
8974 6 30152229 30181232 TRIM26 cmc.brain.rnaseq_splicing 2.64e+00 0.004300 1 6:28917832-6:29737971
9039 6 29968788 30029030 ZNRD1-AS1 thyroid 1.58e+00 0.000522 0 6:28917832-6:29737971
9066 6 29758731 29765588 HLA-V brain_cerebellum -1.13e+00 0.000385 0 6:28917832-6:29737971
9043 6 29690778 29691716 HCG4P11 whole_blood 1.26e+00 0.000491 0 6:28917832-6:29737971
9085 6 29968788 30029030 ZNRD1-AS1 brain_cortex -1.42e-01 0.000346 0 6:28917832-6:29737971
9142 6 29909037 29913661 HLA-A brain_cerebellum -5.75e-01 0.000267 0 6:28917832-6:29737971
9069 6 29855071 29856045 HCG4P7 thyroid -9.60e-01 0.000374 0 6:28917832-6:29737971
9149 6 29893760 29894750 HCG4B brain_cerebellar_hemisphere 5.47e-01 0.000262 0 6:28917832-6:29737971
9102 6 29968788 30029030 ZNRD1-AS1 brain_cerebellar_hemisphere 7.78e-01 0.000323 0 6:28917832-6:29737971
9103 6 29709508 29713011 MICE brain_caudate_basal_ganglia 5.21e-01 0.000322 0 6:28917832-6:29737971
8994 6 29709508 29713011 MICE brain_cerebellar_hemisphere -1.96e+00 0.001090 0 6:28917832-6:29737971
8968 6 29901878 29902063 HLA-U whole_blood 2.89e+00 0.009060 1 6:28917832-6:29737971
9108 6 29968788 30029030 ZNRD1-AS1 brain_amygdala 5.74e-01 0.000318 0 6:28917832-6:29737971
9090 6 29973898 29974893 HCG4P3 brain_caudate_basal_ganglia 1.08e+00 0.000336 0 6:28917832-6:29737971
9109 6 30038111 30043664 RNF39 brain_cortex -5.73e-01 0.000315 0 6:28917832-6:29737971
9025 6 30070674 30080883 TRIM31 brain_cerebellar_hemisphere -1.64e+00 0.000578 0 6:28917832-6:29737971
8976 6 29901878 29902063 HLA-U brain_cortex 2.59e+00 0.003630 0 6:28917832-6:29737971
9091 6 29975174 29977733 HLA-J adrenal_gland -3.12e-03 0.000334 0 6:28917832-6:29737971
9158 6 29709508 29713011 MICE pituitary -1.93e-02 0.000259 0 6:28917832-6:29737971
9086 6 29968787 30028961 ZNRD1-AS1 cmc.brain.rnaseq_splicing 9.07e-01 0.000344 0 6:28917832-6:29737971
9137 6 29975174 29977733 HLA-J brain_putamen_basal_ganglia 7.57e-01 0.000274 0 6:28917832-6:29737971
9009 6 29694446 29694659 RPL23AP1 brain_cerebellar_hemisphere -1.55e+00 0.000722 0 6:28917832-6:29737971
9173 6 30152229 30181232 TRIM26 cmc.brain.rnaseq_splicing -2.57e-01 0.000246 0 6:28917832-6:29737971
9033 6 29694446 29694659 RPL23AP1 thyroid 1.50e+00 0.000535 0 6:28917832-6:29737971
9050 6 29694446 29694659 RPL23AP1 brain_nucleus_accumbens_basal_ganglia -1.25e+00 0.000456 0 6:28917832-6:29737971
9121 6 29758731 29765588 HLA-V thyroid -3.88e-01 0.000293 0 6:28917832-6:29737971
9146 6 29694446 29694659 RPL23AP1 whole_blood -9.16e-02 0.000265 0 6:28917832-6:29737971
9060 6 29694446 29694659 RPL23AP1 brain_cerebellum -3.98e-01 0.000406 0 6:28917832-6:29737971
9144 6 29691060 29706234 HLA-F cmc.brain.rnaseq_splicing 5.51e-01 0.000266 0 6:28917832-6:29737971
9167 6 29694446 29694659 RPL23AP1 brain_frontal_cortex_ba9 -1.32e-01 0.000252 0 6:28917832-6:29737971
8954 6 28962562 28973093 ZNF311 thyroid -3.03e+00 0.044900 1 6:28917832-6:29737971
9099 6 29758731 29765588 HLA-V brain_caudate_basal_ganglia 7.53e-01 0.000325 0 6:28917832-6:29737971
9130 6 29968788 30029030 ZNRD1-AS1 brain_nucleus_accumbens_basal_ganglia 3.87e-01 0.000280 0 6:28917832-6:29737971
9077 6 29942889 29946183 HCG9 adrenal_gland -2.66e-01 0.000352 0 6:28917832-6:29737971
9110 6 29694446 29694659 RPL23AP1 brain_substantia_nigra 8.88e-01 0.000315 0 6:28917832-6:29737971
9100 6 29855536 29858857 HLA-H cmc.brain.rnaseq_splicing 8.21e-01 0.000324 0 6:28917832-6:29737971
9139 6 30029418 30032686 ZNRD1 pituitary -4.30e-01 0.000268 0 6:28917832-6:29737971
9008 6 29691060 29706234 HLA-F ntr.blood.rnaarr -1.78e+00 0.000733 0 6:28917832-6:29737971
9075 6 29758731 29765588 HLA-V brain_putamen_basal_ganglia 8.14e-01 0.000356 0 6:28917832-6:29737971
8973 6 30457182 30461982 HLA-E cmc.brain.rnaseq_splicing 2.71e+00 0.005000 1 6:28917832-6:29737971
9104 6 29694446 29694659 RPL23AP1 brain_caudate_basal_ganglia -7.54e-01 0.000322 0 6:28917832-6:29737971
9038 6 29690552 29706305 HLA-F yfs.blood.rnaarr -1.50e+00 0.000524 0 6:28917832-6:29737971
9118 6 29942889 29946183 HCG9 whole_blood -1.34e-01 0.000298 0 6:28917832-6:29737971
9128 6 29942889 29946183 HCG9 thyroid 7.83e-02 0.000285 0 6:28917832-6:29737971
9111 6 29690552 29706305 HLA-F whole_blood -8.82e-01 0.000314 0 6:28917832-6:29737971
9049 6 29709508 29713011 MICE thyroid 9.55e-01 0.000468 0 6:28917832-6:29737971
9140 6 29968788 30029030 ZNRD1-AS1 brain_frontal_cortex_ba9 4.59e-01 0.000268 0 6:28917832-6:29737971
9148 6 29523406 29601753 GABBR1 yfs.blood.rnaarr -4.25e-01 0.000262 0 6:28917832-6:29737971
9079 6 29975174 29977733 HLA-J brain_nucleus_accumbens_basal_ganglia 9.73e-01 0.000351 0 6:28917832-6:29737971
9178 6 29690552 29706305 HLA-F adrenal_gland 3.48e-01 0.000239 0 6:28917832-6:29737971
9159 6 29555683 29556745 OR2H2 brain_anterior_cingulate_cortex_ba24 -5.18e-01 0.000257 0 6:28917832-6:29737971
9126 6 29973898 29974893 HCG4P3 brain_amygdala 3.14e-01 0.000286 0 6:28917832-6:29737971
8975 6 30038111 30043664 RNF39 brain_cerebellar_hemisphere -2.64e+00 0.004150 1 6:28917832-6:29737971
9105 6 29694446 29694659 RPL23AP1 brain_amygdala 9.19e-01 0.000321 0 6:28917832-6:29737971
9015 6 29901878 29902063 HLA-U adrenal_gland 1.59e+00 0.000655 0 6:28917832-6:29737971
9120 6 30038111 30043664 RNF39 brain_nucleus_accumbens_basal_ganglia 5.62e-01 0.000294 0 6:28917832-6:29737971
9129 6 29758731 29765588 HLA-V brain_cerebellar_hemisphere -6.10e-01 0.000284 0 6:28917832-6:29737971
9059 6 29718506 29718925 IFITM4P whole_blood 9.78e-01 0.000416 0 6:28917832-6:29737971
9112 6 29570005 29601753 GABBR1 whole_blood 8.60e-01 0.000314 0 6:28917832-6:29737971
9183 6 29702805 29716770 HLA-F-AS1 pituitary -5.05e-02 0.000232 0 6:28917832-6:29737971
9106 6 29694446 29694659 RPL23AP1 adrenal_gland 1.02e+00 0.000321 0 6:28917832-6:29737971
9133 6 29640168 29644931 ZFP57 ntr.blood.rnaarr -4.77e-01 0.000279 0 6:28917832-6:29737971
8983 6 29894955 29897009 HLA-K brain_substantia_nigra -2.37e+00 0.002460 0 6:28917832-6:29737971
9116 6 29960986 29961382 DDX39BP2 whole_blood 3.03e-01 0.000299 0 6:28917832-6:29737971
9021 6 29709508 29713011 MICE brain_cerebellum -1.56e+00 0.000606 0 6:28917832-6:29737971
9094 6 29975174 29977733 HLA-J brain_amygdala -7.63e-01 0.000331 0 6:28917832-6:29737971
9098 6 29894955 29897009 HLA-K brain_hippocampus -9.41e-01 0.000326 0 6:28917832-6:29737971
9096 6 29973898 29974893 HCG4P3 thyroid -1.02e+00 0.000329 0 6:28917832-6:29737971
9095 6 29975174 29977733 HLA-J brain_cerebellum -5.77e-01 0.000329 0 6:28917832-6:29737971
8998 6 30038111 30043664 RNF39 brain_hippocampus 1.96e+00 0.000983 0 6:28917832-6:29737971
9179 6 29975174 29977733 HLA-J brain_hippocampus 4.80e-01 0.000239 0 6:28917832-6:29737971
8955 6 28870779 28891766 TRIM27 yfs.blood.rnaarr -3.03e+00 0.044900 1 6:28917832-6:29737971
9150 6 29968788 30029030 ZNRD1-AS1 brain_caudate_basal_ganglia 5.25e-01 0.000262 0 6:28917832-6:29737971
8956 6 28870779 28891766 TRIM27 whole_blood -3.03e+00 0.044900 1 6:28917832-6:29737971
9156 6 29968788 30029030 ZNRD1-AS1 brain_hypothalamus 3.91e-01 0.000260 0 6:28917832-6:29737971
9017 6 29794744 29798902 HLA-G thyroid 1.59e+00 0.000642 0 6:28917832-6:29737971
9040 6 29709508 29713011 MICE adrenal_gland 9.12e-01 0.000522 0 6:28917832-6:29737971
9062 6 29718506 29718925 IFITM4P brain_hippocampus -1.05e+00 0.000405 0 6:28917832-6:29737971
9119 6 29718506 29718925 IFITM4P thyroid -7.53e-01 0.000298 0 6:28917832-6:29737971
8999 6 29924373 29926347 HLA-W brain_nucleus_accumbens_basal_ganglia 1.72e+00 0.000939 0 6:28917832-6:29737971
9134 6 29973898 29974893 HCG4P3 adrenal_gland 2.99e-01 0.000279 0 6:28917832-6:29737971
9162 6 29968788 30029030 ZNRD1-AS1 brain_cerebellum 3.68e-01 0.000256 0 6:28917832-6:29737971
9152 6 29709508 29713011 MICE brain_amygdala -1.07e-01 0.000260 0 6:28917832-6:29737971
9164 6 29975174 29977733 HLA-J pituitary -1.65e-01 0.000254 0 6:28917832-6:29737971
9047 6 29924373 29926347 HLA-W thyroid 1.14e+00 0.000476 0 6:28917832-6:29737971
9161 6 29973898 29974893 HCG4P3 brain_hippocampus -3.60e-01 0.000256 0 6:28917832-6:29737971
8961 6 29856244 29858259 HLA-H brain_putamen_basal_ganglia 3.05e+00 0.016100 1 6:28917832-6:29737971
9064 6 29901878 29902063 HLA-U brain_caudate_basal_ganglia 1.19e+00 0.000400 0 6:28917832-6:29737971
8988 6 29718506 29718925 IFITM4P brain_nucleus_accumbens_basal_ganglia -2.23e+00 0.001510 0 6:28917832-6:29737971
9166 6 29893760 29894750 HCG4B brain_cerebellum 3.42e-01 0.000253 0 6:28917832-6:29737971
9089 6 29975174 29977733 HLA-J brain_cerebellar_hemisphere 9.49e-01 0.000337 0 6:28917832-6:29737971
9147 6 29973898 29974893 HCG4P3 brain_cortex -5.83e-01 0.000263 0 6:28917832-6:29737971
8985 6 29975174 29977733 HLA-J thyroid -2.23e+00 0.001840 0 6:28917832-6:29737971
9044 6 29709508 29713011 MICE brain_nucleus_accumbens_basal_ganglia -1.43e+00 0.000491 0 6:28917832-6:29737971
9115 6 29973898 29974893 HCG4P3 brain_substantia_nigra 7.96e-01 0.000301 0 6:28917832-6:29737971
9083 6 29640169 29648887 ZFP57 thyroid 1.07e+00 0.000348 0 6:28917832-6:29737971
9101 6 29975174 29977733 HLA-J whole_blood -2.35e-01 0.000324 0 6:28917832-6:29737971
9088 6 29975174 29977733 HLA-J brain_hypothalamus 7.37e-01 0.000341 0 6:28917832-6:29737971
9031 6 29718506 29718925 IFITM4P brain_cerebellar_hemisphere -1.37e+00 0.000539 0 6:28917832-6:29737971
9170 6 29973898 29974893 HCG4P3 whole_blood 1.22e-01 0.000248 0 6:28917832-6:29737971
9172 6 29973898 29974893 HCG4P3 brain_cerebellum -2.05e-02 0.000247 0 6:28917832-6:29737971
9136 6 29924373 29926347 HLA-W brain_cortex 3.64e-01 0.000275 0 6:28917832-6:29737971
9174 6 29924373 29926347 HLA-W brain_putamen_basal_ganglia 5.35e-02 0.000243 0 6:28917832-6:29737971
9176 6 29975174 29977733 HLA-J brain_frontal_cortex_ba9 4.09e-01 0.000242 0 6:28917832-6:29737971
9114 6 29973898 29974893 HCG4P3 brain_nucleus_accumbens_basal_ganglia 5.95e-01 0.000308 0 6:28917832-6:29737971
9063 6 29975174 29977733 HLA-J brain_substantia_nigra 1.21e+00 0.000402 0 6:28917832-6:29737971
9074 6 29975174 29977733 HLA-J brain_anterior_cingulate_cortex_ba24 1.15e+00 0.000357 0 6:28917832-6:29737971
8967 6 29570005 29601753 GABBR1 brain_frontal_cortex_ba9 -2.86e+00 0.009240 1 6:28917832-6:29737971
8995 6 29924373 29926347 HLA-W brain_cerebellum -1.88e+00 0.001060 0 6:28917832-6:29737971
9333 6 29758731 29765588 HLA-V brain_caudate_basal_ganglia -1.19e+00 0.000347 0 6:29737971-6:30798168
9260 6 29758816 29760213 HCG4 brain_hypothalamus 1.19e+00 0.000347 0 6:29737971-6:30798168
9226 6 29975174 29977733 HLA-J brain_anterior_cingulate_cortex_ba24 1.19e+00 0.000347 0 6:29737971-6:30798168
9256 6 29758731 29765588 HLA-V pituitary -1.19e+00 0.000347 0 6:29737971-6:30798168
9259 6 29758816 29760213 HCG4 brain_amygdala 1.19e+00 0.000347 0 6:29737971-6:30798168
9308 6 29893760 29894750 HCG4B pituitary -1.19e+00 0.000347 0 6:29737971-6:30798168
9257 6 29758731 29765588 HLA-V brain_nucleus_accumbens_basal_ganglia -1.19e+00 0.000347 0 6:29737971-6:30798168
9300 6 29855071 29856045 HCG4P7 brain_nucleus_accumbens_basal_ganglia -1.19e+00 0.000347 0 6:29737971-6:30798168
9287 6 29893760 29894750 HCG4B thyroid -1.19e+00 0.000347 0 6:29737971-6:30798168
9205 6 29975174 29977733 HLA-J brain_nucleus_accumbens_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9227 6 29975174 29977733 HLA-J brain_cerebellar_hemisphere 1.19e+00 0.000347 0 6:29737971-6:30798168
9338 6 29758731 29765588 HLA-V brain_cerebellum 1.19e+00 0.000347 0 6:29737971-6:30798168
9288 6 29864431 29865563 HLA-T whole_blood 1.19e+00 0.000347 0 6:29737971-6:30798168
9305 6 29794755 29798913 HLA-G ntr.blood.rnaarr -1.19e+00 0.000347 0 6:29737971-6:30798168
9296 6 29855071 29856045 HCG4P7 brain_cerebellar_hemisphere -1.19e+00 0.000347 0 6:29737971-6:30798168
9220 6 30026676 30032686 ZNRD1 yfs.blood.rnaarr 1.19e+00 0.000347 0 6:29737971-6:30798168
9320 6 29758816 29760213 HCG4 thyroid 1.19e+00 0.000347 0 6:29737971-6:30798168
9321 6 29758816 29760213 HCG4 brain_nucleus_accumbens_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9301 6 29855071 29856045 HCG4P7 adrenal_gland -1.19e+00 0.000347 0 6:29737971-6:30798168
9307 6 29893760 29894750 HCG4B brain_cerebellum -1.19e+00 0.000347 0 6:29737971-6:30798168
9330 6 29758731 29765588 HLA-V brain_cerebellar_hemisphere 1.19e+00 0.000347 0 6:29737971-6:30798168
9252 6 29758816 29760213 HCG4 pituitary 1.19e+00 0.000347 0 6:29737971-6:30798168
9272 6 29909037 29913661 HLA-A adrenal_gland 1.19e+00 0.000347 0 6:29737971-6:30798168
9208 6 30034486 30038110 PPP1R11 yfs.blood.rnaarr 1.19e+00 0.000347 0 6:29737971-6:30798168
9332 6 29758731 29765588 HLA-V brain_putamen_basal_ganglia -1.19e+00 0.000347 0 6:29737971-6:30798168
9318 6 29901878 29902063 HLA-U whole_blood 1.19e+00 0.000347 0 6:29737971-6:30798168
9238 6 29924373 29926347 HLA-W brain_putamen_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9304 6 29855071 29856045 HCG4P7 thyroid -1.19e+00 0.000347 0 6:29737971-6:30798168
9262 6 29758816 29760213 HCG4 adrenal_gland 1.19e+00 0.000347 0 6:29737971-6:30798168
9222 6 30029418 30032686 ZNRD1 pituitary 1.19e+00 0.000347 0 6:29737971-6:30798168
9258 6 29758807 29760850 HCG4 cmc.brain.rnaseq 1.19e+00 0.000347 0 6:29737971-6:30798168
9312 6 29909037 29913661 HLA-A whole_blood 1.19e+00 0.000347 0 6:29737971-6:30798168
9194 6 29968788 30029030 ZNRD1-AS1 adrenal_gland 1.19e+00 0.000347 0 6:29737971-6:30798168
9298 6 29855071 29856045 HCG4P7 brain_hippocampus -1.19e+00 0.000347 0 6:29737971-6:30798168
9343 6 29856244 29858259 HLA-H brain_cerebellar_hemisphere 1.19e+00 0.000347 0 6:29737971-6:30798168
9313 6 29909037 29913661 HLA-A yfs.blood.rnaarr -1.19e+00 0.000347 0 6:29737971-6:30798168
9329 6 29909037 29913661 HLA-A brain_cerebellum 1.19e+00 0.000347 0 6:29737971-6:30798168
9239 6 29924373 29926347 HLA-W brain_cortex 1.19e+00 0.000347 0 6:29737971-6:30798168
9311 6 29909037 29913661 HLA-A thyroid -1.19e+00 0.000347 0 6:29737971-6:30798168
9202 6 29968788 30029030 ZNRD1-AS1 brain_nucleus_accumbens_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9303 6 29855071 29856045 HCG4P7 pituitary -1.19e+00 0.000347 0 6:29737971-6:30798168
9331 6 29909037 29913661 HLA-A pituitary 1.19e+00 0.000347 0 6:29737971-6:30798168
9200 6 29968788 30029030 ZNRD1-AS1 brain_cerebellum 1.19e+00 0.000347 0 6:29737971-6:30798168
9203 6 29968787 30028961 ZNRD1-AS1 cmc.brain.rnaseq_splicing 1.19e+00 0.000347 0 6:29737971-6:30798168
9306 6 29794744 29798902 HLA-G thyroid 1.19e+00 0.000347 0 6:29737971-6:30798168
9302 6 29855071 29856045 HCG4P7 whole_blood -1.19e+00 0.000347 0 6:29737971-6:30798168
9322 6 29758816 29760213 HCG4 brain_frontal_cortex_ba9 1.19e+00 0.000347 0 6:29737971-6:30798168
9204 6 29968787 30028961 ZNRD1-AS1 cmc.brain.rnaseq_splicing 1.19e+00 0.000347 0 6:29737971-6:30798168
9265 6 29909874 29910844 HCG4P5 whole_blood 1.19e+00 0.000347 0 6:29737971-6:30798168
9335 6 29718506 29718925 IFITM4P whole_blood 1.19e+00 0.000347 0 6:29737971-6:30798168
9283 6 29909874 29910844 HCG4P5 adrenal_gland -1.19e+00 0.000347 0 6:29737971-6:30798168
9323 6 29758731 29765588 HLA-V adrenal_gland 1.19e+00 0.000347 0 6:29737971-6:30798168
9228 6 30029030 30032678 ZNRD1 ntr.blood.rnaarr 1.19e+00 0.000347 0 6:29737971-6:30798168
9224 6 30070674 30080883 TRIM31 adrenal_gland 1.19e+00 0.000347 0 6:29737971-6:30798168
9223 6 30073020 30082501 TRIM31-AS1 adrenal_gland 1.19e+00 0.000347 0 6:29737971-6:30798168
9213 6 30038111 30043664 RNF39 brain_cerebellum -1.19e+00 0.000347 0 6:29737971-6:30798168
9327 6 29909874 29910844 HCG4P5 thyroid -1.19e+00 0.000347 0 6:29737971-6:30798168
9289 6 29856244 29858259 HLA-H brain_cerebellum 1.19e+00 0.000347 0 6:29737971-6:30798168
9266 6 29758816 29760213 HCG4 brain_anterior_cingulate_cortex_ba24 1.19e+00 0.000347 0 6:29737971-6:30798168
9290 6 29856244 29858259 HLA-H whole_blood 1.19e+00 0.000347 0 6:29737971-6:30798168
9282 6 29694446 29694659 RPL23AP1 adrenal_gland -1.19e+00 0.000347 0 6:29737971-6:30798168
9336 6 29894955 29897009 HLA-K whole_blood 1.19e+00 0.000347 0 6:29737971-6:30798168
9185 6 30154575 30156391 PAIP1P1 brain_anterior_cingulate_cortex_ba24 1.19e+00 0.000347 0 6:29737971-6:30798168
9253 6 29709508 29713011 MICE brain_hippocampus -1.19e+00 0.000347 0 6:29737971-6:30798168
9281 6 29694446 29694659 RPL23AP1 brain_amygdala 1.19e+00 0.000347 0 6:29737971-6:30798168
9324 6 29694446 29694659 RPL23AP1 brain_substantia_nigra -1.19e+00 0.000347 0 6:29737971-6:30798168
9328 6 29694446 29694659 RPL23AP1 brain_cerebellar_hemisphere 1.19e+00 0.000347 0 6:29737971-6:30798168
9291 6 29856244 29858259 HLA-H brain_cortex 1.19e+00 0.000347 0 6:29737971-6:30798168
9197 6 29968788 30029030 ZNRD1-AS1 brain_frontal_cortex_ba9 1.19e+00 0.000347 0 6:29737971-6:30798168
9275 6 29702805 29716770 HLA-F-AS1 brain_anterior_cingulate_cortex_ba24 1.19e+00 0.000347 0 6:29737971-6:30798168
9247 6 29690552 29706305 HLA-F brain_nucleus_accumbens_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9346 6 29968787 30028961 ZNRD1-AS1 cmc.brain.rnaseq_splicing -1.19e+00 0.000345 0 6:29737971-6:30798168
9316 6 29901878 29902063 HLA-U brain_cortex -1.19e+00 0.000347 0 6:29737971-6:30798168
9250 6 29675902 29676324 ZDHHC20P1 whole_blood -1.19e+00 0.000347 0 6:29737971-6:30798168
9242 6 29640169 29648887 ZFP57 whole_blood 1.19e+00 0.000347 0 6:29737971-6:30798168
9279 6 29694446 29694659 RPL23AP1 brain_frontal_cortex_ba9 1.19e+00 0.000347 0 6:29737971-6:30798168
9235 6 29938578 29940241 MICD whole_blood 1.19e+00 0.000347 0 6:29737971-6:30798168
9236 6 29938578 29940241 MICD adrenal_gland 1.19e+00 0.000347 0 6:29737971-6:30798168
9292 6 29856244 29858259 HLA-H brain_hypothalamus 1.19e+00 0.000347 0 6:29737971-6:30798168
9294 6 29856244 29858259 HLA-H thyroid 1.19e+00 0.000347 0 6:29737971-6:30798168
9210 6 30070674 30080883 TRIM31 brain_cerebellar_hemisphere -1.19e+00 0.000347 0 6:29737971-6:30798168
9221 6 29975174 29977733 HLA-J brain_amygdala 1.19e+00 0.000347 0 6:29737971-6:30798168
9214 6 30038111 30043664 RNF39 brain_cortex -1.19e+00 0.000347 0 6:29737971-6:30798168
9325 6 29856244 29858259 HLA-H pituitary 1.19e+00 0.000347 0 6:29737971-6:30798168
9241 6 29640168 29644931 ZFP57 ntr.blood.rnaarr 1.19e+00 0.000347 0 6:29737971-6:30798168
9243 6 29570005 29601753 GABBR1 brain_frontal_cortex_ba9 1.19e+00 0.000347 0 6:29737971-6:30798168
9344 6 29702805 29716770 HLA-F-AS1 thyroid -1.19e+00 0.000347 0 6:29737971-6:30798168
9229 6 29968788 30029030 ZNRD1-AS1 brain_caudate_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9317 6 29901878 29902063 HLA-U brain_caudate_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9285 6 29894955 29897009 HLA-K thyroid 1.19e+00 0.000347 0 6:29737971-6:30798168
9297 6 29894955 29897009 HLA-K brain_hypothalamus -1.19e+00 0.000347 0 6:29737971-6:30798168
9190 6 29973898 29974893 HCG4P3 brain_nucleus_accumbens_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9295 6 29856244 29858259 HLA-H brain_caudate_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9219 6 30029418 30032686 ZNRD1 thyroid 1.19e+00 0.000347 0 6:29737971-6:30798168
9186 6 29968788 30029030 ZNRD1-AS1 thyroid 1.19e+00 0.000347 0 6:29737971-6:30798168
9326 6 29758816 29760213 HCG4 brain_caudate_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9342 6 29702805 29716770 HLA-F-AS1 brain_cerebellum 1.19e+00 0.000347 0 6:29737971-6:30798168
9269 6 29709508 29713011 MICE thyroid -1.19e+00 0.000347 0 6:29737971-6:30798168
9254 6 29718506 29718925 IFITM4P adrenal_gland 1.19e+00 0.000347 0 6:29737971-6:30798168
9201 6 29968788 30029030 ZNRD1-AS1 brain_anterior_cingulate_cortex_ba24 1.19e+00 0.000347 0 6:29737971-6:30798168
9215 6 30038042 30043628 RNF39 cmc.brain.rnaseq -1.19e+00 0.000347 0 6:29737971-6:30798168
9293 6 29856244 29858259 HLA-H brain_nucleus_accumbens_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9284 6 29758816 29760213 HCG4 brain_hippocampus 1.19e+00 0.000347 0 6:29737971-6:30798168
9246 6 29691060 29706234 HLA-F ntr.blood.rnaarr -1.19e+00 0.000347 0 6:29737971-6:30798168
9347 6 29691060 29706234 HLA-F cmc.brain.rnaseq_splicing -1.17e+00 0.000336 0 6:29737971-6:30798168
9299 6 29855071 29856045 HCG4P7 brain_frontal_cortex_ba9 -1.19e+00 0.000347 0 6:29737971-6:30798168
9261 6 29758816 29760213 HCG4 brain_cortex 1.19e+00 0.000347 0 6:29737971-6:30798168
9276 6 29702805 29716770 HLA-F-AS1 adrenal_gland 1.19e+00 0.000347 0 6:29737971-6:30798168
9211 6 30070674 30080883 TRIM31 thyroid 1.19e+00 0.000347 0 6:29737971-6:30798168
9270 6 29709508 29713011 MICE brain_caudate_basal_ganglia -1.19e+00 0.000347 0 6:29737971-6:30798168
9216 6 30038111 30043664 RNF39 brain_nucleus_accumbens_basal_ganglia -1.19e+00 0.000347 0 6:29737971-6:30798168
9340 6 29758816 29760213 HCG4 brain_cerebellum 1.19e+00 0.000347 0 6:29737971-6:30798168
9341 6 29856244 29858259 HLA-H brain_putamen_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9230 6 30034486 30038042 PPP1R11 thyroid -1.19e+00 0.000347 0 6:29737971-6:30798168
9337 6 29758731 29765588 HLA-V thyroid -1.19e+00 0.000347 0 6:29737971-6:30798168
9245 6 29910306 29913648 HLA-A cmc.brain.rnaseq_splicing -1.19e+00 0.000347 0 6:29737971-6:30798168
9309 6 29894955 29897009 HLA-K brain_amygdala -1.19e+00 0.000347 0 6:29737971-6:30798168
9251 6 29624758 29640149 MOG whole_blood 1.19e+00 0.000347 0 6:29737971-6:30798168
9248 6 29690552 29706305 HLA-F brain_cerebellum 1.19e+00 0.000347 0 6:29737971-6:30798168
9234 6 29942889 29946183 HCG9 thyroid -1.19e+00 0.000347 0 6:29737971-6:30798168
9310 6 29894955 29897009 HLA-K brain_cerebellum 1.19e+00 0.000347 0 6:29737971-6:30798168
9192 6 29973898 29974893 HCG4P3 brain_anterior_cingulate_cortex_ba24 1.19e+00 0.000347 0 6:29737971-6:30798168
9274 6 29702805 29716770 HLA-F-AS1 brain_cerebellar_hemisphere 1.19e+00 0.000347 0 6:29737971-6:30798168
9277 6 29702805 29716770 HLA-F-AS1 whole_blood -1.19e+00 0.000347 0 6:29737971-6:30798168
9187 6 29968788 30029030 ZNRD1-AS1 brain_cerebellar_hemisphere 1.19e+00 0.000347 0 6:29737971-6:30798168
9209 6 30152229 30181232 TRIM26 cmc.brain.rnaseq_splicing -1.19e+00 0.000347 0 6:29737971-6:30798168
9280 6 29694446 29694659 RPL23AP1 brain_caudate_basal_ganglia -1.19e+00 0.000347 0 6:29737971-6:30798168
9271 6 29709508 29713011 MICE brain_cerebellum 1.19e+00 0.000347 0 6:29737971-6:30798168
9206 6 29975174 29977733 HLA-J adrenal_gland 1.19e+00 0.000347 0 6:29737971-6:30798168
9255 6 29758731 29765588 HLA-V whole_blood 1.19e+00 0.000347 0 6:29737971-6:30798168
9286 6 29855536 29858857 HLA-H cmc.brain.rnaseq_splicing 1.19e+00 0.000347 0 6:29737971-6:30798168
9278 6 29694446 29694659 RPL23AP1 brain_cerebellum 1.19e+00 0.000347 0 6:29737971-6:30798168
9244 6 29690552 29706305 HLA-F yfs.blood.rnaarr 1.19e+00 0.000347 0 6:29737971-6:30798168
9207 6 29975174 29977733 HLA-J thyroid 1.19e+00 0.000347 0 6:29737971-6:30798168
9263 6 29758816 29760213 HCG4 brain_cerebellar_hemisphere 1.19e+00 0.000347 0 6:29737971-6:30798168
9240 6 29555683 29556745 OR2H2 brain_anterior_cingulate_cortex_ba24 1.19e+00 0.000347 0 6:29737971-6:30798168
9315 6 29894955 29897009 HLA-K adrenal_gland 1.19e+00 0.000347 0 6:29737971-6:30798168
9188 6 29975174 29977733 HLA-J brain_caudate_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9189 6 29975174 29977733 HLA-J brain_cerebellum 1.19e+00 0.000347 0 6:29737971-6:30798168
9212 6 30038111 30043664 RNF39 brain_cerebellar_hemisphere -1.19e+00 0.000347 0 6:29737971-6:30798168
9273 6 29709508 29713011 MICE adrenal_gland 1.19e+00 0.000347 0 6:29737971-6:30798168
9319 6 29894955 29897009 HLA-K brain_anterior_cingulate_cortex_ba24 -1.19e+00 0.000347 0 6:29737971-6:30798168
9195 6 29968788 30029030 ZNRD1-AS1 brain_amygdala 1.19e+00 0.000347 0 6:29737971-6:30798168
9345 6 29910306 29913648 HLA-A cmc.brain.rnaseq_splicing -1.19e+00 0.000346 0 6:29737971-6:30798168
9268 6 29709508 29713011 MICE whole_blood -1.19e+00 0.000347 0 6:29737971-6:30798168
9225 6 29968788 30029030 ZNRD1-AS1 brain_cortex 1.19e+00 0.000347 0 6:29737971-6:30798168
9339 6 29709508 29713011 MICE brain_amygdala -1.19e+00 0.000347 0 6:29737971-6:30798168
9264 6 29709508 29713011 MICE brain_nucleus_accumbens_basal_ganglia -1.19e+00 0.000347 0 6:29737971-6:30798168
9267 6 29709508 29713011 MICE brain_cerebellar_hemisphere 1.19e+00 0.000347 0 6:29737971-6:30798168
9193 6 29973898 29974893 HCG4P3 brain_amygdala 1.19e+00 0.000347 0 6:29737971-6:30798168
9233 6 29960986 29961382 DDX39BP2 whole_blood 1.19e+00 0.000347 0 6:29737971-6:30798168
9198 6 29968788 30029030 ZNRD1-AS1 brain_putamen_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9231 6 29910306 29913648 HLA-A ntr.blood.rnaarr 1.19e+00 0.000347 0 6:29737971-6:30798168
9196 6 29975174 29977733 HLA-J brain_substantia_nigra 1.19e+00 0.000347 0 6:29737971-6:30798168
9334 6 29894955 29897009 HLA-K brain_cortex -1.19e+00 0.000347 0 6:29737971-6:30798168
9314 6 29901878 29902063 HLA-U pituitary -1.19e+00 0.000347 0 6:29737971-6:30798168
9191 6 29973898 29974893 HCG4P3 brain_cerebellum 1.19e+00 0.000347 0 6:29737971-6:30798168
9249 6 29690552 29706305 HLA-F brain_cerebellar_hemisphere 1.19e+00 0.000347 0 6:29737971-6:30798168
9217 6 29975174 29977733 HLA-J whole_blood 1.19e+00 0.000347 0 6:29737971-6:30798168
9218 6 29975174 29977733 HLA-J brain_hypothalamus 1.19e+00 0.000347 0 6:29737971-6:30798168
9232 6 29924373 29926347 HLA-W brain_nucleus_accumbens_basal_ganglia 1.19e+00 0.000347 0 6:29737971-6:30798168
9237 6 29924373 29926347 HLA-W brain_cerebellum 1.19e+00 0.000347 0 6:29737971-6:30798168
9199 6 29968788 30029030 ZNRD1-AS1 brain_hypothalamus 1.19e+00 0.000347 0 6:29737971-6:30798168
9464 6 31745296 31763712 VARS cmc.brain.rnaseq 3.99e+00 0.000425 0 6:30798168-6:31571218
9477 6 31926888 31937532 SKIV2L adrenal_gland -1.15e+00 0.000395 0 6:30798168-6:31571218
9449 6 31926888 31937532 SKIV2L pituitary 4.32e+00 0.000482 0 6:30798168-6:31571218
9627 6 31926888 31937532 SKIV2L brain_anterior_cingulate_cortex_ba24 2.59e+00 0.000234 0 6:30798168-6:31571218
9571 6 31802385 31807541 C6orf48 whole_blood 1.05e+00 0.000278 0 6:30798168-6:31571218
9687 6 31919864 31926856 NELFE thyroid -8.29e-01 0.000213 0 6:30798168-6:31571218
9491 6 31926888 31937532 SKIV2L brain_substantia_nigra 3.23e-01 0.000366 0 6:30798168-6:31571218
9620 6 31926580 31937532 SKIV2L cmc.brain.rnaseq 1.78e+00 0.000238 0 6:30798168-6:31571218
9437 6 31926888 31937532 SKIV2L brain_nucleus_accumbens_basal_ganglia 4.39e+00 0.000542 0 6:30798168-6:31571218
9647 6 31765168 31774761 LSM2 cmc.brain.rnaseq_splicing 7.28e-01 0.000228 0 6:30798168-6:31571218
9732 6 31802385 31807541 C6orf48 adrenal_gland 3.62e-02 0.000195 0 6:30798168-6:31571218
9555 6 31802384 31807541 C6orf48 ntr.blood.rnaarr -1.29e+00 0.000292 0 6:30798168-6:31571218
9390 6 31802385 31807541 C6orf48 thyroid -4.21e+00 0.001360 0 6:30798168-6:31571218
9438 6 31926888 31937532 SKIV2L brain_hippocampus 4.39e+00 0.000541 0 6:30798168-6:31571218
9443 6 31926888 31937532 SKIV2L whole_blood -1.20e+00 0.000522 0 6:30798168-6:31571218
9503 6 31926888 31937532 SKIV2L brain_hypothalamus 4.04e+00 0.000345 0 6:30798168-6:31571218
9405 6 31745295 31763730 VARS brain_substantia_nigra -3.07e+00 0.000878 0 6:30798168-6:31571218
9498 6 31913450 31919861 CFB brain_anterior_cingulate_cortex_ba24 6.18e-01 0.000353 0 6:30798168-6:31571218
9378 6 31982539 32003195 C4B adrenal_gland 1.48e+00 0.002440 1 6:30798168-6:31571218
9615 6 31637944 31641553 LY6G5B thyroid -3.26e+00 0.000241 0 6:30798168-6:31571218
9383 6 31644461 31651817 LY6G5C brain_putamen_basal_ganglia 1.66e+00 0.001710 0 6:30798168-6:31571218
9704 6 31691121 31694491 C6orf25 brain_caudate_basal_ganglia 3.17e-01 0.000205 0 6:30798168-6:31571218
9386 6 31644461 31651817 LY6G5C brain_cerebellum 1.65e+00 0.001480 0 6:30798168-6:31571218
9401 6 31644461 31651817 LY6G5C brain_nucleus_accumbens_basal_ganglia 1.32e+00 0.000933 0 6:30798168-6:31571218
9436 6 31949801 31970458 C4A brain_cerebellum 4.39e+00 0.000543 0 6:30798168-6:31571218
9358 6 31637944 31641553 LY6G5B brain_hypothalamus 2.91e+00 0.007910 1 6:30798168-6:31571218
9363 6 31926888 31937532 SKIV2L brain_cerebellar_hemisphere 2.21e+00 0.004270 1 6:30798168-6:31571218
9457 6 31967753 31971298 C4A-AS1 adrenal_gland 1.20e+00 0.000463 0 6:30798168-6:31571218
9418 6 31606805 31620482 BAG6 cmc.brain.rnaseq_splicing -3.94e+00 0.000713 0 6:30798168-6:31571218
9517 6 31981047 31981564 STK19P brain_hypothalamus -6.81e-01 0.000331 0 6:30798168-6:31571218
9520 6 31644461 31651817 LY6G5C brain_hypothalamus 8.11e-01 0.000324 0 6:30798168-6:31571218
9483 6 31949801 31970458 C4A adrenal_gland 4.80e+00 0.000386 0 6:30798168-6:31571218
9524 6 31606805 31620482 BAG6 brain_amygdala 9.55e-01 0.000318 0 6:30798168-6:31571218
9448 6 31981047 31981564 STK19P brain_anterior_cingulate_cortex_ba24 1.31e+00 0.000483 0 6:30798168-6:31571218
9542 6 31644461 31651817 LY6G5C brain_cerebellar_hemisphere 2.24e+00 0.000300 0 6:30798168-6:31571218
9361 6 31694815 31698357 DDAH2 brain_frontal_cortex_ba9 4.75e+00 0.005450 1 6:30798168-6:31571218
9359 6 31694816 31698039 DDAH2 cmc.brain.rnaseq 5.33e+00 0.005700 1 6:30798168-6:31571218
9625 6 31371356 31383092 MICA brain_cerebellar_hemisphere -1.43e+00 0.000235 0 6:30798168-6:31571218
9470 6 31694815 31698357 DDAH2 whole_blood 8.21e-01 0.000410 0 6:30798168-6:31571218
9352 6 31867384 31869769 ZBTB12 whole_blood 3.69e+00 0.030700 1 6:30798168-6:31571218
9662 6 31982539 32003195 C4B thyroid 8.85e-01 0.000221 0 6:30798168-6:31571218
9509 6 31949801 31970458 C4A pituitary 3.07e+00 0.000337 0 6:30798168-6:31571218
9369 6 31606805 31620482 BAG6 brain_cortex 2.17e+00 0.003700 1 6:30798168-6:31571218
9658 6 31644461 31651817 LY6G5C brain_cortex 1.57e+00 0.000223 0 6:30798168-6:31571218
9737 6 31368479 31445283 HCP5 yfs.blood.rnaarr 8.25e-01 0.000192 0 6:30798168-6:31571218
9415 6 31371356 31383092 MICA brain_hypothalamus -1.26e+00 0.000736 0 6:30798168-6:31571218
9403 6 31553970 31556685 LST1 cmc.brain.rnaseq_splicing 3.32e+00 0.000883 0 6:30798168-6:31571218
9729 6 31362066 31363272 XXbac-BPG181B23.7 brain_cerebellum -4.06e-01 0.000196 0 6:30798168-6:31571218
9665 6 31644461 31651817 LY6G5C thyroid 1.02e+00 0.000221 0 6:30798168-6:31571218
9532 6 31949801 31970458 C4A brain_cortex 2.36e+00 0.000307 0 6:30798168-6:31571218
9736 6 32006042 32009447 CYP21A2 brain_cerebellum -1.91e-01 0.000193 0 6:30798168-6:31571218
9407 6 30695485 30710682 FLOT1 cmc.brain.rnaseq_splicing -5.43e+00 0.000868 0 6:30798168-6:31571218
9388 6 30875961 30881883 GTF2H4 brain_anterior_cingulate_cortex_ba24 2.31e+00 0.001410 0 6:30798168-6:31571218
9348 6 31368479 31445283 HCP5 thyroid 6.75e+00 0.860000 1 6:30798168-6:31571218
9574 6 31553970 31556685 LST1 cmc.brain.rnaseq_splicing 1.66e+00 0.000273 0 6:30798168-6:31571218
9368 6 30844198 30867933 DDR1 thyroid 7.77e-01 0.003890 1 6:30798168-6:31571218
9569 6 30876019 30894236 VARS2 yfs.blood.rnaarr 3.71e+00 0.000279 0 6:30798168-6:31571218
9666 6 31021227 31027667 HCG22 brain_amygdala -1.10e+00 0.000221 0 6:30798168-6:31571218
9695 6 31132119 31148508 POU5F1 brain_hypothalamus 1.23e+00 0.000210 0 6:30798168-6:31571218
9515 6 31165915 31171745 HCG27 brain_cerebellum 6.74e-01 0.000332 0 6:30798168-6:31571218
9442 6 31321649 31324219 HLA-B brain_caudate_basal_ganglia 2.23e+00 0.000522 0 6:30798168-6:31571218
9653 6 31324424 31325414 XXbac-BPG248L24.12 adrenal_gland 2.96e+00 0.000226 0 6:30798168-6:31571218
9413 6 30695486 30710510 FLOT1 brain_cerebellum -5.30e+00 0.000762 0 6:30798168-6:31571218
9414 6 30695486 30710510 FLOT1 pituitary -5.30e+00 0.000753 0 6:30798168-6:31571218
9730 6 31162977 31165814 XXbac-BPG299F13.17 brain_amygdala -8.65e-01 0.000196 0 6:30798168-6:31571218
9560 6 31236526 31239882 HLA-C brain_hippocampus -2.93e+00 0.000286 0 6:30798168-6:31571218
9389 6 31321649 31324219 HLA-B brain_frontal_cortex_ba9 3.20e+00 0.001400 0 6:30798168-6:31571218
9496 6 31321649 31324219 HLA-B brain_nucleus_accumbens_basal_ganglia 2.76e+00 0.000356 0 6:30798168-6:31571218
9685 6 31321649 31324219 HLA-B brain_cerebellum -2.40e+00 0.000214 0 6:30798168-6:31571218
9526 6 31981047 31981564 STK19P brain_nucleus_accumbens_basal_ganglia 9.40e-01 0.000317 0 6:30798168-6:31571218
9537 6 31165915 31171745 HCG27 brain_frontal_cortex_ba9 8.58e-01 0.000302 0 6:30798168-6:31571218
9539 6 31165915 31171745 HCG27 brain_substantia_nigra -6.19e-01 0.000301 0 6:30798168-6:31571218
9519 6 31321649 31324219 HLA-B adrenal_gland 1.48e+00 0.000325 0 6:30798168-6:31571218
9497 6 31324424 31325414 XXbac-BPG248L24.12 thyroid 4.24e+00 0.000356 0 6:30798168-6:31571218
9675 6 31362066 31363272 XXbac-BPG181B23.7 brain_nucleus_accumbens_basal_ganglia -1.31e+00 0.000218 0 6:30798168-6:31571218
9399 6 30881981 30894316 VARS2 cmc.brain.rnaseq_splicing 1.66e+00 0.000971 0 6:30798168-6:31571218
9577 6 31165915 31171745 HCG27 brain_hippocampus 2.36e+00 0.000266 0 6:30798168-6:31571218
9580 6 31362066 31363272 XXbac-BPG181B23.7 brain_caudate_basal_ganglia -1.17e+00 0.000265 0 6:30798168-6:31571218
9734 6 31949801 31970458 C4A brain_cerebellar_hemisphere 6.87e-01 0.000194 0 6:30798168-6:31571218
13511 6 31162977 31165814 XXbac-BPG299F13.17 psychencode -5.47e-01 0.000282 0 6:30798168-6:31571218
9379 6 31255287 31256741 WASF5P pituitary -4.50e+00 0.002330 1 6:30798168-6:31571218
9406 6 31362066 31363272 XXbac-BPG181B23.7 brain_cerebellar_hemisphere -2.10e+00 0.000873 0 6:30798168-6:31571218
9646 6 32006042 32009447 CYP21A2 pituitary 9.05e-02 0.000229 0 6:30798168-6:31571218
9594 6 31165915 31171745 HCG27 brain_cerebellar_hemisphere 4.14e-01 0.000255 0 6:30798168-6:31571218
9440 6 31973466 31976176 CYP21A1P brain_putamen_basal_ganglia -1.23e+00 0.000530 0 6:30798168-6:31571218
9501 6 31165915 31171745 HCG27 brain_nucleus_accumbens_basal_ganglia -7.54e-01 0.000348 0 6:30798168-6:31571218
9490 6 31255287 31256741 WASF5P brain_cerebellar_hemisphere -4.08e+00 0.000369 0 6:30798168-6:31571218
9534 6 31362066 31363272 XXbac-BPG181B23.7 brain_hippocampus -1.29e+00 0.000306 0 6:30798168-6:31571218
9563 6 31949801 31970458 C4A brain_frontal_cortex_ba9 3.47e+00 0.000283 0 6:30798168-6:31571218
9643 6 31165915 31171745 HCG27 thyroid 1.48e+00 0.000229 0 6:30798168-6:31571218
9617 6 31255287 31256741 WASF5P brain_cerebellum -2.46e+00 0.000238 0 6:30798168-6:31571218
9714 6 31982539 32003195 C4B brain_cortex -2.56e-01 0.000202 0 6:30798168-6:31571218
12955 6 31514647 31526606 NFKBIL1 psychencode 5.47e-01 0.000282 0 6:30798168-6:31571218
9623 6 31321649 31324219 HLA-B brain_substantia_nigra 1.63e+00 0.000235 0 6:30798168-6:31571218
9398 6 31637944 31641553 LY6G5B brain_frontal_cortex_ba9 -3.49e+00 0.001040 0 6:30798168-6:31571218
9631 6 31981047 31981564 STK19P brain_putamen_basal_ganglia 1.26e+00 0.000232 0 6:30798168-6:31571218
9425 6 31165537 31171745 HCG27 yfs.blood.rnaarr -1.67e+00 0.000646 0 6:30798168-6:31571218
9404 6 30881981 30894316 VARS2 cmc.brain.rnaseq_splicing 4.41e+00 0.000882 0 6:30798168-6:31571218
9429 6 30881981 30894316 VARS2 cmc.brain.rnaseq_splicing -1.33e+00 0.000601 0 6:30798168-6:31571218
9380 6 31236526 31239882 HLA-C brain_putamen_basal_ganglia -5.50e+00 0.002260 1 6:30798168-6:31571218
9458 6 31362066 31363272 XXbac-BPG181B23.7 brain_cortex 9.32e-01 0.000461 0 6:30798168-6:31571218
9614 6 30710976 30712331 IER3 brain_putamen_basal_ganglia -2.51e+00 0.000242 0 6:30798168-6:31571218
9719 6 30875961 30881883 GTF2H4 thyroid 2.50e-01 0.000199 0 6:30798168-6:31571218
9740 6 31949801 31970458 C4A brain_nucleus_accumbens_basal_ganglia -3.00e-01 0.000190 0 6:30798168-6:31571218
9455 6 30695486 30710510 FLOT1 whole_blood -4.61e+00 0.000468 0 6:30798168-6:31571218
9492 6 31275592 31276326 XXbac-BPG248L24.10 thyroid -4.06e-01 0.000366 0 6:30798168-6:31571218
9654 6 31371356 31383092 MICA brain_putamen_basal_ganglia -1.94e+00 0.000225 0 6:30798168-6:31571218
9452 6 31512239 31514625 ATP6V1G2 brain_nucleus_accumbens_basal_ganglia 2.95e+00 0.000470 0 6:30798168-6:31571218
9507 6 31236526 31239882 HLA-C brain_cerebellar_hemisphere -4.12e+00 0.000340 0 6:30798168-6:31571218
9395 6 31021227 31027667 HCG22 brain_cerebellum 4.81e+00 0.001190 0 6:30798168-6:31571218
9720 6 31162977 31165814 XXbac-BPG299F13.17 whole_blood -1.20e+00 0.000199 0 6:30798168-6:31571218
9603 6 31236526 31239882 HLA-C brain_hypothalamus -3.28e+00 0.000247 0 6:30798168-6:31571218
9485 6 31694815 31698357 DDAH2 brain_cortex -6.28e-01 0.000376 0 6:30798168-6:31571218
9349 6 30881982 30894236 VARS2 whole_blood 6.38e+00 0.089500 1 6:30798168-6:31571218
9590 6 31082527 31107869 PSORS1C1 thyroid 2.01e+00 0.000256 0 6:30798168-6:31571218
9709 6 31371356 31383092 MICA brain_cortex -7.40e-01 0.000203 0 6:30798168-6:31571218
9584 6 31462658 31478901 MICB brain_anterior_cingulate_cortex_ba24 -3.12e+00 0.000262 0 6:30798168-6:31571218
9536 6 31606805 31620482 BAG6 brain_frontal_cortex_ba9 2.03e+00 0.000303 0 6:30798168-6:31571218
9548 6 31321643 31324989 HLA-B cmc.brain.rnaseq_splicing -2.40e+00 0.000297 0 6:30798168-6:31571218
9568 6 31324424 31325414 XXbac-BPG248L24.12 brain_cerebellar_hemisphere -3.76e+00 0.000281 0 6:30798168-6:31571218
9495 6 31362066 31363272 XXbac-BPG181B23.7 pituitary -1.48e+00 0.000358 0 6:30798168-6:31571218
9421 6 31938943 31949228 STK19 whole_blood -2.54e+00 0.000673 0 6:30798168-6:31571218
9630 6 31321643 31324989 HLA-B ntr.blood.rnaarr 2.18e+00 0.000232 0 6:30798168-6:31571218
9540 6 31973466 31976176 CYP21A1P pituitary 2.63e+00 0.000300 0 6:30798168-6:31571218
9624 6 31691121 31694491 C6orf25 brain_nucleus_accumbens_basal_ganglia 7.48e-02 0.000235 0 6:30798168-6:31571218
9364 6 31021227 31027667 HCG22 thyroid 4.04e+00 0.004180 1 6:30798168-6:31571218
9354 6 30881982 30894236 VARS2 brain_cortex 5.95e+00 0.022000 1 6:30798168-6:31571218
9635 6 31162977 31165814 XXbac-BPG299F13.17 brain_frontal_cortex_ba9 -2.19e+00 0.000231 0 6:30798168-6:31571218
9516 6 31362066 31363272 XXbac-BPG181B23.7 brain_substantia_nigra 1.49e+00 0.000331 0 6:30798168-6:31571218
9602 6 31949801 31970458 C4A brain_substantia_nigra -6.02e-01 0.000247 0 6:30798168-6:31571218
9725 6 31162977 31165814 XXbac-BPG299F13.17 brain_cerebellar_hemisphere -9.69e-01 0.000199 0 6:30798168-6:31571218
9431 6 31654726 31671221 ABHD16A brain_caudate_basal_ganglia -3.47e+00 0.000584 0 6:30798168-6:31571218
9573 6 31321649 31324219 HLA-B pituitary 2.22e+00 0.000274 0 6:30798168-6:31571218
9416 6 31349851 31350065 HLA-S thyroid 4.14e+00 0.000733 0 6:30798168-6:31571218
12986 6 31165537 31171745 HCG27 psychencode -5.47e-01 0.000282 0 6:30798168-6:31571218
9521 6 30695486 30710510 FLOT1 yfs.blood.rnaarr -4.42e+00 0.000321 0 6:30798168-6:31571218
9391 6 30881982 30894236 VARS2 brain_anterior_cingulate_cortex_ba24 5.34e+00 0.001260 0 6:30798168-6:31571218
9481 6 30766431 30798436 LINC00243 whole_blood -4.90e+00 0.000388 0 6:30798168-6:31571218
12954 6 31582961 31584798 AIF1 psychencode -5.47e-01 0.000282 0 6:30798168-6:31571218
9514 6 30881982 30894236 VARS2 brain_cerebellum 2.50e+00 0.000333 0 6:30798168-6:31571218
9553 6 31236526 31239882 HLA-C thyroid -3.83e+00 0.000296 0 6:30798168-6:31571218
9655 6 30710976 30712331 IER3 brain_frontal_cortex_ba9 -1.78e+00 0.000224 0 6:30798168-6:31571218
9508 6 31349851 31350065 HLA-S pituitary 4.82e+00 0.000340 0 6:30798168-6:31571218
9651 6 31362066 31363272 XXbac-BPG181B23.7 thyroid -2.28e-01 0.000228 0 6:30798168-6:31571218
9559 6 31349851 31350065 HLA-S adrenal_gland 1.92e+00 0.000287 0 6:30798168-6:31571218
9718 6 31132119 31148508 POU5F1 brain_cerebellum -8.50e-01 0.000200 0 6:30798168-6:31571218
12956 6 31371356 31383092 MICA psychencode 5.47e-01 0.000282 0 6:30798168-6:31571218
9434 6 30881982 30894236 VARS2 brain_hippocampus 4.35e+00 0.000553 0 6:30798168-6:31571218
9446 6 31926888 31937532 SKIV2L brain_frontal_cortex_ba9 4.34e+00 0.000495 0 6:30798168-6:31571218
9681 6 31021227 31027667 HCG22 brain_nucleus_accumbens_basal_ganglia 3.19e-01 0.000215 0 6:30798168-6:31571218
9459 6 31371356 31383092 MICA brain_amygdala 2.18e+00 0.000461 0 6:30798168-6:31571218
9362 6 31973466 31976176 CYP21A1P adrenal_gland -2.51e+00 0.004540 1 6:30798168-6:31571218
9467 6 31981047 31981564 STK19P brain_cerebellum 1.63e+00 0.000418 0 6:30798168-6:31571218
9699 6 31369929 31370027 Y_RNA thyroid -1.64e+00 0.000208 0 6:30798168-6:31571218
9531 6 31795512 31798031 HSPA1B whole_blood -3.25e+00 0.000309 0 6:30798168-6:31571218
9430 6 31949801 31970458 C4A thyroid 5.16e+00 0.000599 0 6:30798168-6:31571218
9356 6 31371370 31383090 MICA cmc.brain.rnaseq_splicing -3.48e+00 0.014300 1 6:30798168-6:31571218
9649 6 31949801 31970458 C4A whole_blood 7.26e-01 0.000228 0 6:30798168-6:31571218
9656 6 31371356 31383092 MICA brain_nucleus_accumbens_basal_ganglia -1.38e+00 0.000223 0 6:30798168-6:31571218
9570 6 31371370 31383090 MICA ntr.blood.rnaarr -1.57e+00 0.000279 0 6:30798168-6:31571218
9479 6 30710976 30712331 IER3 whole_blood -4.64e+00 0.000392 0 6:30798168-6:31571218
9680 6 30875976 30882814 GTF2H4 cmc.brain.rnaseq 5.51e-01 0.000216 0 6:30798168-6:31571218
9693 6 31321649 31324219 HLA-B thyroid 5.16e-01 0.000210 0 6:30798168-6:31571218
9420 6 30710979 30712334 IER3 ntr.blood.rnaarr -5.29e+00 0.000704 0 6:30798168-6:31571218
9604 6 30875961 30881883 GTF2H4 brain_caudate_basal_ganglia -2.42e+00 0.000247 0 6:30798168-6:31571218
9535 6 31324424 31325414 XXbac-BPG248L24.12 whole_blood 3.92e+00 0.000304 0 6:30798168-6:31571218
9661 6 31371356 31383092 MICA thyroid -1.64e+00 0.000222 0 6:30798168-6:31571218
9372 6 31644461 31651817 LY6G5C yfs.blood.rnaarr 4.01e+00 0.003480 1 6:30798168-6:31571218
9350 6 31462658 31478901 MICB thyroid -5.36e+00 0.067600 1 6:30798168-6:31571218
9377 6 31462658 31478901 MICB whole_blood -2.18e+00 0.002560 1 6:30798168-6:31571218
9394 6 31462658 31478901 MICB adrenal_gland -3.94e+00 0.001210 0 6:30798168-6:31571218
9644 6 31654726 31671221 ABHD16A adrenal_gland -1.46e-03 0.000229 0 6:30798168-6:31571218
9698 6 31362066 31363272 XXbac-BPG181B23.7 brain_hypothalamus 4.98e-01 0.000208 0 6:30798168-6:31571218
9677 6 31949801 31970458 C4A brain_anterior_cingulate_cortex_ba24 -1.45e-01 0.000217 0 6:30798168-6:31571218
9428 6 31462658 31478901 MICB brain_putamen_basal_ganglia -3.14e+00 0.000624 0 6:30798168-6:31571218
9473 6 31462658 31478901 MICB brain_frontal_cortex_ba9 -4.20e+00 0.000405 0 6:30798168-6:31571218
9697 6 31644461 31651817 LY6G5C pituitary -1.56e+00 0.000208 0 6:30798168-6:31571218
9370 6 31926888 31937532 SKIV2L brain_caudate_basal_ganglia 2.17e+00 0.003700 1 6:30798168-6:31571218
9598 6 30881982 30894236 VARS2 brain_caudate_basal_ganglia -1.03e+00 0.000251 0 6:30798168-6:31571218
9468 6 30881982 30894236 VARS2 adrenal_gland 6.70e-01 0.000413 0 6:30798168-6:31571218
9351 6 31913450 31919861 CFB brain_nucleus_accumbens_basal_ganglia 3.69e+00 0.030700 1 6:30798168-6:31571218
9611 6 30881982 30894236 VARS2 brain_cerebellar_hemisphere 2.71e+00 0.000244 0 6:30798168-6:31571218
9505 6 31556672 31560762 NCR3 yfs.blood.rnaarr 1.94e-01 0.000344 0 6:30798168-6:31571218
9552 6 31082527 31107869 PSORS1C1 brain_putamen_basal_ganglia 7.45e-01 0.000296 0 6:30798168-6:31571218
9705 6 31982539 32003195 C4B brain_cerebellum -1.78e+00 0.000205 0 6:30798168-6:31571218
9450 6 31937587 31940069 DOM3Z yfs.blood.rnaarr 2.21e+00 0.000481 0 6:30798168-6:31571218
9689 6 31021227 31027667 HCG22 brain_cortex -8.70e-01 0.000212 0 6:30798168-6:31571218
9387 6 31021227 31027667 HCG22 brain_putamen_basal_ganglia -2.69e+00 0.001430 0 6:30798168-6:31571218
9412 6 31324424 31325414 XXbac-BPG248L24.12 brain_cerebellum -4.87e+00 0.000780 0 6:30798168-6:31571218
9645 6 31362066 31363272 XXbac-BPG181B23.7 whole_blood 3.78e-01 0.000229 0 6:30798168-6:31571218
9480 6 31082527 31107869 PSORS1C1 brain_nucleus_accumbens_basal_ganglia 1.20e+00 0.000392 0 6:30798168-6:31571218
9609 6 31462658 31478901 MICB brain_caudate_basal_ganglia -2.43e+00 0.000245 0 6:30798168-6:31571218
9469 6 30881982 30894236 VARS2 thyroid 1.61e+00 0.000411 0 6:30798168-6:31571218
9441 6 31371356 31383092 MICA brain_cerebellum -2.77e+00 0.000528 0 6:30798168-6:31571218
9471 6 31937587 31940069 DXO whole_blood -2.38e+00 0.000407 0 6:30798168-6:31571218
9712 6 31321649 31324965 HLA-B yfs.blood.rnaarr -1.73e+00 0.000202 0 6:30798168-6:31571218
9628 6 31371356 31383092 MICA brain_caudate_basal_ganglia -1.63e+00 0.000234 0 6:30798168-6:31571218
9652 6 31362066 31363272 XXbac-BPG181B23.7 brain_putamen_basal_ganglia 1.08e+00 0.000226 0 6:30798168-6:31571218
9499 6 31830969 31846823 SLC44A4 thyroid -3.25e+00 0.000351 0 6:30798168-6:31571218
9606 6 31324424 31325414 XXbac-BPG248L24.12 pituitary 3.36e+00 0.000246 0 6:30798168-6:31571218
9547 6 31236526 31239882 HLA-C brain_anterior_cingulate_cortex_ba24 -4.39e+00 0.000297 0 6:30798168-6:31571218
9482 6 30881982 30894236 VARS2 brain_hypothalamus 4.41e+00 0.000387 0 6:30798168-6:31571218
9408 6 31236526 31239882 HLA-C brain_cortex -4.57e+00 0.000832 0 6:30798168-6:31571218
9708 6 31949801 31970458 C4A brain_putamen_basal_ganglia 7.70e-01 0.000204 0 6:30798168-6:31571218
9494 6 30734602 30760027 HCG20 adrenal_gland 1.08e+00 0.000358 0 6:30798168-6:31571218
9667 6 31371356 31383092 MICA pituitary -1.14e+00 0.000220 0 6:30798168-6:31571218
9527 6 31462658 31478901 MICB brain_hypothalamus -3.37e+00 0.000317 0 6:30798168-6:31571218
9533 6 31865562 31913426 C2 whole_blood -3.33e+00 0.000307 0 6:30798168-6:31571218
9622 6 31082527 31107869 PSORS1C1 brain_cerebellum 2.97e+00 0.000236 0 6:30798168-6:31571218
9528 6 31462658 31478901 MICB brain_cerebellum -3.79e+00 0.000315 0 6:30798168-6:31571218
9513 6 31691121 31694491 C6orf25 thyroid -1.68e+00 0.000335 0 6:30798168-6:31571218
9684 6 31371356 31383092 MICA brain_anterior_cingulate_cortex_ba24 -1.39e+00 0.000214 0 6:30798168-6:31571218
9715 6 31462658 31478901 MICB yfs.blood.rnaarr -3.80e-01 0.000201 0 6:30798168-6:31571218
9365 6 31349851 31350065 HLA-S whole_blood 5.36e+00 0.004160 1 6:30798168-6:31571218
9581 6 31777396 31782842 HSPA1L brain_cerebellar_hemisphere -1.99e+00 0.000264 0 6:30798168-6:31571218
9741 6 31606805 31620482 BAG6 cmc.brain.rnaseq_splicing -3.06e-01 0.000184 0 6:30798168-6:31571218
9701 6 31021227 31027667 HCG22 brain_frontal_cortex_ba9 -7.76e-01 0.000207 0 6:30798168-6:31571218
9688 6 31981047 31981564 STK19P pituitary 4.02e-01 0.000213 0 6:30798168-6:31571218
9700 6 31949801 31970458 C4A brain_amygdala -1.35e-03 0.000207 0 6:30798168-6:31571218
9381 6 31606805 31620482 BAG6 whole_blood 1.91e+00 0.001750 1 6:30798168-6:31571218
9546 6 31973466 31976176 CYP21A1P brain_hypothalamus -1.17e+00 0.000298 0 6:30798168-6:31571218
9576 6 30734602 30760027 HCG20 brain_caudate_basal_ganglia 1.64e+00 0.000267 0 6:30798168-6:31571218
9706 6 31126319 31131992 TCF19 pituitary 2.79e-01 0.000205 0 6:30798168-6:31571218
9432 6 30644166 30655672 PPP1R18 thyroid 5.08e+00 0.000578 0 6:30798168-6:31571218
9710 6 31321649 31324219 HLA-B brain_cerebellar_hemisphere -6.66e-01 0.000203 0 6:30798168-6:31571218
9690 6 31371356 31383092 MICA brain_hippocampus -4.85e-01 0.000211 0 6:30798168-6:31571218
9608 6 31949801 31970458 C4A brain_caudate_basal_ganglia 1.83e+00 0.000245 0 6:30798168-6:31571218
9373 6 31556687 31560762 NCR3 whole_blood -2.09e+00 0.003170 1 6:30798168-6:31571218
9595 6 31165915 31171745 HCG27 brain_putamen_basal_ganglia -1.11e-01 0.000255 0 6:30798168-6:31571218
9543 6 31462658 31478901 MICB brain_cerebellar_hemisphere -3.24e+00 0.000299 0 6:30798168-6:31571218
9530 6 31236526 31239882 HLA-C adrenal_gland -3.04e+00 0.000312 0 6:30798168-6:31571218
9565 6 31937587 31940069 DXO brain_cerebellum 2.35e+00 0.000282 0 6:30798168-6:31571218
9621 6 31082527 31107869 PSORS1C1 brain_frontal_cortex_ba9 2.80e+00 0.000237 0 6:30798168-6:31571218
9686 6 31937587 31940069 DXO thyroid -7.28e-01 0.000213 0 6:30798168-6:31571218
9422 6 32006042 32009447 CYP21A2 thyroid -8.26e-01 0.000661 0 6:30798168-6:31571218
9702 6 31162977 31165814 XXbac-BPG299F13.17 brain_cerebellum -1.74e+00 0.000206 0 6:30798168-6:31571218
9637 6 31588497 31605548 PRRC2A thyroid 8.27e-01 0.000230 0 6:30798168-6:31571218
9629 6 31777396 31783437 HSPA1L yfs.blood.rnaarr -1.83e+00 0.000234 0 6:30798168-6:31571218
9551 6 31462658 31478901 MICB brain_hippocampus -1.90e+00 0.000296 0 6:30798168-6:31571218
9371 6 31606805 31620482 BAG6 brain_cerebellum 2.17e+00 0.003700 1 6:30798168-6:31571218
9691 6 31126319 31131992 TCF19 brain_anterior_cingulate_cortex_ba24 5.15e-01 0.000211 0 6:30798168-6:31571218
9694 6 31126319 31131992 TCF19 brain_frontal_cortex_ba9 1.64e-01 0.000210 0 6:30798168-6:31571218
13499 6 31362066 31363272 XXbac-BPG181B23.7 psychencode 5.47e-01 0.000282 0 6:30798168-6:31571218
9636 6 31236526 31239882 HLA-C brain_amygdala -2.04e+00 0.000231 0 6:30798168-6:31571218
9558 6 31973466 31976176 CYP21A1P brain_amygdala 3.11e-01 0.000288 0 6:30798168-6:31571218
9474 6 31512239 31514625 ATP6V1G2 whole_blood 2.02e+00 0.000400 0 6:30798168-6:31571218
9484 6 31698395 31707540 CLIC1 whole_blood 4.04e+00 0.000378 0 6:30798168-6:31571218
9433 6 31982539 32003195 C4B whole_blood -5.23e-01 0.000561 0 6:30798168-6:31571218
9402 6 31236526 31239882 HLA-C pituitary -4.11e+00 0.000903 0 6:30798168-6:31571218
9502 6 31132119 31148508 POU5F1 pituitary -1.25e-01 0.000346 0 6:30798168-6:31571218
9545 6 31981047 31981564 STK19P brain_frontal_cortex_ba9 -4.28e-02 0.000298 0 6:30798168-6:31571218
9460 6 32006042 32009447 CYP21A2 brain_hippocampus -3.20e+00 0.000457 0 6:30798168-6:31571218
9664 6 31362066 31363272 XXbac-BPG181B23.7 adrenal_gland 2.96e-01 0.000221 0 6:30798168-6:31571218
9512 6 31637944 31641553 LY6G5B pituitary 3.52e-01 0.000335 0 6:30798168-6:31571218
9506 6 31236526 31239882 HLA-C brain_frontal_cortex_ba9 -3.24e+00 0.000340 0 6:30798168-6:31571218
9504 6 31938943 31949228 STK19 thyroid -3.22e-01 0.000345 0 6:30798168-6:31571218
9486 6 32006042 32009447 CYP21A2 brain_cortex -2.99e+00 0.000374 0 6:30798168-6:31571218
9562 6 31371356 31383092 MICA whole_blood 1.05e+00 0.000286 0 6:30798168-6:31571218
9462 6 30844198 30867933 DDR1 brain_cerebellum 9.27e-01 0.000447 0 6:30798168-6:31571218
9619 6 30881982 30894236 VARS2 pituitary 3.11e+00 0.000238 0 6:30798168-6:31571218
9638 6 31236526 31239882 HLA-C brain_nucleus_accumbens_basal_ganglia -3.11e+00 0.000230 0 6:30798168-6:31571218
9593 6 30899130 30899952 SFTA2 thyroid -1.64e+00 0.000255 0 6:30798168-6:31571218
9605 6 31132119 31148508 POU5F1 brain_frontal_cortex_ba9 -6.88e-01 0.000246 0 6:30798168-6:31571218
9355 6 30644166 30655672 PPP1R18 adrenal_gland 5.55e+00 0.019800 1 6:30798168-6:31571218
9671 6 31362066 31363272 XXbac-BPG181B23.7 brain_anterior_cingulate_cortex_ba24 2.18e+00 0.000219 0 6:30798168-6:31571218
9578 6 31462658 31478901 MICB brain_cortex -3.28e+00 0.000266 0 6:30798168-6:31571218
9529 6 32006042 32009447 CYP21A2 brain_caudate_basal_ganglia -2.89e+00 0.000314 0 6:30798168-6:31571218
9601 6 31082527 31107869 PSORS1C1 brain_anterior_cingulate_cortex_ba24 2.68e+00 0.000248 0 6:30798168-6:31571218
9561 6 31512239 31514625 ATP6V1G2 pituitary 2.23e+00 0.000286 0 6:30798168-6:31571218
9674 6 32006042 32009447 CYP21A2 brain_hypothalamus -1.61e+00 0.000218 0 6:30798168-6:31571218
9550 6 31512239 31514625 ATP6V1G2 brain_caudate_basal_ganglia 1.85e+00 0.000297 0 6:30798168-6:31571218
9579 6 31512239 31514625 ATP6V1G2 adrenal_gland 1.66e+00 0.000265 0 6:30798168-6:31571218
9607 6 31162977 31165814 XXbac-BPG299F13.17 brain_cortex -2.67e+00 0.000246 0 6:30798168-6:31571218
9489 6 30695485 30710682 FLOT1 ntr.blood.rnaarr -4.77e+00 0.000371 0 6:30798168-6:31571218
9511 6 31168262 31169695 XXbac-BPG299F13.14 whole_blood -1.70e+00 0.000335 0 6:30798168-6:31571218
9556 6 31110215 31125964 CCHCR1 cmc.brain.rnaseq_splicing 2.64e+00 0.000292 0 6:30798168-6:31571218
9360 6 31502421 31509780 BAT1 ntr.blood.rnaarr -2.51e+00 0.005470 1 6:30798168-6:31571218
9554 6 32006042 32009447 CYP21A2 brain_cerebellar_hemisphere 1.04e+00 0.000295 0 6:30798168-6:31571218
9575 6 31236526 31239882 HLA-C whole_blood -3.35e+00 0.000268 0 6:30798168-6:31571218
9696 6 31126319 31131992 TCF19 brain_cortex 8.97e-01 0.000208 0 6:30798168-6:31571218
9567 6 31981047 31981564 STK19P thyroid 1.66e+00 0.000281 0 6:30798168-6:31571218
9626 6 31512239 31514625 ATP6V1G2 thyroid 1.03e+00 0.000235 0 6:30798168-6:31571218
9600 6 31498010 31510225 DDX39B brain_hypothalamus 2.39e+00 0.000249 0 6:30798168-6:31571218
9669 6 31362066 31363272 XXbac-BPG181B23.7 brain_frontal_cortex_ba9 -1.01e+00 0.000219 0 6:30798168-6:31571218
9648 6 31132119 31148508 POU5F1 brain_substantia_nigra -2.55e+00 0.000228 0 6:30798168-6:31571218
9618 6 31126319 31131992 TCF19 brain_cerebellum -4.56e-01 0.000238 0 6:30798168-6:31571218
9384 6 31973466 31976176 CYP21A1P thyroid 4.24e+00 0.001620 0 6:30798168-6:31571218
9424 6 31165915 31171745 HCG27 brain_caudate_basal_ganglia -6.19e-01 0.000648 0 6:30798168-6:31571218
13164 6 31321649 31324965 HLA-B psychencode 5.47e-01 0.000282 0 6:30798168-6:31571218
9726 6 31079000 31080336 C6orf15 pituitary 8.48e-01 0.000198 0 6:30798168-6:31571218
9374 6 31462690 31478900 MICB ntr.blood.rnaarr -2.18e+00 0.003090 1 6:30798168-6:31571218
9392 6 31982539 32003195 C4B brain_cerebellar_hemisphere -1.49e+00 0.001250 0 6:30798168-6:31571218
9463 6 31582961 31584798 AIF1 yfs.blood.rnaarr 1.25e+00 0.000427 0 6:30798168-6:31571218
9616 6 31126319 31131992 TCF19 thyroid 8.31e-01 0.000238 0 6:30798168-6:31571218
9583 6 31371356 31383092 MICA adrenal_gland -1.49e+00 0.000263 0 6:30798168-6:31571218
9642 6 31543344 31546113 TNF yfs.blood.rnaarr 3.33e-01 0.000229 0 6:30798168-6:31571218
9409 6 30875961 30881883 GTF2H4 yfs.blood.rnaarr 2.29e+00 0.000799 0 6:30798168-6:31571218
9678 6 31236526 31239882 HLA-C brain_caudate_basal_ganglia -2.45e+00 0.000216 0 6:30798168-6:31571218
9400 6 30695486 30710510 FLOT1 thyroid -5.39e+00 0.000964 0 6:30798168-6:31571218
9393 6 31498010 31510225 DDX39B whole_blood -1.94e+00 0.001240 0 6:30798168-6:31571218
9582 6 31498010 31510225 DDX39B brain_cerebellum 2.86e-01 0.000264 0 6:30798168-6:31571218
9724 6 31132119 31148508 POU5F1 brain_amygdala -6.61e-01 0.000199 0 6:30798168-6:31571218
9738 6 31938943 31949228 STK19 brain_cerebellum 6.70e-01 0.000192 0 6:30798168-6:31571218
9564 6 31973466 31976176 CYP21A1P brain_cerebellar_hemisphere -1.41e+00 0.000283 0 6:30798168-6:31571218
9500 6 31981047 31981564 STK19P brain_amygdala -2.45e+00 0.000348 0 6:30798168-6:31571218
9613 6 31132119 31148508 POU5F1 whole_blood 2.17e+00 0.000243 0 6:30798168-6:31571218
9660 6 31162977 31165814 XXbac-BPG299F13.17 brain_caudate_basal_ganglia -2.51e+00 0.000222 0 6:30798168-6:31571218
9676 6 31110216 31126015 CCHCR1 adrenal_gland -2.83e+00 0.000218 0 6:30798168-6:31571218
9713 6 31371356 31383092 MICA yfs.blood.rnaarr -4.74e-02 0.000202 0 6:30798168-6:31571218
9447 6 31938868 31950598 STK19 yfs.blood.rnaarr 2.65e+00 0.000492 0 6:30798168-6:31571218
9711 6 31973466 31976176 CYP21A1P brain_cortex -2.43e-01 0.000202 0 6:30798168-6:31571218
9589 6 31553901 31556686 LST1 yfs.blood.rnaarr -2.30e+00 0.000259 0 6:30798168-6:31571218
9596 6 31686425 31689622 LY6G6C brain_nucleus_accumbens_basal_ganglia -5.22e-01 0.000254 0 6:30798168-6:31571218
9733 6 31236526 31239907 HLA-C yfs.blood.rnaarr -3.03e-01 0.000195 0 6:30798168-6:31571218
9487 6 31694815 31698357 DDAH2 brain_hypothalamus 3.61e+00 0.000373 0 6:30798168-6:31571218
9476 6 31976391 31980249 TNXA brain_hypothalamus -1.49e+00 0.000397 0 6:30798168-6:31571218
9461 6 31371356 31383092 MICA brain_frontal_cortex_ba9 -1.84e+00 0.000455 0 6:30798168-6:31571218
9375 6 31973466 31976176 CYP21A1P whole_blood 4.50e+00 0.003060 1 6:30798168-6:31571218
9659 6 31110216 31126015 CCHCR1 whole_blood -1.97e+00 0.000223 0 6:30798168-6:31571218
9722 6 31847536 31865464 EHMT2 yfs.blood.rnaarr -1.83e-01 0.000199 0 6:30798168-6:31571218
9572 6 31981047 31981564 STK19P brain_hippocampus 1.05e+00 0.000278 0 6:30798168-6:31571218
9557 6 31462658 31478901 MICB pituitary -1.92e+00 0.000291 0 6:30798168-6:31571218
9591 6 31976391 31980249 TNXA brain_cerebellar_hemisphere 1.28e-01 0.000256 0 6:30798168-6:31571218
9592 6 31926888 31937532 SKIV2L brain_cerebellum 3.64e+00 0.000255 0 6:30798168-6:31571218
9549 6 30710976 30712331 IER3 yfs.blood.rnaarr -3.98e+00 0.000297 0 6:30798168-6:31571218
9454 6 31141512 31145676 PSORS1C3 brain_nucleus_accumbens_basal_ganglia 7.33e-01 0.000470 0 6:30798168-6:31571218
9703 6 31165915 31171745 HCG27 pituitary 3.66e-01 0.000206 0 6:30798168-6:31571218
9566 6 31498010 31510225 DDX39B brain_cerebellar_hemisphere 1.31e+00 0.000282 0 6:30798168-6:31571218
9632 6 31981047 31981564 STK19P brain_cortex 8.48e-01 0.000232 0 6:30798168-6:31571218
9739 6 31938943 31949228 STK19 adrenal_gland -4.55e-01 0.000190 0 6:30798168-6:31571218
9673 6 31694815 31698394 DDAH2 yfs.blood.rnaarr -8.36e-01 0.000219 0 6:30798168-6:31571218
9478 6 31777395 31783501 HSPA1L cmc.brain.rnaseq -2.13e+00 0.000394 0 6:30798168-6:31571218
9417 6 31981047 31981564 STK19P brain_cerebellar_hemisphere 2.20e+00 0.000729 0 6:30798168-6:31571218
9663 6 31165915 31171745 HCG27 adrenal_gland 2.25e-01 0.000221 0 6:30798168-6:31571218
9426 6 31981047 31981564 STK19P brain_caudate_basal_ganglia 2.06e+00 0.000634 0 6:30798168-6:31571218
9427 6 31082527 31107869 PSORS1C1 brain_amygdala -5.17e-01 0.000633 0 6:30798168-6:31571218
9538 6 31082527 31107869 PSORS1C1 pituitary 1.89e+00 0.000301 0 6:30798168-6:31571218
9672 6 31126319 31131992 TCF19 brain_substantia_nigra -2.18e-01 0.000219 0 6:30798168-6:31571218
9717 6 31795512 31798031 HSPA1B yfs.blood.rnaarr 1.49e+00 0.000200 0 6:30798168-6:31571218
9410 6 31637944 31641553 LY6G5B brain_cerebellum 1.48e+00 0.000789 0 6:30798168-6:31571218
9727 6 31976391 31980249 TNXA brain_hippocampus 9.00e-01 0.000198 0 6:30798168-6:31571218
9465 6 31141512 31145676 PSORS1C3 brain_cerebellar_hemisphere 7.55e-01 0.000424 0 6:30798168-6:31571218
9707 6 31126319 31131992 TCF19 brain_hypothalamus -1.58e-01 0.000204 0 6:30798168-6:31571218
9518 6 31141512 31145676 PSORS1C3 whole_blood 1.74e+00 0.000326 0 6:30798168-6:31571218
9612 6 31141512 31145676 PSORS1C3 brain_substantia_nigra -3.86e-01 0.000244 0 6:30798168-6:31571218
9423 6 31637944 31641553 LY6G5B adrenal_gland -3.05e+00 0.000653 0 6:30798168-6:31571218
9721 6 31082527 31107869 PSORS1C1 brain_cortex -5.04e-01 0.000199 0 6:30798168-6:31571218
9435 6 31236526 31239882 HLA-C brain_cerebellum -5.05e+00 0.000546 0 6:30798168-6:31571218
9723 6 31162977 31165814 XXbac-BPG299F13.17 adrenal_gland -1.07e+00 0.000199 0 6:30798168-6:31571218
9634 6 31141512 31145676 PSORS1C3 pituitary 6.24e-01 0.000232 0 6:30798168-6:31571218
9668 6 31141512 31145676 PSORS1C3 thyroid 3.89e-01 0.000220 0 6:30798168-6:31571218
9735 6 31141512 31145676 PSORS1C3 brain_cerebellum -6.62e-01 0.000194 0 6:30798168-6:31571218
12952 6 31629006 31634060 GPANK1 psychencode 5.47e-01 0.000282 0 6:30798168-6:31571218
9397 6 31162977 31165814 XXbac-BPG299F13.17 thyroid -1.44e+00 0.001040 0 6:30798168-6:31571218
9353 6 31512239 31516204 ATP6V1G2 yfs.blood.rnaarr 3.83e+00 0.025100 1 6:30798168-6:31571218
9692 6 31777396 31782842 HSPA1L brain_cerebellum 1.74e-01 0.000211 0 6:30798168-6:31571218
9731 6 31132119 31148508 POU5F1 brain_cerebellar_hemisphere 1.21e+00 0.000195 0 6:30798168-6:31571218
9544 6 32006042 32009447 CYP21A2 brain_amygdala -5.32e-01 0.000298 0 6:30798168-6:31571218
9586 6 31126319 31131992 TCF19 brain_cerebellar_hemisphere 1.56e+00 0.000262 0 6:30798168-6:31571218
9453 6 31707725 31730575 MSH5 whole_blood -1.51e+00 0.000470 0 6:30798168-6:31571218
9657 6 31132119 31148508 POU5F1 brain_putamen_basal_ganglia -1.74e+00 0.000223 0 6:30798168-6:31571218
9597 6 31707725 31730575 MSH5 thyroid 3.04e+00 0.000251 0 6:30798168-6:31571218
9683 6 31168262 31169695 XXbac-BPG299F13.14 brain_cortex -1.86e-01 0.000215 0 6:30798168-6:31571218
9488 6 31132119 31148508 POU5F1 brain_hippocampus -6.92e-01 0.000372 0 6:30798168-6:31571218
9357 6 31976391 31980249 TNXA pituitary 3.47e+00 0.009410 1 6:30798168-6:31571218
9640 6 31105313 31107127 PSORS1C2 thyroid 1.32e+00 0.000229 0 6:30798168-6:31571218
9587 6 31082527 31107869 PSORS1C1 brain_caudate_basal_ganglia 1.38e+00 0.000259 0 6:30798168-6:31571218
9385 6 31694503 31698040 DDAH2 ntr.blood.rnaarr -4.02e+00 0.001610 0 6:30798168-6:31571218
9382 6 31644461 31651817 LY6G5C whole_blood 3.41e+00 0.001720 0 6:30798168-6:31571218
9439 6 31165915 31171745 HCG27 whole_blood -8.67e-01 0.000534 0 6:30798168-6:31571218
12953 6 31626075 31628549 C6orf47 psychencode 5.47e-01 0.000282 0 6:30798168-6:31571218
9670 6 31110215 31125964 CCHCR1 cmc.brain.rnaseq_splicing -1.59e+00 0.000219 0 6:30798168-6:31571218
9376 6 31512239 31514625 ATP6V1G2 brain_cerebellum 3.32e+00 0.002580 1 6:30798168-6:31571218
12957 6 31082527 31107869 PSORS1C1 psychencode 5.47e-01 0.000282 0 6:30798168-6:31571218
9411 6 31162977 31165814 XXbac-BPG299F13.17 pituitary -1.04e+00 0.000787 0 6:30798168-6:31571218
9419 6 31132119 31148508 POU5F1 thyroid -6.58e-01 0.000710 0 6:30798168-6:31571218
9445 6 31162977 31165814 XXbac-BPG299F13.17 brain_anterior_cingulate_cortex_ba24 -3.19e+00 0.000512 0 6:30798168-6:31571218
9728 6 31236526 31239907 HLA-C cmc.brain.rnaseq_splicing 2.92e-01 0.000197 0 6:30798168-6:31571218
9396 6 31110216 31126015 CCHCR1 brain_putamen_basal_ganglia -9.42e-01 0.001180 0 6:30798168-6:31571218
9639 6 31633168 31637847 CSNK2B brain_cerebellum -2.82e+00 0.000230 0 6:30798168-6:31571218
9510 6 31162977 31165814 XXbac-BPG299F13.17 brain_nucleus_accumbens_basal_ganglia -3.02e+00 0.000335 0 6:30798168-6:31571218
9475 6 31082527 31107869 PSORS1C1 adrenal_gland 6.90e-01 0.000398 0 6:30798168-6:31571218
9456 6 31082527 31107869 PSORS1C1 brain_hypothalamus 1.00e+00 0.000464 0 6:30798168-6:31571218
9366 6 31110215 31125964 CCHCR1 cmc.brain.rnaseq_splicing -5.75e-01 0.004090 1 6:30798168-6:31571218
9493 6 31637944 31641553 LY6G5B whole_blood 4.19e-01 0.000361 0 6:30798168-6:31571218
9451 6 31132119 31148508 POU5F1 brain_caudate_basal_ganglia 3.76e-01 0.000472 0 6:30798168-6:31571218
9466 6 31926888 31937532 SKIV2L brain_cortex 3.92e+00 0.000422 0 6:30798168-6:31571218
9444 6 31976391 31980249 TNXA brain_substantia_nigra 1.25e-01 0.000518 0 6:30798168-6:31571218
9523 6 31162977 31165814 XXbac-BPG299F13.17 brain_hypothalamus -3.78e+00 0.000318 0 6:30798168-6:31571218
9541 6 31105313 31107127 PSORS1C2 adrenal_gland 4.98e-01 0.000300 0 6:30798168-6:31571218
9367 6 31674662 31678372 LY6G6F thyroid 4.80e+00 0.003970 1 6:30798168-6:31571218
9472 6 31110216 31126015 CCHCR1 brain_cerebellar_hemisphere -4.50e+00 0.000407 0 6:30798168-6:31571218
9633 6 31973466 31976176 CYP21A1P brain_caudate_basal_ganglia -9.84e-01 0.000232 0 6:30798168-6:31571218
9610 6 31126319 31131992 TCF19 whole_blood 6.01e-01 0.000245 0 6:30798168-6:31571218
9525 6 31110216 31126015 CCHCR1 brain_cerebellum -2.59e+00 0.000318 0 6:30798168-6:31571218
9599 6 31110216 31126015 CCHCR1 thyroid -2.40e+00 0.000249 0 6:30798168-6:31571218
9641 6 31973466 31976176 CYP21A1P brain_substantia_nigra 8.37e-01 0.000229 0 6:30798168-6:31571218
9679 6 31126115 31131992 TCF19 ntr.blood.rnaarr 1.28e+00 0.000216 0 6:30798168-6:31571218
9716 6 31633168 31637847 CSNK2B brain_putamen_basal_ganglia -4.54e-01 0.000201 0 6:30798168-6:31571218
9650 6 31082527 31107869 PSORS1C1 brain_cerebellar_hemisphere 2.86e+00 0.000228 0 6:30798168-6:31571218
9522 6 31110215 31125964 CCHCR1 cmc.brain.rnaseq_splicing -2.08e+00 0.000319 0 6:30798168-6:31571218
9585 6 31110216 31126015 CCHCR1 pituitary -2.97e+00 0.000262 0 6:30798168-6:31571218
9588 6 31126319 31134936 TCF19 yfs.blood.rnaarr 1.40e+00 0.000259 0 6:30798168-6:31571218
9682 6 31629006 31634060 GPANK1 thyroid 1.99e+00 0.000215 0 6:30798168-6:31571218
9750 6 31694815 31698357 DDAH2 brain_cerebellum 4.36e+00 0.018500 1 6:31571218-6:32682664
10203 6 31919864 31926856 NELFE brain_hypothalamus -4.74e-01 0.000274 0 6:31571218-6:32682664
10145 6 31926888 31937532 SKIV2L brain_putamen_basal_ganglia 1.36e-01 0.000340 0 6:31571218-6:32682664
10147 6 31926888 31937532 SKIV2L pituitary 2.25e-01 0.000337 0 6:31571218-6:32682664
9933 6 31707725 31730575 MSH5 whole_blood 3.12e+00 0.001030 0 6:31571218-6:32682664
10132 6 31926857 31937532 SKIV2L yfs.blood.rnaarr 1.23e+00 0.000357 0 6:31571218-6:32682664
10125 6 31777396 31782842 HSPA1L brain_cerebellar_hemisphere -1.99e-01 0.000365 0 6:31571218-6:32682664
9910 6 31745296 31763712 VARS cmc.brain.rnaseq -2.95e+00 0.001180 1 6:31571218-6:32682664
10122 6 31637944 31641553 LY6G5B adrenal_gland -2.31e+00 0.000370 0 6:31571218-6:32682664
9901 6 31795512 31798031 HSPA1B yfs.blood.rnaarr 2.73e+00 0.001260 1 6:31571218-6:32682664
10097 6 31926888 31937532 SKIV2L brain_cerebellum -6.53e-01 0.000437 0 6:31571218-6:32682664
10044 6 31802385 31807541 C6orf48 whole_blood 1.04e-01 0.000536 0 6:31571218-6:32682664
10156 6 31926888 31937532 SKIV2L brain_cortex 3.78e-01 0.000326 0 6:31571218-6:32682664
10133 6 31777396 31782842 HSPA1L brain_cerebellum -7.22e-01 0.000356 0 6:31571218-6:32682664
9793 6 31865562 31913426 C2 whole_blood -4.36e+00 0.003960 1 6:31571218-6:32682664
9953 6 31694815 31698357 DDAH2 whole_blood 2.92e+00 0.000833 0 6:31571218-6:32682664
9887 6 31694815 31698357 DDAH2 adrenal_gland 2.56e+00 0.001360 1 6:31571218-6:32682664
10030 6 31644461 31651817 LY6G5C brain_frontal_cortex_ba9 1.56e+00 0.000567 0 6:31571218-6:32682664
9992 6 31765168 31774761 LSM2 cmc.brain.rnaseq_splicing -1.80e+00 0.000668 0 6:31571218-6:32682664
10164 6 31926888 31937532 SKIV2L brain_nucleus_accumbens_basal_ganglia 2.95e-01 0.000317 0 6:31571218-6:32682664
10075 6 32723875 32731311 HLA-DQB2 brain_caudate_basal_ganglia 1.50e-01 0.000476 0 6:31571218-6:32682664
10060 6 32723875 32731311 HLA-DQB2 adrenal_gland 2.75e-01 0.000502 0 6:31571218-6:32682664
9874 6 31777395 31783501 HSPA1L cmc.brain.rnaseq -3.67e+00 0.001540 1 6:31571218-6:32682664
10137 6 31919864 31926856 NELFE thyroid 1.88e+00 0.000351 0 6:31571218-6:32682664
10207 6 31981047 31981564 STK19P brain_putamen_basal_ganglia 8.31e-01 0.000269 0 6:31571218-6:32682664
9850 6 32546546 32557625 HLA-DRB1 brain_cortex -2.72e+00 0.001990 1 6:31571218-6:32682664
10077 6 32723875 32731311 HLA-DQB2 brain_putamen_basal_ganglia 1.38e-01 0.000474 0 6:31571218-6:32682664
10048 6 31802385 31807541 C6orf48 adrenal_gland 1.60e+00 0.000523 0 6:31571218-6:32682664
10005 6 32006042 32009447 CYP21A2 brain_cerebellum -3.05e+00 0.000618 0 6:31571218-6:32682664
9981 6 32083112 32096030 ATF6B adrenal_gland 2.29e+00 0.000697 0 6:31571218-6:32682664
10114 6 31981047 31981564 STK19P brain_nucleus_accumbens_basal_ganglia -6.31e-01 0.000384 0 6:31571218-6:32682664
10016 6 32083112 32096030 ATF6B thyroid 2.64e+00 0.000587 0 6:31571218-6:32682664
9946 6 32096484 32098068 FKBPL whole_blood 1.23e+00 0.000869 0 6:31571218-6:32682664
9836 6 32116136 32121621 PRRT1 adrenal_gland 2.47e+00 0.002400 1 6:31571218-6:32682664
9956 6 32627244 32636160 HLA-DQB1 adrenal_gland -4.10e-01 0.000812 0 6:31571218-6:32682664
10135 6 31981047 31981564 STK19P pituitary -1.12e+00 0.000352 0 6:31571218-6:32682664
9941 6 32083112 32096030 ATF6B brain_caudate_basal_ganglia 1.99e+00 0.000938 0 6:31571218-6:32682664
10107 6 32162620 32191844 NOTCH4 whole_blood 4.25e-01 0.000405 0 6:31571218-6:32682664
10179 6 32358287 32361463 HCG23 adrenal_gland 2.63e+00 0.000301 0 6:31571218-6:32682664
10051 6 31949801 31970458 C4A brain_cerebellar_hemisphere 3.05e+00 0.000521 0 6:31571218-6:32682664
10188 6 32116136 32121621 PRRT1 thyroid 3.17e-01 0.000290 0 6:31571218-6:32682664
9786 6 31637944 31641553 LY6G5B pituitary -2.09e+00 0.004310 1 6:31571218-6:32682664
10134 6 32121738 32132359 PPT2 whole_blood -1.51e+00 0.000352 0 6:31571218-6:32682664
9760 6 32136059 32145873 AGPAT1 thyroid 3.12e+00 0.008470 1 6:31571218-6:32682664
10116 6 31913450 31919861 CFB brain_nucleus_accumbens_basal_ganglia 1.23e+00 0.000383 0 6:31571218-6:32682664
9900 6 32083112 32096030 ATF6B brain_hypothalamus 2.91e+00 0.001260 1 6:31571218-6:32682664
9876 6 32520490 32527799 HLA-DRB6 adrenal_gland 2.08e+00 0.001520 1 6:31571218-6:32682664
10121 6 32723875 32731311 HLA-DQB2 brain_anterior_cingulate_cortex_ba24 3.94e-03 0.000372 0 6:31571218-6:32682664
9818 6 31637944 31641553 LY6G5B brain_cerebellum -1.09e+00 0.002770 1 6:31571218-6:32682664
9930 6 31937587 31940069 DXO whole_blood 3.86e-01 0.001060 0 6:31571218-6:32682664
10195 6 31937587 31940069 DXO brain_cerebellar_hemisphere -3.28e-01 0.000280 0 6:31571218-6:32682664
10212 6 31937587 31940069 DXO brain_cerebellum -1.13e+00 0.000261 0 6:31571218-6:32682664
10049 6 32006042 32009447 CYP21A2 brain_amygdala 2.02e+00 0.000523 0 6:31571218-6:32682664
10076 6 32006042 32009447 CYP21A2 brain_cerebellar_hemisphere -1.92e+00 0.000474 0 6:31571218-6:32682664
10213 6 32136059 32145873 AGPAT1 brain_anterior_cingulate_cortex_ba24 1.14e+00 0.000259 0 6:31571218-6:32682664
9747 6 32789610 32806557 TAP2 brain_hypothalamus -4.56e+00 0.021900 1 6:31571218-6:32682664
9791 6 32789610 32806557 TAP2 adrenal_gland -3.40e+00 0.003970 1 6:31571218-6:32682664
10184 6 31926888 31937532 SKIV2L adrenal_gland -6.11e-01 0.000294 0 6:31571218-6:32682664
9787 6 32709119 32714992 HLA-DQA2 brain_hippocampus 2.81e+00 0.004130 1 6:31571218-6:32682664
10199 6 31926888 31937532 SKIV2L thyroid 4.03e-02 0.000278 0 6:31571218-6:32682664
10035 6 31938943 31949228 STK19 whole_blood 1.02e+00 0.000551 0 6:31571218-6:32682664
9799 6 32146131 32151657 RNF5 brain_frontal_cortex_ba9 4.11e+00 0.003630 1 6:31571218-6:32682664
9815 6 32709119 32714992 HLA-DQA2 pituitary 2.93e+00 0.002830 1 6:31571218-6:32682664
10004 6 32006042 32009447 CYP21A2 brain_cortex -2.69e+00 0.000621 0 6:31571218-6:32682664
9892 6 31949801 31970458 C4A brain_hypothalamus 3.86e+00 0.001350 1 6:31571218-6:32682664
10092 6 32146131 32151657 RNF5 thyroid 2.81e+00 0.000442 0 6:31571218-6:32682664
10111 6 32146131 32151657 RNF5 brain_cerebellum 2.90e+00 0.000392 0 6:31571218-6:32682664
10017 6 32595956 32611429 HLA-DQA1 thyroid -9.27e-01 0.000585 0 6:31571218-6:32682664
10183 6 32146131 32151657 RNF5 adrenal_gland 1.81e+00 0.000295 0 6:31571218-6:32682664
10215 6 32146131 32151657 RNF5 brain_hypothalamus 2.13e-01 0.000258 0 6:31571218-6:32682664
9983 6 32148745 32152101 AGER adrenal_gland -1.60e-01 0.000688 0 6:31571218-6:32682664
9957 6 32627244 32636160 HLA-DQB1 yfs.blood.rnaarr 1.03e+00 0.000798 0 6:31571218-6:32682664
10109 6 32006042 32009447 CYP21A2 brain_hypothalamus 1.33e+00 0.000396 0 6:31571218-6:32682664
9813 6 32152512 32157963 PBX2 whole_blood 3.31e+00 0.002950 1 6:31571218-6:32682664
9962 6 32627244 32636160 HLA-DQB1 brain_substantia_nigra -7.44e-01 0.000770 0 6:31571218-6:32682664
10031 6 32162620 32191844 NOTCH4 brain_cerebellum 9.55e-01 0.000565 0 6:31571218-6:32682664
9853 6 32485116 32498064 HLA-DRB5 ntr.blood.rnaarr -2.41e+00 0.001930 1 6:31571218-6:32682664
10055 6 32485120 32498064 HLA-DRB5 thyroid 2.88e-01 0.000516 0 6:31571218-6:32682664
9829 6 32789610 32806557 TAP2 brain_cerebellum -3.44e+00 0.002470 1 6:31571218-6:32682664
9743 6 32162620 32191844 NOTCH4 thyroid 5.06e+00 0.155000 1 6:31571218-6:32682664
10098 6 32358287 32361463 HCG23 brain_hypothalamus -2.75e+00 0.000436 0 6:31571218-6:32682664
10026 6 31362066 31363272 XXbac-BPG181B23.7 brain_frontal_cortex_ba9 2.33e+00 0.000572 0 6:31571218-6:32682664
10057 6 31644461 31651817 LY6G5C brain_hypothalamus 9.42e-01 0.000508 0 6:31571218-6:32682664
10105 6 31981047 31981564 STK19P brain_cerebellar_hemisphere -6.29e-02 0.000408 0 6:31571218-6:32682664
9911 6 31637944 31641553 LY6G5B brain_hypothalamus 4.65e-01 0.001180 1 6:31571218-6:32682664
9797 6 32709119 32714992 HLA-DQA2 brain_cortex 3.13e+00 0.003690 1 6:31571218-6:32682664
10115 6 32789610 32806557 TAP2 brain_cerebellar_hemisphere 4.66e-01 0.000384 0 6:31571218-6:32682664
10178 6 32006042 32009447 CYP21A2 pituitary -1.31e+00 0.000302 0 6:31571218-6:32682664
9996 6 32485120 32498064 HLA-DRB5 brain_cerebellum -4.29e-01 0.000658 0 6:31571218-6:32682664
9868 6 31644461 31651817 LY6G5C yfs.blood.rnaarr 2.31e+00 0.001680 1 6:31571218-6:32682664
10196 6 32009548 32083040 TNXB adrenal_gland 1.32e+00 0.000280 0 6:31571218-6:32682664
10001 6 32162620 32191844 NOTCH4 adrenal_gland 2.19e+00 0.000625 0 6:31571218-6:32682664
9972 6 32821938 32827362 PSMB9 thyroid 8.83e-01 0.000711 0 6:31571218-6:32682664
10163 6 31981047 31981564 STK19P brain_caudate_basal_ganglia 9.74e-01 0.000319 0 6:31571218-6:32682664
9944 6 32358287 32361463 HCG23 brain_caudate_basal_ganglia -1.09e+00 0.000882 0 6:31571218-6:32682664
10157 6 32780540 32784825 HLA-DOB brain_cortex 5.84e-01 0.000325 0 6:31571218-6:32682664
10058 6 32595956 32611429 HLA-DQA1 brain_anterior_cingulate_cortex_ba24 -2.81e-01 0.000507 0 6:31571218-6:32682664
10074 6 32627244 32636160 HLA-DQB1 brain_nucleus_accumbens_basal_ganglia -1.13e-01 0.000478 0 6:31571218-6:32682664
9976 6 32627244 32636160 HLA-DQB1 brain_cortex 1.12e+00 0.000706 0 6:31571218-6:32682664
9979 6 32627244 32636160 HLA-DQB1 brain_frontal_cortex_ba9 1.11e+00 0.000700 0 6:31571218-6:32682664
10079 6 32627244 32636160 HLA-DQB1 brain_hypothalamus -1.41e-01 0.000467 0 6:31571218-6:32682664
10010 6 31938868 31950598 STK19 yfs.blood.rnaarr 2.97e+00 0.000606 0 6:31571218-6:32682664
9991 6 32627244 32636160 HLA-DQB1 brain_anterior_cingulate_cortex_ba24 9.26e-01 0.000670 0 6:31571218-6:32682664
9820 6 32709119 32714992 HLA-DQA2 brain_anterior_cingulate_cortex_ba24 2.72e+00 0.002660 1 6:31571218-6:32682664
10083 6 31937587 31940069 DXO pituitary -1.27e+00 0.000459 0 6:31571218-6:32682664
10175 6 31981047 31981564 STK19P brain_anterior_cingulate_cortex_ba24 1.28e+00 0.000308 0 6:31571218-6:32682664
9748 6 31368479 31445283 HCP5 thyroid 4.55e+00 0.019500 1 6:31571218-6:32682664
9948 6 31637944 31641553 LY6G5B thyroid 1.30e+00 0.000863 0 6:31571218-6:32682664
9809 6 31967753 31971298 C4A-AS1 adrenal_gland 2.87e+00 0.003090 1 6:31571218-6:32682664
10216 6 31981047 31981564 STK19P brain_cortex -1.28e-02 0.000254 0 6:31571218-6:32682664
10096 6 32627244 32636160 HLA-DQB1 pituitary 5.77e-01 0.000437 0 6:31571218-6:32682664
9839 6 32808494 32812480 PSMB8 yfs.blood.rnaarr -3.50e+00 0.002310 1 6:31571218-6:32682664
10112 6 31236526 31239882 HLA-C whole_blood 9.05e-01 0.000390 0 6:31571218-6:32682664
10177 6 31236526 31239907 HLA-C yfs.blood.rnaarr 2.10e+00 0.000303 0 6:31571218-6:32682664
9899 6 32628132 32628506 HLA-DQB1-AS1 adrenal_gland -8.45e-01 0.001290 1 6:31571218-6:32682664
10106 6 31236526 31239882 HLA-C adrenal_gland -3.00e+00 0.000407 0 6:31571218-6:32682664
10186 6 31236526 31239882 HLA-C brain_hypothalamus 1.12e+00 0.000291 0 6:31571218-6:32682664
10214 6 31321643 31324989 HLA-B ntr.blood.rnaarr -6.50e-01 0.000258 0 6:31571218-6:32682664
9945 6 31949801 31970458 C4A adrenal_gland 3.46e+00 0.000872 0 6:31571218-6:32682664
10190 6 31981047 31981564 STK19P brain_cerebellum 6.05e-01 0.000288 0 6:31571218-6:32682664
9790 6 32709119 32714992 HLA-DQA2 adrenal_gland 3.35e+00 0.004000 1 6:31571218-6:32682664
9792 6 32709119 32714992 HLA-DQA2 thyroid 3.12e+00 0.003960 1 6:31571218-6:32682664
9955 6 31236526 31239882 HLA-C brain_caudate_basal_ganglia -2.92e+00 0.000820 0 6:31571218-6:32682664
10204 6 31236526 31239882 HLA-C thyroid 3.37e-01 0.000272 0 6:31571218-6:32682664
10025 6 31637944 31641553 LY6G5B whole_blood -6.25e-01 0.000572 0 6:31571218-6:32682664
10219 6 31937587 31940069 DXO thyroid 1.79e-01 0.000245 0 6:31571218-6:32682664
10064 6 31349851 31350065 HLA-S thyroid 1.06e+00 0.000495 0 6:31571218-6:32682664
10170 6 31926888 31937532 SKIV2L brain_hypothalamus 1.52e-01 0.000312 0 6:31571218-6:32682664
10036 6 32595956 32611429 HLA-DQA1 pituitary -8.33e-01 0.000551 0 6:31571218-6:32682664
10003 6 32627244 32636160 HLA-DQB1 thyroid -2.24e-01 0.000622 0 6:31571218-6:32682664
10166 6 31938943 31949228 STK19 thyroid 8.05e-01 0.000315 0 6:31571218-6:32682664
10136 6 32006042 32009447 CYP21A2 brain_hippocampus 9.87e-01 0.000352 0 6:31571218-6:32682664
10091 6 32627244 32636160 HLA-DQB1 brain_cerebellar_hemisphere 3.89e-02 0.000447 0 6:31571218-6:32682664
10023 6 32723875 32731311 HLA-DQB2 brain_cerebellar_hemisphere 6.39e-01 0.000579 0 6:31571218-6:32682664
10071 6 32723875 32731311 HLA-DQB2 thyroid -1.09e-01 0.000485 0 6:31571218-6:32682664
10131 6 32006042 32009447 CYP21A2 brain_caudate_basal_ganglia 1.12e+00 0.000358 0 6:31571218-6:32682664
9968 6 32628132 32628506 HLA-DQB1-AS1 brain_hippocampus -7.02e-01 0.000720 0 6:31571218-6:32682664
9897 6 32407619 32412823 HLA-DRA thyroid 2.86e+00 0.001310 1 6:31571218-6:32682664
9849 6 32427598 32441277 HLA-DRB9 thyroid 1.33e+00 0.002020 1 6:31571218-6:32682664
10155 6 31362066 31363272 XXbac-BPG181B23.7 brain_caudate_basal_ganglia 1.46e-01 0.000326 0 6:31571218-6:32682664
10041 6 32162620 32191844 NOTCH4 brain_cortex 3.00e+00 0.000539 0 6:31571218-6:32682664
9994 6 32628132 32628506 HLA-DQB1-AS1 brain_cortex -1.10e+00 0.000668 0 6:31571218-6:32682664
9795 6 31255287 31256741 WASF5P pituitary -4.22e+00 0.003750 1 6:31571218-6:32682664
9906 6 31362066 31363272 XXbac-BPG181B23.7 brain_nucleus_accumbens_basal_ganglia 3.55e+00 0.001220 1 6:31571218-6:32682664
9936 6 32723875 32731311 HLA-DQB2 brain_cerebellum 1.32e+00 0.000988 0 6:31571218-6:32682664
9951 6 32811913 32827362 PSMB9 yfs.blood.rnaarr 1.03e+00 0.000839 0 6:31571218-6:32682664
9943 6 31255287 31256741 WASF5P brain_cerebellum -1.65e+00 0.000897 0 6:31571218-6:32682664
10046 6 32628132 32628506 HLA-DQB1-AS1 thyroid -3.12e-02 0.000528 0 6:31571218-6:32682664
10024 6 31349851 31350065 HLA-S whole_blood 1.34e-01 0.000577 0 6:31571218-6:32682664
10130 6 31745295 31763730 VARS brain_substantia_nigra -1.75e+00 0.000359 0 6:31571218-6:32682664
9913 6 32812986 32821755 TAP1 yfs.blood.rnaarr -2.31e+00 0.001150 1 6:31571218-6:32682664
10013 6 32627244 32636160 HLA-DQB1 brain_amygdala -7.14e-01 0.000597 0 6:31571218-6:32682664
9918 6 31694815 31698357 DDAH2 brain_hypothalamus 2.19e+00 0.001130 1 6:31571218-6:32682664
9902 6 31973466 31976176 CYP21A1P adrenal_gland 3.82e+00 0.001260 1 6:31571218-6:32682664
9877 6 32546546 32557625 HLA-DRB1 brain_frontal_cortex_ba9 -1.84e+00 0.001490 1 6:31571218-6:32682664
9916 6 32485120 32498064 HLA-DRB5 brain_frontal_cortex_ba9 -7.14e-01 0.001140 1 6:31571218-6:32682664
10038 6 31275592 31276326 XXbac-BPG248L24.10 thyroid -1.76e+00 0.000547 0 6:31571218-6:32682664
10066 6 32628132 32628506 HLA-DQB1-AS1 brain_anterior_cingulate_cortex_ba24 6.29e-01 0.000491 0 6:31571218-6:32682664
10220 6 31512239 31514625 ATP6V1G2 pituitary -3.50e-01 0.000243 0 6:31571218-6:32682664
9754 6 31321649 31324219 HLA-B pituitary 3.92e+00 0.012100 1 6:31571218-6:32682664
9761 6 32407648 32412959 HLA-DRA ntr.blood.rnaarr 4.40e+00 0.008390 1 6:31571218-6:32682664
10027 6 31324424 31325414 XXbac-BPG248L24.12 brain_cerebellar_hemisphere 2.71e+00 0.000571 0 6:31571218-6:32682664
10080 6 31362066 31363272 XXbac-BPG181B23.7 adrenal_gland 7.98e-02 0.000465 0 6:31571218-6:32682664
9935 6 31937587 31940069 DXO adrenal_gland -3.81e+00 0.001010 0 6:31571218-6:32682664
9858 6 32520490 32527799 HLA-DRB6 pituitary 2.44e+00 0.001860 1 6:31571218-6:32682664
10069 6 32628132 32628506 HLA-DQB1-AS1 brain_cerebellum -5.53e-01 0.000489 0 6:31571218-6:32682664
10209 6 31371356 31383092 MICA thyroid 3.53e-01 0.000266 0 6:31571218-6:32682664
9801 6 32971955 32977389 HLA-DOA brain_nucleus_accumbens_basal_ganglia 2.03e+00 0.003540 1 6:31571218-6:32682664
10210 6 32780540 32784825 HLA-DOB yfs.blood.rnaarr -5.55e-01 0.000265 0 6:31571218-6:32682664
9888 6 32916390 32936871 HLA-DMA brain_cerebellum -3.87e+00 0.001350 1 6:31571218-6:32682664
10018 6 32627244 32636160 HLA-DQB1 brain_putamen_basal_ganglia -7.35e-01 0.000583 0 6:31571218-6:32682664
10093 6 32902406 32908847 HLA-DMB brain_cerebellum 2.65e-01 0.000440 0 6:31571218-6:32682664
9928 6 31691121 31694491 C6orf25 brain_caudate_basal_ganglia -3.49e+00 0.001070 0 6:31571218-6:32682664
9898 6 31498010 31510225 DDX39B whole_blood -2.89e+00 0.001310 1 6:31571218-6:32682664
10061 6 31802385 31807541 C6orf48 thyroid 6.08e-02 0.000500 0 6:31571218-6:32682664
9914 6 31362066 31363272 XXbac-BPG181B23.7 pituitary -1.70e+00 0.001140 1 6:31571218-6:32682664
9932 6 31362066 31363272 XXbac-BPG181B23.7 brain_putamen_basal_ganglia -9.99e-01 0.001030 0 6:31571218-6:32682664
10086 6 31362066 31363272 XXbac-BPG181B23.7 brain_cortex -4.07e-01 0.000455 0 6:31571218-6:32682664
9990 6 31633168 31637847 CSNK2B brain_cerebellum -2.57e+00 0.000673 0 6:31571218-6:32682664
9744 6 33043703 33054978 HLA-DPB1 thyroid 4.71e+00 0.027500 1 6:31571218-6:32682664
9763 6 31582961 31584798 AIF1 yfs.blood.rnaarr 3.96e+00 0.008050 1 6:31571218-6:32682664
9975 6 31654726 31671221 ABHD16A brain_caudate_basal_ganglia -2.30e+00 0.000706 0 6:31571218-6:32682664
10192 6 31321643 31324989 HLA-B cmc.brain.rnaseq_splicing -1.29e+00 0.000287 0 6:31571218-6:32682664
10171 6 32162620 32191844 NOTCH4 yfs.blood.rnaarr 9.17e-01 0.000311 0 6:31571218-6:32682664
10123 6 32628132 32628506 HLA-DQB1-AS1 pituitary 3.83e-01 0.000369 0 6:31571218-6:32682664
10202 6 31371356 31383092 MICA brain_nucleus_accumbens_basal_ganglia 2.20e-01 0.000275 0 6:31571218-6:32682664
9889 6 32789610 32806557 TAP2 brain_nucleus_accumbens_basal_ganglia -3.87e+00 0.001350 1 6:31571218-6:32682664
10002 6 33043703 33054978 HLA-DPB1 whole_blood -2.49e+00 0.000624 0 6:31571218-6:32682664
9995 6 31949801 31970458 C4A brain_cortex 2.91e+00 0.000664 0 6:31571218-6:32682664
9973 6 32789610 32806557 TAP2 thyroid 8.83e-01 0.000711 0 6:31571218-6:32682664
9978 6 31362066 31363272 XXbac-BPG181B23.7 brain_cerebellar_hemisphere -1.80e+00 0.000704 0 6:31571218-6:32682664
9878 6 31938943 31949228 STK19 adrenal_gland -3.83e+00 0.001480 1 6:31571218-6:32682664
9881 6 31973466 31976176 CYP21A1P brain_nucleus_accumbens_basal_ganglia 3.99e+00 0.001440 1 6:31571218-6:32682664
10205 6 33043703 33054978 HLA-DPB1 yfs.blood.rnaarr 1.08e+00 0.000271 0 6:31571218-6:32682664
10037 6 32627244 32636160 HLA-DQB1 brain_cerebellum -5.98e-01 0.000551 0 6:31571218-6:32682664
10194 6 31938943 31949228 STK19 brain_cerebellum 6.12e-01 0.000281 0 6:31571218-6:32682664
10176 6 31637944 31641553 LY6G5B brain_hippocampus -7.76e-01 0.000308 0 6:31571218-6:32682664
10043 6 32358287 32361463 HCG23 brain_anterior_cingulate_cortex_ba24 -3.22e+00 0.000537 0 6:31571218-6:32682664
9857 6 33043707 33055284 HLA-DPB1 ntr.blood.rnaarr 1.22e+00 0.001870 1 6:31571218-6:32682664
9796 6 32789610 32806557 TAP2 pituitary 2.51e+00 0.003710 1 6:31571218-6:32682664
10054 6 31498010 31510225 DDX39B brain_hypothalamus -2.90e-01 0.000518 0 6:31571218-6:32682664
9893 6 31707725 31730575 MSH5 brain_putamen_basal_ganglia 3.92e+00 0.001340 1 6:31571218-6:32682664
9767 6 31949801 31970458 C4A brain_caudate_basal_ganglia 4.22e+00 0.006810 1 6:31571218-6:32682664
9985 6 31553970 31556685 LST1 cmc.brain.rnaseq_splicing 1.64e+00 0.000685 0 6:31571218-6:32682664
9805 6 33047228 33047637 RPL32P1 thyroid -3.39e+00 0.003260 1 6:31571218-6:32682664
9826 6 33080228 33102442 HLA-DPB2 thyroid -3.44e+00 0.002470 1 6:31571218-6:32682664
10113 6 31324424 31325414 XXbac-BPG248L24.12 adrenal_gland -1.17e+00 0.000387 0 6:31571218-6:32682664
10011 6 31982539 32003195 C4B whole_blood -3.25e+00 0.000605 0 6:31571218-6:32682664
9875 6 33047228 33047637 RPL32P1 adrenal_gland -2.00e+00 0.001540 1 6:31571218-6:32682664
10088 6 33080228 33102442 HLA-DPB2 brain_cerebellum 1.36e+00 0.000455 0 6:31571218-6:32682664
10039 6 32627244 32636160 HLA-DQB1 brain_hippocampus -5.33e-01 0.000545 0 6:31571218-6:32682664
10218 6 31371370 31383090 MICA ntr.blood.rnaarr -6.46e-02 0.000247 0 6:31571218-6:32682664
9942 6 31826829 31830683 NEU1 thyroid -2.05e+00 0.000923 0 6:31571218-6:32682664
10072 6 32627244 32636160 HLA-DQB1 brain_caudate_basal_ganglia -2.75e-01 0.000484 0 6:31571218-6:32682664
9778 6 31949801 31970458 C4A pituitary 4.19e+00 0.005050 1 6:31571218-6:32682664
10159 6 32902406 32908847 HLA-DMB yfs.blood.rnaarr 4.20e-01 0.000322 0 6:31571218-6:32682664
10007 6 31553970 31556685 LST1 cmc.brain.rnaseq_splicing 1.57e+00 0.000613 0 6:31571218-6:32682664
10126 6 32628132 32628506 HLA-DQB1-AS1 whole_blood 2.47e-01 0.000364 0 6:31571218-6:32682664
10142 6 31938943 31949228 STK19 brain_cerebellar_hemisphere 5.55e-01 0.000345 0 6:31571218-6:32682664
10099 6 32485120 32498064 HLA-DRB5 whole_blood 3.78e-01 0.000431 0 6:31571218-6:32682664
9782 6 33032345 33041426 HLA-DPA1 ntr.blood.rnaarr 2.97e+00 0.004830 1 6:31571218-6:32682664
9987 6 32065572 32085815 ATF6B cmc.brain.rnaseq 3.30e+00 0.000683 0 6:31571218-6:32682664
10160 6 31362066 31363272 XXbac-BPG181B23.7 thyroid 6.95e-01 0.000321 0 6:31571218-6:32682664
9785 6 31949801 31970458 C4A brain_hippocampus 4.32e+00 0.004500 1 6:31571218-6:32682664
10014 6 31949801 31970458 C4A brain_cerebellum 3.02e+00 0.000591 0 6:31571218-6:32682664
10140 6 31362066 31363272 XXbac-BPG181B23.7 whole_blood -6.01e-01 0.000345 0 6:31571218-6:32682664
9984 6 32789610 32806557 TAP2 brain_anterior_cingulate_cortex_ba24 -1.86e+00 0.000685 0 6:31571218-6:32682664
10073 6 32627244 32636160 HLA-DQB1 whole_blood -2.17e-01 0.000478 0 6:31571218-6:32682664
9766 6 32709119 32714992 HLA-DQA2 brain_substantia_nigra 3.32e+00 0.006890 1 6:31571218-6:32682664
10221 6 31324424 31325414 XXbac-BPG248L24.12 pituitary -6.63e-02 0.000233 0 6:31571218-6:32682664
10208 6 31371356 31383092 MICA adrenal_gland -2.05e-03 0.000267 0 6:31571218-6:32682664
9788 6 31949801 31970458 C4A brain_frontal_cortex_ba9 3.88e+00 0.004100 1 6:31571218-6:32682664
9806 6 32709119 32714992 HLA-DQA2 brain_caudate_basal_ganglia 3.08e+00 0.003250 1 6:31571218-6:32682664
9800 6 31949801 31970458 C4A brain_amygdala 4.25e+00 0.003550 1 6:31571218-6:32682664
10117 6 31674662 31678372 LY6G6F thyroid 1.04e+00 0.000382 0 6:31571218-6:32682664
10100 6 31236526 31239882 HLA-C brain_amygdala 9.08e-01 0.000427 0 6:31571218-6:32682664
9803 6 31949801 31970458 C4A thyroid 4.07e+00 0.003420 1 6:31571218-6:32682664
10165 6 31362066 31363272 XXbac-BPG181B23.7 brain_substantia_nigra 5.63e-01 0.000317 0 6:31571218-6:32682664
9880 6 32427598 32441277 HLA-DRB9 adrenal_gland 8.95e-01 0.001460 1 6:31571218-6:32682664
9773 6 32936437 32949282 BRD2 brain_caudate_basal_ganglia 3.52e+00 0.005640 1 6:31571218-6:32682664
9808 6 31949801 31970458 C4A brain_putamen_basal_ganglia 3.73e+00 0.003160 1 6:31571218-6:32682664
9771 6 31973466 31976176 CYP21A1P brain_amygdala 4.50e+00 0.006140 1 6:31571218-6:32682664
10181 6 31349851 31350065 HLA-S pituitary -7.72e-01 0.000299 0 6:31571218-6:32682664
10173 6 31371356 31383092 MICA brain_cerebellum 1.17e+00 0.000309 0 6:31571218-6:32682664
10162 6 31926888 31937532 SKIV2L whole_blood 1.54e-01 0.000319 0 6:31571218-6:32682664
9817 6 31949801 31970458 C4A brain_substantia_nigra 4.15e+00 0.002800 1 6:31571218-6:32682664
10084 6 31982539 32003195 C4B brain_cerebellum -2.90e+00 0.000459 0 6:31571218-6:32682664
10118 6 31926888 31937532 SKIV2L brain_cerebellar_hemisphere 4.68e-01 0.000381 0 6:31571218-6:32682664
9811 6 31973466 31976176 CYP21A1P brain_cortex 4.29e+00 0.002980 1 6:31571218-6:32682664
10124 6 31368479 31445283 HCP5 yfs.blood.rnaarr 2.58e+00 0.000367 0 6:31571218-6:32682664
9825 6 32916390 32936871 HLA-DMA thyroid -4.08e+00 0.002500 1 6:31571218-6:32682664
10081 6 31847536 31865464 EHMT2 yfs.blood.rnaarr -1.55e+00 0.000464 0 6:31571218-6:32682664
9821 6 31949801 31970458 C4A brain_anterior_cingulate_cortex_ba24 4.13e+00 0.002610 1 6:31571218-6:32682664
10193 6 31691121 31694491 C6orf25 brain_nucleus_accumbens_basal_ganglia -5.50e-03 0.000285 0 6:31571218-6:32682664
9823 6 31949801 31970458 C4A brain_nucleus_accumbens_basal_ganglia 4.06e+00 0.002510 1 6:31571218-6:32682664
9871 6 32789610 32806557 TAP2 brain_hippocampus 2.92e+00 0.001650 1 6:31571218-6:32682664
9907 6 32427598 32441277 HLA-DRB9 whole_blood 1.40e+00 0.001220 1 6:31571218-6:32682664
9970 6 31654726 31671221 ABHD16A adrenal_gland 2.90e+00 0.000715 0 6:31571218-6:32682664
9764 6 33032346 33041549 HLA-DPA1 whole_blood -3.98e+00 0.007910 1 6:31571218-6:32682664
9755 6 31830969 31846823 SLC44A4 thyroid -4.62e+00 0.012000 1 6:31571218-6:32682664
10090 6 31982539 32003195 C4B adrenal_gland -8.87e-01 0.000452 0 6:31571218-6:32682664
9840 6 33112560 33115544 HCG24 brain_putamen_basal_ganglia 2.76e+00 0.002290 1 6:31571218-6:32682664
9779 6 31694816 31698039 DDAH2 cmc.brain.rnaseq 4.20e+00 0.004890 1 6:31571218-6:32682664
9775 6 32709119 32714992 HLA-DQA2 brain_nucleus_accumbens_basal_ganglia 3.19e+00 0.005410 1 6:31571218-6:32682664
9939 6 31321649 31324219 HLA-B brain_frontal_cortex_ba9 6.23e-01 0.000972 0 6:31571218-6:32682664
9855 6 32520490 32527799 HLA-DRB6 brain_hypothalamus 2.32e+00 0.001890 1 6:31571218-6:32682664
9869 6 31462658 31478901 MICB yfs.blood.rnaarr 2.65e+00 0.001670 1 6:31571218-6:32682664
9989 6 31644461 31651817 LY6G5C brain_cerebellar_hemisphere 1.64e+00 0.000673 0 6:31571218-6:32682664
10153 6 31976391 31980249 TNXA brain_cerebellar_hemisphere 5.72e-01 0.000328 0 6:31571218-6:32682664
9891 6 32936437 32949282 BRD2 thyroid 3.87e+00 0.001350 1 6:31571218-6:32682664
9827 6 33032346 33041549 HLA-DPA1 brain_cerebellum 3.44e+00 0.002470 1 6:31571218-6:32682664
9776 6 32709119 32714992 HLA-DQA2 brain_cerebellum 3.36e+00 0.005350 1 6:31571218-6:32682664
9837 6 32709119 32714992 HLA-DQA2 brain_hypothalamus 2.81e+00 0.002400 1 6:31571218-6:32682664
10094 6 31982539 32003195 C4B brain_cortex -2.95e+00 0.000438 0 6:31571218-6:32682664
10151 6 31982539 32003195 C4B brain_cerebellar_hemisphere -1.96e+00 0.000332 0 6:31571218-6:32682664
10150 6 32723875 32731311 HLA-DQB2 brain_frontal_cortex_ba9 9.00e-01 0.000333 0 6:31571218-6:32682664
10185 6 31982539 32003195 C4B brain_anterior_cingulate_cortex_ba24 6.42e-01 0.000293 0 6:31571218-6:32682664
10161 6 31926580 31937532 SKIV2L cmc.brain.rnaseq 1.00e+00 0.000320 0 6:31571218-6:32682664
9958 6 31556672 31560762 NCR3 yfs.blood.rnaarr 2.65e+00 0.000798 0 6:31571218-6:32682664
10120 6 31498010 31510225 DDX39B brain_cerebellar_hemisphere 6.12e-01 0.000376 0 6:31571218-6:32682664
10217 6 31982539 32003195 C4B thyroid 4.93e-01 0.000248 0 6:31571218-6:32682664
9966 6 31462658 31478901 MICB whole_blood 2.74e+00 0.000729 0 6:31571218-6:32682664
10191 6 32936437 32949282 BRD2 brain_cerebellum -1.02e+00 0.000288 0 6:31571218-6:32682664
10149 6 31362066 31363272 XXbac-BPG181B23.7 brain_hypothalamus -2.44e-01 0.000333 0 6:31571218-6:32682664
9810 6 33112560 33115544 HCG24 brain_hypothalamus 2.60e+00 0.003010 1 6:31571218-6:32682664
9819 6 31973466 31976176 CYP21A1P brain_hypothalamus 4.04e+00 0.002760 1 6:31571218-6:32682664
9864 6 31949801 31970458 C4A whole_blood 3.95e+00 0.001790 1 6:31571218-6:32682664
9993 6 31362066 31363272 XXbac-BPG181B23.7 brain_hippocampus 1.80e+00 0.000668 0 6:31571218-6:32682664
10168 6 32781499 32806547 TAP2 cmc.brain.rnaseq_splicing -3.39e-01 0.000314 0 6:31571218-6:32682664
10047 6 31462658 31478901 MICB brain_frontal_cortex_ba9 1.77e+00 0.000525 0 6:31571218-6:32682664
9921 6 33032346 33041549 HLA-DPA1 thyroid 3.14e+00 0.001100 0 6:31571218-6:32682664
10000 6 31362066 31363272 XXbac-BPG181B23.7 brain_anterior_cingulate_cortex_ba24 1.91e+00 0.000627 0 6:31571218-6:32682664
9931 6 31556687 31560762 NCR3 whole_blood -1.64e+00 0.001060 0 6:31571218-6:32682664
10146 6 31926888 31937532 SKIV2L brain_substantia_nigra -9.95e-01 0.000338 0 6:31571218-6:32682664
9834 6 31644461 31651817 LY6G5C whole_blood 2.08e+00 0.002410 1 6:31571218-6:32682664
9852 6 32485120 32498064 HLA-DRB5 brain_anterior_cingulate_cortex_ba24 -1.07e+00 0.001940 1 6:31571218-6:32682664
9814 6 32520490 32527799 HLA-DRB6 brain_frontal_cortex_ba9 2.93e+00 0.002940 1 6:31571218-6:32682664
10104 6 31795512 31798031 HSPA1B whole_blood -1.99e+00 0.000416 0 6:31571218-6:32682664
10068 6 31236526 31239882 HLA-C brain_nucleus_accumbens_basal_ganglia 1.67e+00 0.000490 0 6:31571218-6:32682664
9929 6 31976391 31980249 TNXA thyroid 1.78e+00 0.001070 0 6:31571218-6:32682664
9774 6 32846948 32847625 PPP1R2P1 brain_cortex -3.69e+00 0.005450 1 6:31571218-6:32682664
9777 6 33080228 33102442 HLA-DPB2 brain_nucleus_accumbens_basal_ganglia 4.09e+00 0.005140 1 6:31571218-6:32682664
9896 6 33112560 33115544 HCG24 brain_anterior_cingulate_cortex_ba24 3.04e+00 0.001320 1 6:31571218-6:32682664
9977 6 31236526 31239907 HLA-C cmc.brain.rnaseq_splicing -1.82e+00 0.000704 0 6:31571218-6:32682664
10020 6 33112560 33115544 HCG24 brain_caudate_basal_ganglia 6.39e-01 0.000579 0 6:31571218-6:32682664
10070 6 31777396 31783437 HSPA1L yfs.blood.rnaarr 1.01e+00 0.000487 0 6:31571218-6:32682664
9798 6 31588497 31605548 PRRC2A thyroid 3.81e+00 0.003640 1 6:31571218-6:32682664
10067 6 31236526 31239882 HLA-C brain_anterior_cingulate_cortex_ba24 1.67e+00 0.000490 0 6:31571218-6:32682664
9872 6 32485120 32498064 HLA-DRB5 yfs.blood.rnaarr -1.32e+00 0.001630 1 6:31571218-6:32682664
9999 6 32223488 32233615 XXbac-BPG154L12.4 brain_nucleus_accumbens_basal_ganglia -1.24e+00 0.000630 0 6:31571218-6:32682664
10050 6 32361740 32374905 BTNL2 brain_caudate_basal_ganglia -1.99e+00 0.000523 0 6:31571218-6:32682664
9851 6 31644461 31651817 LY6G5C thyroid 2.72e+00 0.001980 1 6:31571218-6:32682664
9969 6 33032346 33041549 HLA-DPA1 pituitary 2.42e+00 0.000716 0 6:31571218-6:32682664
10042 6 31512239 31514625 ATP6V1G2 thyroid 1.74e+00 0.000539 0 6:31571218-6:32682664
10012 6 33032346 33048552 HLA-DPA1 yfs.blood.rnaarr 6.42e-01 0.000605 0 6:31571218-6:32682664
9980 6 32723875 32731311 HLA-DQB2 brain_hippocampus 6.73e-01 0.000699 0 6:31571218-6:32682664
9919 6 31633168 31637847 CSNK2B brain_putamen_basal_ganglia -2.39e+00 0.001120 1 6:31571218-6:32682664
9974 6 32006042 32009447 CYP21A2 thyroid 1.40e+00 0.000711 0 6:31571218-6:32682664
9915 6 32485120 32498064 HLA-DRB5 brain_putamen_basal_ganglia -9.80e-01 0.001140 1 6:31571218-6:32682664
9937 6 32485120 32498064 HLA-DRB5 brain_hypothalamus -6.79e-01 0.000986 0 6:31571218-6:32682664
9847 6 31553901 31556686 LST1 yfs.blood.rnaarr -3.48e+00 0.002140 1 6:31571218-6:32682664
9781 6 32709119 32714992 HLA-DQA2 brain_cerebellar_hemisphere 3.36e+00 0.004830 1 6:31571218-6:32682664
9768 6 31694815 31698357 DDAH2 brain_frontal_cortex_ba9 4.36e+00 0.006750 1 6:31571218-6:32682664
10101 6 31462658 31478901 MICB brain_putamen_basal_ganglia -6.31e-01 0.000422 0 6:31571218-6:32682664
10128 6 31462658 31478901 MICB brain_anterior_cingulate_cortex_ba24 4.78e-01 0.000361 0 6:31571218-6:32682664
9769 6 31973466 31976176 CYP21A1P brain_hippocampus 4.51e+00 0.006370 1 6:31571218-6:32682664
10129 6 31462658 31478901 MICB brain_cerebellar_hemisphere -6.61e-01 0.000360 0 6:31571218-6:32682664
9822 6 31973466 31976176 CYP21A1P brain_anterior_cingulate_cortex_ba24 4.27e+00 0.002600 1 6:31571218-6:32682664
10189 6 31498010 31510225 DDX39B brain_cerebellum 1.66e+00 0.000289 0 6:31571218-6:32682664
10028 6 32723875 32731311 HLA-DQB2 brain_amygdala 6.09e-01 0.000571 0 6:31571218-6:32682664
9884 6 32485120 32498064 HLA-DRB5 brain_substantia_nigra -7.44e-01 0.001390 1 6:31571218-6:32682664
9903 6 32546546 32557625 HLA-DRB1 brain_putamen_basal_ganglia -1.90e+00 0.001240 1 6:31571218-6:32682664
10139 6 31462658 31478901 MICB brain_cerebellum 1.38e-01 0.000347 0 6:31571218-6:32682664
9885 6 32485120 32498064 HLA-DRB5 brain_caudate_basal_ganglia -1.01e+00 0.001390 1 6:31571218-6:32682664
9960 6 31321649 31324219 HLA-B brain_cerebellum -3.05e+00 0.000785 0 6:31571218-6:32682664
10045 6 32223488 32233615 XXbac-BPG154L12.4 thyroid 2.78e+00 0.000529 0 6:31571218-6:32682664
9982 6 31321649 31324219 HLA-B brain_cerebellar_hemisphere -4.09e-01 0.000696 0 6:31571218-6:32682664
10110 6 32407619 32412823 HLA-DRA yfs.blood.rnaarr -1.81e+00 0.000393 0 6:31571218-6:32682664
9924 6 31973466 31976176 CYP21A1P brain_cerebellum 3.89e+00 0.001090 0 6:31571218-6:32682664
10172 6 31462658 31478901 MICB brain_hippocampus 5.59e-01 0.000311 0 6:31571218-6:32682664
9934 6 32407648 32412959 HLA-DRA cmc.brain.rnaseq_splicing 2.56e+00 0.001020 0 6:31571218-6:32682664
10198 6 31981047 31981564 STK19P brain_amygdala 1.35e+00 0.000278 0 6:31571218-6:32682664
10182 6 31462658 31478901 MICB thyroid -1.14e+00 0.000296 0 6:31571218-6:32682664
9866 6 31644461 31651817 LY6G5C brain_cortex -9.02e-01 0.001740 1 6:31571218-6:32682664
9890 6 32916390 32936871 HLA-DMA brain_cortex -3.87e+00 0.001350 1 6:31571218-6:32682664
9959 6 31976391 31980249 TNXA adrenal_gland 2.83e+00 0.000796 0 6:31571218-6:32682664
9856 6 32916390 32936871 HLA-DMA pituitary -3.86e+00 0.001880 1 6:31571218-6:32682664
9923 6 32821938 32827362 PSMB9 pituitary -1.42e-01 0.001090 0 6:31571218-6:32682664
9988 6 32485120 32498064 HLA-DRB5 adrenal_gland -2.33e-01 0.000679 0 6:31571218-6:32682664
9830 6 32780540 32784825 HLA-DOB brain_hippocampus 3.44e+00 0.002470 1 6:31571218-6:32682664
10052 6 32361740 32374905 BTNL2 brain_substantia_nigra 2.39e+00 0.000521 0 6:31571218-6:32682664
9838 6 31867384 31869769 ZBTB12 whole_blood 2.01e+00 0.002350 1 6:31571218-6:32682664
9997 6 32723875 32731311 HLA-DQB2 brain_cortex 1.13e+00 0.000646 0 6:31571218-6:32682664
9762 6 32971955 32977389 HLA-DOA thyroid 4.07e+00 0.008230 1 6:31571218-6:32682664
10053 6 31369929 31370027 Y_RNA thyroid -7.28e-01 0.000520 0 6:31571218-6:32682664
10108 6 32358287 32361463 HCG23 thyroid 2.01e+00 0.000400 0 6:31571218-6:32682664
10144 6 31512239 31514625 ATP6V1G2 brain_cerebellum 7.40e-01 0.000341 0 6:31571218-6:32682664
10085 6 31981047 31981564 STK19P brain_frontal_cortex_ba9 1.32e+00 0.000458 0 6:31571218-6:32682664
10063 6 31321649 31324219 HLA-B brain_caudate_basal_ganglia -1.91e+00 0.000498 0 6:31571218-6:32682664
10033 6 31543344 31546113 TNF yfs.blood.rnaarr 1.49e+00 0.000553 0 6:31571218-6:32682664
10211 6 31976391 31980249 TNXA brain_hippocampus 1.50e+00 0.000265 0 6:31571218-6:32682664
10062 6 31802384 31807541 C6orf48 ntr.blood.rnaarr 2.18e+00 0.000499 0 6:31571218-6:32682664
9784 6 31236526 31239882 HLA-C brain_hippocampus -3.83e+00 0.004620 1 6:31571218-6:32682664
9832 6 31937587 31940069 DXO brain_frontal_cortex_ba9 -2.01e+00 0.002460 1 6:31571218-6:32682664
10169 6 31691121 31694491 C6orf25 thyroid -1.39e+00 0.000312 0 6:31571218-6:32682664
10174 6 31321649 31324219 HLA-B thyroid -1.21e+00 0.000309 0 6:31571218-6:32682664
9812 6 32709119 32714992 HLA-DQA2 whole_blood 3.01e+00 0.002970 1 6:31571218-6:32682664
10034 6 31981047 31981564 STK19P brain_hippocampus -1.48e+00 0.000552 0 6:31571218-6:32682664
10078 6 31502421 31509780 BAT1 ntr.blood.rnaarr -9.87e-01 0.000472 0 6:31571218-6:32682664
9783 6 32709119 32714992 HLA-DQA2 brain_amygdala 3.54e+00 0.004810 1 6:31571218-6:32682664
10152 6 31830973 31846823 SLC44A4 ntr.blood.rnaarr -2.42e+00 0.000331 0 6:31571218-6:32682664
10040 6 32485120 32498064 HLA-DRB5 pituitary -2.32e-01 0.000542 0 6:31571218-6:32682664
9833 6 31973466 31976176 CYP21A1P brain_caudate_basal_ganglia 4.24e+00 0.002440 1 6:31571218-6:32682664
9843 6 31973466 31976176 CYP21A1P brain_putamen_basal_ganglia 3.98e+00 0.002220 1 6:31571218-6:32682664
9920 6 31698395 31707540 CLIC1 whole_blood 3.66e+00 0.001110 1 6:31571218-6:32682664
10019 6 32410960 32411702 HLA-DQA1 ntr.blood.rnaarr -6.39e-01 0.000579 0 6:31571218-6:32682664
9938 6 32485120 32498064 HLA-DRB5 brain_cerebellar_hemisphere -9.41e-01 0.000978 0 6:31571218-6:32682664
9998 6 32723875 32731311 HLA-DQB2 pituitary 9.78e-01 0.000640 0 6:31571218-6:32682664
9862 6 31973466 31976176 CYP21A1P pituitary 4.00e+00 0.001800 1 6:31571218-6:32682664
10087 6 32971955 32977389 HLA-DOA brain_cerebellar_hemisphere 1.36e+00 0.000455 0 6:31571218-6:32682664
9952 6 31512239 31514625 ATP6V1G2 brain_caudate_basal_ganglia 2.59e+00 0.000836 0 6:31571218-6:32682664
9831 6 32595956 32611429 HLA-DQA1 brain_nucleus_accumbens_basal_ganglia 3.44e+00 0.002470 1 6:31571218-6:32682664
10095 6 31637944 31641553 LY6G5B brain_frontal_cortex_ba9 1.22e+00 0.000437 0 6:31571218-6:32682664
9922 6 31644461 31651817 LY6G5C brain_putamen_basal_ganglia 1.55e-01 0.001100 0 6:31571218-6:32682664
9746 6 31371356 31383092 MICA brain_cortex -4.29e+00 0.024100 1 6:31571218-6:32682664
10009 6 32723875 32731311 HLA-DQB2 whole_blood 6.42e-01 0.000608 0 6:31571218-6:32682664
9950 6 31973466 31976176 CYP21A1P brain_cerebellar_hemisphere 3.47e+00 0.000861 0 6:31571218-6:32682664
10148 6 31926888 31937532 SKIV2L brain_caudate_basal_ganglia 1.22e-01 0.000334 0 6:31571218-6:32682664
9765 6 31606805 31620482 BAG6 brain_cerebellum 4.10e+00 0.007660 1 6:31571218-6:32682664
9842 6 31937587 31940069 DOM3Z yfs.blood.rnaarr -3.10e+00 0.002230 1 6:31571218-6:32682664
9873 6 31371356 31383092 MICA pituitary -2.11e+00 0.001550 1 6:31571218-6:32682664
10127 6 31371356 31383092 MICA brain_hippocampus 4.73e-01 0.000363 0 6:31571218-6:32682664
10200 6 31629006 31634060 GPANK1 thyroid 1.95e+00 0.000276 0 6:31571218-6:32682664
9844 6 31981047 31981564 STK19P adrenal_gland 4.06e+00 0.002180 1 6:31571218-6:32682664
10065 6 32407648 32412959 HLA-DRA cmc.brain.rnaseq_splicing -2.07e+00 0.000493 0 6:31571218-6:32682664
10206 6 31981047 31981564 STK19P thyroid 1.52e-01 0.000270 0 6:31571218-6:32682664
10167 6 31371356 31383092 MICA brain_cerebellar_hemisphere -1.42e+00 0.000314 0 6:31571218-6:32682664
9927 6 31973466 31976176 CYP21A1P whole_blood 3.91e+00 0.001080 0 6:31571218-6:32682664
9870 6 32006042 32009447 CYP21A2 whole_blood -3.88e+00 0.001650 1 6:31571218-6:32682664
9947 6 32485120 32498064 HLA-DRB5 brain_cortex -9.15e-01 0.000864 0 6:31571218-6:32682664
9867 6 32520490 32527799 HLA-DRB6 brain_hippocampus 2.44e+00 0.001710 1 6:31571218-6:32682664
9905 6 31707725 31730575 MSH5 thyroid 3.63e+00 0.001230 1 6:31571218-6:32682664
9917 6 31694815 31698394 DDAH2 yfs.blood.rnaarr -2.81e+00 0.001130 1 6:31571218-6:32682664
10021 6 32723875 32731311 HLA-DQB2 brain_nucleus_accumbens_basal_ganglia 6.39e-01 0.000579 0 6:31571218-6:32682664
9758 6 31236526 31239882 HLA-C brain_cerebellum -4.07e+00 0.008830 1 6:31571218-6:32682664
9848 6 32520490 32527799 HLA-DRB6 brain_anterior_cingulate_cortex_ba24 2.72e+00 0.002110 1 6:31571218-6:32682664
10119 6 31606805 31620482 BAG6 whole_blood 5.66e-01 0.000379 0 6:31571218-6:32682664
10102 6 31321649 31324219 HLA-B brain_substantia_nigra -1.18e+00 0.000422 0 6:31571218-6:32682664
9770 6 31606805 31620482 BAG6 brain_anterior_cingulate_cortex_ba24 4.10e+00 0.006150 1 6:31571218-6:32682664
9841 6 32709119 32714992 HLA-DQA2 brain_frontal_cortex_ba9 2.69e+00 0.002280 1 6:31571218-6:32682664
10141 6 31926888 31937532 SKIV2L brain_anterior_cingulate_cortex_ba24 3.33e-01 0.000345 0 6:31571218-6:32682664
9859 6 32520490 32527799 HLA-DRB6 brain_substantia_nigra 2.59e+00 0.001820 1 6:31571218-6:32682664
9753 6 31973466 31976176 CYP21A1P brain_substantia_nigra 4.69e+00 0.013300 1 6:31571218-6:32682664
10187 6 31371356 31383092 MICA brain_frontal_cortex_ba9 -3.57e-01 0.000290 0 6:31571218-6:32682664
9940 6 32812985 32821748 TAP1 cmc.brain.rnaseq -1.86e+00 0.000959 0 6:31571218-6:32682664
9802 6 31588497 31605548 PRRC2A whole_blood 3.69e+00 0.003420 1 6:31571218-6:32682664
10103 6 31981047 31981564 STK19P brain_hypothalamus 2.49e+00 0.000417 0 6:31571218-6:32682664
9954 6 32546546 32557625 HLA-DRB1 yfs.blood.rnaarr -7.81e-01 0.000826 0 6:31571218-6:32682664
10082 6 31371356 31383092 MICA yfs.blood.rnaarr 1.65e-01 0.000461 0 6:31571218-6:32682664
9879 6 31976391 31980249 TNXA pituitary 9.04e-01 0.001470 1 6:31571218-6:32682664
9965 6 31512239 31514625 ATP6V1G2 whole_blood 2.01e+00 0.000742 0 6:31571218-6:32682664
10056 6 32781544 32806599 TAP2 yfs.blood.rnaarr 7.33e-01 0.000515 0 6:31571218-6:32682664
9886 6 31976391 31980249 TNXA brain_hypothalamus 2.64e+00 0.001360 1 6:31571218-6:32682664
9860 6 32520490 32527799 HLA-DRB6 brain_caudate_basal_ganglia 2.62e+00 0.001820 1 6:31571218-6:32682664
9772 6 32546546 32557625 HLA-DRB1 brain_substantia_nigra -3.52e+00 0.006010 1 6:31571218-6:32682664
9882 6 32520490 32527799 HLA-DRB6 brain_putamen_basal_ganglia 2.14e+00 0.001420 1 6:31571218-6:32682664
9780 6 32546546 32557625 HLA-DRB1 whole_blood -3.72e+00 0.004890 1 6:31571218-6:32682664
9794 6 31606805 31620482 BAG6 brain_cortex 4.18e+00 0.003940 1 6:31571218-6:32682664
9745 6 31606805 31620482 BAG6 cmc.brain.rnaseq_splicing -4.41e+00 0.024200 1 6:31571218-6:32682664
9963 6 32223488 32233615 XXbac-BPG154L12.4 brain_caudate_basal_ganglia -3.55e+00 0.000759 0 6:31571218-6:32682664
9789 6 31795513 31798031 HSPA1B ntr.blood.rnaarr 3.62e+00 0.004080 1 6:31571218-6:32682664
9757 6 31606805 31620482 BAG6 brain_frontal_cortex_ba9 4.07e+00 0.008830 1 6:31571218-6:32682664
9883 6 32520490 32527799 HLA-DRB6 brain_nucleus_accumbens_basal_ganglia 2.32e+00 0.001420 1 6:31571218-6:32682664
9971 6 32709119 32714992 HLA-DQA2 yfs.blood.rnaarr -2.34e+00 0.000714 0 6:31571218-6:32682664
9967 6 32485120 32498064 HLA-DRB5 brain_amygdala -5.26e-01 0.000728 0 6:31571218-6:32682664
9964 6 32485120 32498064 HLA-DRB5 brain_nucleus_accumbens_basal_ganglia -8.67e-01 0.000759 0 6:31571218-6:32682664
9895 6 32520490 32527799 HLA-DRB6 thyroid 2.31e+00 0.001320 1 6:31571218-6:32682664
10022 6 32723875 32731311 HLA-DQB2 brain_hypothalamus 6.39e-01 0.000579 0 6:31571218-6:32682664
9861 6 32520490 32527799 HLA-DRB6 brain_cerebellar_hemisphere 2.61e+00 0.001810 1 6:31571218-6:32682664
9807 6 32546546 32557625 HLA-DRB1 brain_anterior_cingulate_cortex_ba24 -2.80e+00 0.003250 1 6:31571218-6:32682664
10138 6 31512239 31516204 ATP6V1G2 yfs.blood.rnaarr 1.14e+00 0.000350 0 6:31571218-6:32682664
9925 6 31644461 31651817 LY6G5C brain_nucleus_accumbens_basal_ganglia -2.01e-01 0.001090 0 6:31571218-6:32682664
9759 6 31606805 31620482 BAG6 brain_hypothalamus 4.07e+00 0.008830 1 6:31571218-6:32682664
9816 6 32546546 32557625 HLA-DRB1 brain_cerebellum -1.36e+00 0.002820 1 6:31571218-6:32682664
9835 6 32546546 32557625 HLA-DRB1 brain_caudate_basal_ganglia -1.91e+00 0.002410 1 6:31571218-6:32682664
9845 6 32546546 32557625 HLA-DRB1 pituitary -1.73e+00 0.002180 1 6:31571218-6:32682664
9824 6 32546546 32557625 HLA-DRB1 thyroid -2.64e+00 0.002510 1 6:31571218-6:32682664
10015 6 32723875 32731311 HLA-DQB2 brain_substantia_nigra 6.44e-01 0.000587 0 6:31571218-6:32682664
9908 6 32520490 32527799 HLA-DRB6 whole_blood 1.82e+00 0.001190 1 6:31571218-6:32682664
9865 6 32520490 32527799 HLA-DRB6 brain_amygdala 2.57e+00 0.001790 1 6:31571218-6:32682664
9894 6 31976391 31980249 TNXA brain_substantia_nigra 1.62e+00 0.001330 1 6:31571218-6:32682664
9912 6 31913450 31919861 CFB brain_anterior_cingulate_cortex_ba24 -3.78e+00 0.001160 1 6:31571218-6:32682664
9949 6 31644461 31651817 LY6G5C pituitary 3.51e-01 0.000862 0 6:31571218-6:32682664
10143 6 31926888 31937532 SKIV2L brain_hippocampus 2.10e-01 0.000344 0 6:31571218-6:32682664
10154 6 31926888 31937532 SKIV2L brain_frontal_cortex_ba9 3.20e-01 0.000326 0 6:31571218-6:32682664
9751 6 31633013 31638120 CSNK2B yfs.blood.rnaarr -4.34e+00 0.016400 1 6:31571218-6:32682664
10029 6 31937587 31940069 DXO brain_nucleus_accumbens_basal_ganglia -1.36e+00 0.000569 0 6:31571218-6:32682664
10032 6 31694503 31698040 DDAH2 ntr.blood.rnaarr -1.57e+00 0.000563 0 6:31571218-6:32682664
9909 6 32520490 32527799 HLA-DRB6 brain_cortex 1.73e+00 0.001190 1 6:31571218-6:32682664
9854 6 32520490 32527799 HLA-DRB6 brain_cerebellum 2.82e+00 0.001900 1 6:31571218-6:32682664
9904 6 32485120 32498064 HLA-DRB5 brain_hippocampus -8.80e-01 0.001240 1 6:31571218-6:32682664
9749 6 31694815 31698357 DDAH2 brain_cortex 4.36e+00 0.018500 1 6:31571218-6:32682664
9828 6 33112560 33115544 HCG24 brain_nucleus_accumbens_basal_ganglia 3.44e+00 0.002470 1 6:31571218-6:32682664
10201 6 31371356 31383092 MICA brain_caudate_basal_ganglia -5.98e-01 0.000276 0 6:31571218-6:32682664
10089 6 31629006 31634060 GPANK1 brain_cortex 1.76e-01 0.000453 0 6:31571218-6:32682664
9961 6 31644461 31651817 LY6G5C brain_cerebellum 1.73e-01 0.000781 0 6:31571218-6:32682664
9846 6 31606805 31620482 BAG6 brain_amygdala 3.32e+00 0.002160 1 6:31571218-6:32682664
10197 6 31686425 31689622 LY6G6C brain_nucleus_accumbens_basal_ganglia -1.06e+00 0.000279 0 6:31571218-6:32682664
9756 6 31973466 31976176 CYP21A1P thyroid 4.61e+00 0.009360 1 6:31571218-6:32682664
9986 6 31644461 31651817 LY6G5C brain_caudate_basal_ganglia 1.06e+00 0.000683 0 6:31571218-6:32682664
10006 6 32595956 32611429 HLA-DQA1 whole_blood -6.26e-01 0.000614 0 6:31571218-6:32682664
9926 6 31371356 31383092 MICA whole_blood 2.83e+00 0.001080 0 6:31571218-6:32682664
10008 6 32595956 32611429 HLA-DQA1 brain_caudate_basal_ganglia -6.28e-01 0.000609 0 6:31571218-6:32682664
9863 6 32595956 32611429 HLA-DQA1 adrenal_gland 3.01e+00 0.001800 1 6:31571218-6:32682664
10158 6 31371356 31383092 MICA brain_anterior_cingulate_cortex_ba24 -1.38e+00 0.000325 0 6:31571218-6:32682664
10180 6 31512239 31514625 ATP6V1G2 brain_nucleus_accumbens_basal_ganglia -1.88e-01 0.000300 0 6:31571218-6:32682664
9752 6 31973466 31976176 CYP21A1P brain_frontal_cortex_ba9 4.71e+00 0.015500 1 6:31571218-6:32682664
10059 6 31371356 31383092 MICA brain_putamen_basal_ganglia 2.14e+00 0.000502 0 6:31571218-6:32682664
9804 6 32595956 32614839 HLA-DQA1 yfs.blood.rnaarr 3.40e+00 0.003320 1 6:31571218-6:32682664
9742 6 31606805 31620482 BAG6 cmc.brain.rnaseq_splicing -5.48e+00 0.538000 1 6:31571218-6:32682664
10410 6 34555065 34664636 C6orf106 brain_caudate_basal_ganglia -6.35e-01 0.000280 0 6:33236497-6:35455407
10443 6 34725183 34741571 SNRPC brain_caudate_basal_ganglia -1.51e-01 0.000260 0 6:33236497-6:35455407
12937 6 35748794 35761452 CLPSL1 psychencode -5.91e-02 0.000242 0 6:33236497-6:35455407
10445 6 35800743 35889119 SRPK1 yfs.blood.rnaarr 6.04e-01 0.000260 0 6:33236497-6:35455407
10330 6 34555065 34664636 C6orf106 adrenal_gland -1.17e+00 0.000406 0 6:33236497-6:35455407
10248 6 35800743 35889119 SRPK1 brain_amygdala 1.81e+00 0.001640 1 6:33236497-6:35455407
10295 6 34555065 34664625 C6orf106 cmc.brain.rnaseq -1.49e+00 0.000587 0 6:33236497-6:35455407
10326 6 34555065 34664636 C6orf106 brain_anterior_cingulate_cortex_ba24 -1.22e+00 0.000419 0 6:33236497-6:35455407
10360 6 35436185 35438562 RPL10A whole_blood 9.39e-01 0.000325 0 6:33236497-6:35455407
10381 6 34725183 34741571 SNRPC brain_hippocampus 7.79e-01 0.000306 0 6:33236497-6:35455407
10321 6 34759793 34853118 UHRF1BP1 cmc.brain.rnaseq_splicing -1.31e+00 0.000438 0 6:33236497-6:35455407
10328 6 35436185 35438562 RPL10A brain_cerebellum 1.19e+00 0.000409 0 6:33236497-6:35455407
10394 6 35436185 35438562 RPL10A brain_cortex 1.09e+00 0.000295 0 6:33236497-6:35455407
10332 6 35436185 35438562 RPL10A adrenal_gland 1.13e+00 0.000394 0 6:33236497-6:35455407
10468 6 34724870 34741634 SNRPC cmc.brain.rnaseq 3.41e-01 0.000253 0 6:33236497-6:35455407
10289 6 35800743 35889119 SRPK1 brain_anterior_cingulate_cortex_ba24 1.39e+00 0.000626 0 6:33236497-6:35455407
10327 6 34711953 34712450 RP3-375P9.2 brain_hippocampus -1.05e+00 0.000410 0 6:33236497-6:35455407
10316 6 35800743 35889119 SRPK1 whole_blood -1.42e+00 0.000455 0 6:33236497-6:35455407
10469 6 34725183 34741571 SNRPC adrenal_gland -3.58e-03 0.000252 0 6:33236497-6:35455407
10312 6 34385231 34393902 RPS10 brain_putamen_basal_ganglia 9.28e-01 0.000484 0 6:33236497-6:35455407
10335 6 34254546 34360451 NUDT3 thyroid -1.08e+00 0.000389 0 6:33236497-6:35455407
10393 6 34725183 34741571 SNRPC brain_cerebellum -5.77e-01 0.000296 0 6:33236497-6:35455407
10416 6 34555065 34664636 C6orf106 brain_hippocampus -6.06e-01 0.000277 0 6:33236497-6:35455407
10486 6 35704809 35716856 ARMC12 thyroid -3.91e-02 0.000244 0 6:33236497-6:35455407
10433 6 33738979 33756913 LEMD2 thyroid 1.79e-01 0.000264 0 6:33236497-6:35455407
10444 6 33738979 33756913 LEMD2 brain_cerebellum -7.62e-01 0.000260 0 6:33236497-6:35455407
13206 6 32780540 32784825 HLA-DOB psychencode 1.11e+00 0.000354 0 6:33236497-6:35455407
10372 6 32789610 32806557 TAP2 brain_cerebellar_hemisphere 1.11e+00 0.000315 0 6:33236497-6:35455407
10379 6 34555065 34664636 C6orf106 brain_putamen_basal_ganglia -7.86e-01 0.000308 0 6:33236497-6:35455407
10375 6 33244917 33252609 B3GALT4 yfs.blood.rnaarr 8.67e-01 0.000313 0 6:33236497-6:35455407
10347 6 35744371 35747329 CLPSL2 brain_cortex 8.07e-01 0.000351 0 6:33236497-6:35455407
10478 6 34724870 34741634 SNRPC cmc.brain.rnaseq_splicing 2.48e-01 0.000248 0 6:33236497-6:35455407
10405 6 35436177 35438558 RPL10A cmc.brain.rnaseq_splicing -7.34e-01 0.000285 0 6:33236497-6:35455407
10419 6 33663126 33679504 UQCC2 brain_frontal_cortex_ba9 4.27e-01 0.000273 0 6:33236497-6:35455407
11784 6 35541362 35696360 FKBP5 psychencode 3.34e-01 0.000274 0 6:33236497-6:35455407
10368 6 32789610 32806557 TAP2 brain_nucleus_accumbens_basal_ganglia 1.12e+00 0.000318 0 6:33236497-6:35455407
10477 6 34759857 34850915 UHRF1BP1 brain_putamen_basal_ganglia -1.86e-01 0.000248 0 6:33236497-6:35455407
10294 6 35420137 35434881 FANCE cmc.brain.rnaseq 1.20e+00 0.000594 0 6:33236497-6:35455407
10395 6 34725183 34741571 SNRPC yfs.blood.rnaarr -5.61e-01 0.000295 0 6:33236497-6:35455407
10455 6 35800743 35889119 SRPK1 brain_frontal_cortex_ba9 3.90e-01 0.000257 0 6:33236497-6:35455407
10438 6 32812986 32821755 TAP1 whole_blood 2.29e-02 0.000262 0 6:33236497-6:35455407
10223 6 33246885 33257078 WDR46 brain_cerebellum -4.66e+00 0.314000 1 6:33236497-6:35455407
10484 6 35465651 35480715 TULP1 brain_amygdala -4.59e-01 0.000246 0 6:33236497-6:35455407
10362 6 35512409 35513446 RP3-340B19.3 thyroid -5.47e-01 0.000324 0 6:33236497-6:35455407
12939 6 33551515 33556803 GGNBP1 psychencode 9.15e-01 0.000279 0 6:33236497-6:35455407
10286 6 34555065 34664636 C6orf106 brain_cortex -1.54e+00 0.000696 0 6:33236497-6:35455407
10476 6 34759857 34850915 UHRF1BP1 brain_frontal_cortex_ba9 -2.95e-02 0.000249 0 6:33236497-6:35455407
10488 6 35800743 35889119 SRPK1 brain_cerebellar_hemisphere 6.48e-02 0.000244 0 6:33236497-6:35455407
10225 6 33080228 33102442 HLA-DPB2 whole_blood -3.65e+00 0.028400 1 6:33236497-6:35455407
10397 6 35310335 35395968 PPARD brain_cerebellum 3.64e-01 0.000293 0 6:33236497-6:35455407
10374 6 33540329 33548019 BAK1 thyroid 3.43e-01 0.000314 0 6:33236497-6:35455407
10440 6 32789610 32806557 TAP2 adrenal_gland -3.77e-01 0.000261 0 6:33236497-6:35455407
10431 6 35465651 35480715 TULP1 brain_hypothalamus -1.94e-01 0.000264 0 6:33236497-6:35455407
10414 6 32811913 32827362 PSMB9 yfs.blood.rnaarr -8.51e-01 0.000277 0 6:33236497-6:35455407
10425 6 33551515 33556803 GGNBP1 brain_cortex 1.26e+00 0.000270 0 6:33236497-6:35455407
10280 6 35748794 35761452 CLPSL1 brain_cortex 9.96e-01 0.000809 0 6:33236497-6:35455407
10333 6 32808494 32812480 PSMB8 yfs.blood.rnaarr 1.42e+00 0.000392 0 6:33236497-6:35455407
10446 6 33246885 33257078 WDR46 thyroid -4.78e-01 0.000260 0 6:33236497-6:35455407
10305 6 35436177 35438558 RPL10A cmc.brain.rnaseq 1.37e+00 0.000511 0 6:33236497-6:35455407
10315 6 33553883 33561115 LINC00336 brain_hypothalamus 5.52e-02 0.000460 0 6:33236497-6:35455407
10441 6 34725183 34741571 SNRPC brain_putamen_basal_ganglia -1.90e-01 0.000261 0 6:33236497-6:35455407
10387 6 34725183 34741571 SNRPC whole_blood -4.89e-01 0.000304 0 6:33236497-6:35455407
10392 6 35465651 35480715 TULP1 brain_hippocampus 6.19e-01 0.000297 0 6:33236497-6:35455407
10413 6 32789610 32806557 TAP2 brain_hippocampus 8.51e-01 0.000277 0 6:33236497-6:35455407
10399 6 33130458 33160276 COL11A2 pituitary 1.03e+00 0.000290 0 6:33236497-6:35455407
10361 6 35465651 35480715 TULP1 brain_caudate_basal_ganglia -8.05e-01 0.000324 0 6:33236497-6:35455407
12946 6 32808494 32812480 PSMB8 psychencode 2.86e-01 0.000252 0 6:33236497-6:35455407
10474 6 34759857 34850915 UHRF1BP1 pituitary -5.12e-02 0.000249 0 6:33236497-6:35455407
10238 6 32916390 32936871 HLA-DMA brain_cerebellum -2.40e+00 0.002260 1 6:33236497-6:35455407
10459 6 34759857 34850915 UHRF1BP1 thyroid 1.06e-01 0.000254 0 6:33236497-6:35455407
10298 6 33172419 33174608 HSD17B8 thyroid 2.12e+00 0.000545 0 6:33236497-6:35455407
10432 6 34555065 34664636 C6orf106 brain_frontal_cortex_ba9 -4.59e-01 0.000264 0 6:33236497-6:35455407
10451 6 32789610 32806557 TAP2 brain_frontal_cortex_ba9 3.31e-01 0.000257 0 6:33236497-6:35455407
10464 6 35420138 35434880 FANCE yfs.blood.rnaarr 2.36e-01 0.000254 0 6:33236497-6:35455407
13053 6 33080228 33102442 HLA-DPB2 psychencode 7.51e-01 0.000262 0 6:33236497-6:35455407
10450 6 34759793 34850915 UHRF1BP1 ntr.blood.rnaarr 9.70e-02 0.000257 0 6:33236497-6:35455407
10266 6 32780540 32784825 HLA-DOB brain_substantia_nigra 1.51e+00 0.000993 0 6:33236497-6:35455407
12940 6 33286335 33297046 DAXX psychencode -1.03e+00 0.000322 0 6:33236497-6:35455407
13129 6 33032346 33048552 HLA-DPA1 psychencode 6.61e-01 0.000293 0 6:33236497-6:35455407
10471 6 34759793 34853118 UHRF1BP1 cmc.brain.rnaseq 9.81e-03 0.000251 0 6:33236497-6:35455407
12945 6 32971955 32977389 HLA-DOA psychencode -6.56e-01 0.000296 0 6:33236497-6:35455407
10227 6 33043703 33054978 HLA-DPB1 thyroid 3.68e+00 0.010700 1 6:33236497-6:35455407
10234 6 33043703 33054978 HLA-DPB1 brain_cerebellum 2.97e+00 0.003510 1 6:33236497-6:35455407
10272 6 33043703 33054978 HLA-DPB1 whole_blood 2.02e+00 0.000895 0 6:33236497-6:35455407
10420 6 33043703 33054978 HLA-DPB1 yfs.blood.rnaarr 5.26e-01 0.000272 0 6:33236497-6:35455407
13045 6 33043703 33054978 HLA-DPB1 psychencode -1.87e+00 0.000931 0 6:33236497-6:35455407
10302 6 33130458 33160276 COL11A2 thyroid 2.16e+00 0.000532 0 6:33236497-6:35455407
10271 6 34555065 34664636 C6orf106 thyroid -1.67e+00 0.000935 0 6:33236497-6:35455407
10390 6 32789610 32806557 TAP2 brain_anterior_cingulate_cortex_ba24 9.87e-01 0.000300 0 6:33236497-6:35455407
10260 6 33043707 33055284 HLA-DPB1 ntr.blood.rnaarr 2.73e+00 0.001160 0 6:33236497-6:35455407
10483 6 34555065 34664625 C6orf106 cmc.brain.rnaseq_splicing -1.36e-01 0.000246 0 6:33236497-6:35455407
10365 6 33098993 33111102 HLA-DPA3 brain_cerebellar_hemisphere -2.77e-02 0.000323 0 6:33236497-6:35455407
10268 6 33384318 33386065 CUTA cmc.brain.rnaseq_splicing 1.97e+00 0.000984 0 6:33236497-6:35455407
10475 6 34759857 34850915 UHRF1BP1 brain_cerebellum -2.89e-01 0.000249 0 6:33236497-6:35455407
12875 6 34555065 34664636 C6orf106 psychencode -1.78e+00 0.000936 0 6:33236497-6:35455407
10249 6 33663126 33679504 UQCC2 brain_nucleus_accumbens_basal_ganglia -2.85e+00 0.001570 1 6:33236497-6:35455407
10269 6 33080228 33102442 HLA-DPB2 brain_nucleus_accumbens_basal_ganglia -1.63e+00 0.000967 0 6:33236497-6:35455407
10422 6 32789610 32806557 TAP2 brain_hypothalamus 7.07e-01 0.000271 0 6:33236497-6:35455407
10341 6 32812986 32821755 TAP1 yfs.blood.rnaarr 1.36e+00 0.000376 0 6:33236497-6:35455407
10460 6 34725183 34741571 SNRPC brain_nucleus_accumbens_basal_ganglia -4.69e-02 0.000254 0 6:33236497-6:35455407
10300 6 34555065 34664636 C6orf106 whole_blood -1.42e+00 0.000535 0 6:33236497-6:35455407
10255 6 33032345 33041426 HLA-DPA1 cmc.brain.rnaseq_splicing -1.65e+00 0.001350 0 6:33236497-6:35455407
10324 6 35800743 35889119 SRPK1 brain_nucleus_accumbens_basal_ganglia 1.06e+00 0.000430 0 6:33236497-6:35455407
10461 6 34759857 34850915 UHRF1BP1 yfs.blood.rnaarr 7.04e-02 0.000254 0 6:33236497-6:35455407
10320 6 33032346 33041549 HLA-DPA1 whole_blood 1.12e+00 0.000439 0 6:33236497-6:35455407
10344 6 33032346 33041549 HLA-DPA1 brain_cerebellum 1.34e+00 0.000371 0 6:33236497-6:35455407
12992 6 33422356 33425325 ZBTB9 psychencode -2.26e+00 0.000654 0 6:33236497-6:35455407
10263 6 32916390 32936871 HLA-DMA yfs.blood.rnaarr -2.07e+00 0.001080 0 6:33236497-6:35455407
10278 6 33032345 33041426 HLA-DPA1 ntr.blood.rnaarr 2.38e+00 0.000831 0 6:33236497-6:35455407
10250 6 33080228 33102442 HLA-DPB2 thyroid -1.93e+00 0.001520 1 6:33236497-6:35455407
10339 6 34759857 34850915 UHRF1BP1 brain_hippocampus 7.05e-01 0.000379 0 6:33236497-6:35455407
10376 6 35800808 35888964 SRPK1 ntr.blood.rnaarr -7.25e-01 0.000311 0 6:33236497-6:35455407
10306 6 34247456 34360451 NUDT3 yfs.blood.rnaarr -1.27e+00 0.000506 0 6:33236497-6:35455407
12942 6 33172419 33174608 HSD17B8 psychencode -1.48e+00 0.000676 0 6:33236497-6:35455407
10355 6 33422356 33425325 ZBTB9 yfs.blood.rnaarr 1.16e+00 0.000335 0 6:33236497-6:35455407
10254 6 33047228 33047637 RPL32P1 thyroid 2.58e+00 0.001400 0 6:33236497-6:35455407
13081 6 33246885 33257304 WDR46 psychencode -1.47e+00 0.000317 0 6:33236497-6:35455407
10267 6 33384231 33386094 CUTA thyroid -1.87e+00 0.000992 0 6:33236497-6:35455407
10270 6 33047228 33047637 RPL32P1 adrenal_gland 2.18e+00 0.000952 0 6:33236497-6:35455407
10317 6 32916390 32936871 HLA-DMA thyroid -9.70e-01 0.000452 0 6:33236497-6:35455407
10406 6 32821938 32827362 PSMB9 pituitary -8.46e-01 0.000284 0 6:33236497-6:35455407
10243 6 33588142 33664351 ITPR3 yfs.blood.rnaarr 3.12e+00 0.002160 1 6:33236497-6:35455407
10340 6 34845555 34855866 TAF11 thyroid 9.84e-01 0.000376 0 6:33236497-6:35455407
10388 6 33172472 33174607 HSD17B8 cmc.brain.rnaseq_splicing 3.79e-01 0.000300 0 6:33236497-6:35455407
10415 6 33112560 33115544 HCG24 brain_cortex -8.51e-01 0.000277 0 6:33236497-6:35455407
10293 6 33112560 33115544 HCG24 brain_cerebellar_hemisphere 1.62e+00 0.000595 0 6:33236497-6:35455407
10318 6 33112560 33115544 HCG24 brain_nucleus_accumbens_basal_ganglia 6.15e-01 0.000446 0 6:33236497-6:35455407
10452 6 33738989 33756906 LEMD2 cmc.brain.rnaseq -3.83e-01 0.000257 0 6:33236497-6:35455407
10412 6 32789610 32806557 TAP2 pituitary -8.20e-01 0.000278 0 6:33236497-6:35455407
10404 6 33540329 33548019 BAK1 pituitary 4.39e-01 0.000287 0 6:33236497-6:35455407
13506 6 35188147 35192407 RP3-329A5.8 psychencode 1.14e-02 0.000246 0 6:33236497-6:35455407
10244 6 33112560 33115544 HCG24 brain_cerebellum 2.77e+00 0.002070 1 6:33236497-6:35455407
10258 6 34857042 35059179 ANKS1A brain_amygdala 1.86e+00 0.001230 0 6:33236497-6:35455407
10482 6 32780540 32784825 HLA-DOB whole_blood 2.48e-01 0.000246 0 6:33236497-6:35455407
10470 6 33738979 33756913 LEMD2 brain_cortex -3.01e-01 0.000252 0 6:33236497-6:35455407
10442 6 34725183 34741571 SNRPC brain_frontal_cortex_ba9 -1.16e-01 0.000260 0 6:33236497-6:35455407
11944 6 33384219 33386094 CUTA psychencode 6.49e-01 0.000423 0 6:33236497-6:35455407
10342 6 33378176 33384218 PHF1 brain_caudate_basal_ganglia 1.94e+00 0.000376 0 6:33236497-6:35455407
10408 6 33080228 33102442 HLA-DPB2 brain_cerebellar_hemisphere 3.59e-01 0.000282 0 6:33236497-6:35455407
10310 6 33257305 33266178 PFDN6 brain_nucleus_accumbens_basal_ganglia 1.40e-01 0.000499 0 6:33236497-6:35455407
10301 6 35436185 35438562 RPL10A brain_cerebellar_hemisphere 1.34e+00 0.000535 0 6:33236497-6:35455407
13145 6 33217311 33222766 HCG25 psychencode 7.93e-02 0.000277 0 6:33236497-6:35455407
10222 6 33218049 33239786 VPS52 adrenal_gland 4.70e+00 0.418000 1 6:33236497-6:35455407
10247 6 34857042 35059179 ANKS1A brain_cortex 2.00e+00 0.001820 1 6:33236497-6:35455407
10448 6 33218049 33239824 VPS52 yfs.blood.rnaarr -9.62e-01 0.000259 0 6:33236497-6:35455407
10398 6 32902406 32908847 HLA-DMB brain_cerebellum -9.65e-01 0.000292 0 6:33236497-6:35455407
10354 6 33161365 33168221 RXRB brain_hippocampus 1.26e-01 0.000336 0 6:33236497-6:35455407
13041 6 33218049 33239824 VPS52 psychencode -8.63e-01 0.000258 0 6:33236497-6:35455407
10403 6 32812985 32821748 TAP1 cmc.brain.rnaseq -2.05e-01 0.000287 0 6:33236497-6:35455407
13505 6 34247456 34360451 NUDT3 psychencode 1.00e+00 0.000374 0 6:33236497-6:35455407
10363 6 33080228 33102442 HLA-DPB2 brain_putamen_basal_ganglia 1.59e+00 0.000324 0 6:33236497-6:35455407
10346 6 33588142 33664351 ITPR3 adrenal_gland 2.00e+00 0.000357 0 6:33236497-6:35455407
10232 6 32936437 32949282 BRD2 brain_caudate_basal_ganglia -3.26e+00 0.005560 1 6:33236497-6:35455407
10402 6 33239787 33244287 RPS18 yfs.blood.rnaarr 1.15e-01 0.000287 0 6:33236497-6:35455407
10241 6 33553883 33561115 LINC00336 brain_frontal_cortex_ba9 1.63e+00 0.002230 1 6:33236497-6:35455407
10424 6 34759857 34850915 UHRF1BP1 brain_amygdala -5.81e-01 0.000271 0 6:33236497-6:35455407
10356 6 33663126 33679504 UQCC2 adrenal_gland -1.49e+00 0.000334 0 6:33236497-6:35455407
10380 6 33540329 33548019 BAK1 brain_cerebellum 8.48e-02 0.000307 0 6:33236497-6:35455407
12122 6 34725183 34741571 SNRPC psychencode 1.79e-01 0.000248 0 6:33236497-6:35455407
10364 6 32936437 32949282 BRD2 thyroid -1.04e+00 0.000323 0 6:33236497-6:35455407
10343 6 33112560 33115544 HCG24 brain_putamen_basal_ganglia 2.31e-02 0.000374 0 6:33236497-6:35455407
10331 6 35226685 35263760 ZNF76 ntr.blood.rnaarr -7.24e-01 0.000404 0 6:33236497-6:35455407
10378 6 34555065 34664636 C6orf106 brain_hypothalamus -7.42e-01 0.000309 0 6:33236497-6:35455407
10245 6 33172419 33174608 HSD17B8 whole_blood 3.27e+00 0.002000 1 6:33236497-6:35455407
10463 6 34725183 34741571 SNRPC thyroid -4.64e-02 0.000254 0 6:33236497-6:35455407
10276 6 33172419 33174608 HSD17B8 brain_cerebellum 2.68e+00 0.000845 0 6:33236497-6:35455407
10323 6 33130458 33160276 COL11A2 whole_blood 1.93e+00 0.000433 0 6:33236497-6:35455407
10282 6 34845555 34855866 TAF11 brain_frontal_cortex_ba9 1.75e+00 0.000760 0 6:33236497-6:35455407
10389 6 33553883 33561115 LINC00336 brain_putamen_basal_ganglia -6.31e-01 0.000300 0 6:33236497-6:35455407
10439 6 34759857 34850915 UHRF1BP1 brain_substantia_nigra -6.52e-01 0.000262 0 6:33236497-6:35455407
10228 6 33080228 33102442 HLA-DPB2 brain_cerebellum 3.48e+00 0.008770 1 6:33236497-6:35455407
10285 6 33080228 33102442 HLA-DPB2 brain_cortex -1.35e+00 0.000725 0 6:33236497-6:35455407
10373 6 33259431 33267101 RGL2 brain_cerebellum 1.47e+00 0.000315 0 6:33236497-6:35455407
10456 6 34759857 34850915 UHRF1BP1 brain_nucleus_accumbens_basal_ganglia -9.58e-02 0.000257 0 6:33236497-6:35455407
11943 6 33168222 33172216 SLC39A7 psychencode 1.68e-02 0.000304 0 6:33236497-6:35455407
11677 6 34857042 35059179 ANKS1A psychencode 1.88e+00 0.001280 0 6:33236497-6:35455407
10229 6 34385231 34393902 RPS10 yfs.blood.rnaarr 2.67e+00 0.007480 1 6:33236497-6:35455407
10319 6 35748794 35761452 CLPSL1 brain_anterior_cingulate_cortex_ba24 -7.44e-01 0.000441 0 6:33236497-6:35455407
10396 6 33112560 33115544 HCG24 brain_caudate_basal_ganglia 3.52e-01 0.000293 0 6:33236497-6:35455407
10236 6 33032346 33041549 HLA-DPA1 brain_cerebellar_hemisphere 3.08e+00 0.003090 1 6:33236497-6:35455407
10466 6 34759857 34850915 UHRF1BP1 adrenal_gland 4.53e-02 0.000253 0 6:33236497-6:35455407
10237 6 32916390 32936871 HLA-DMA brain_cortex -2.40e+00 0.002260 1 6:33236497-6:35455407
10284 6 34664094 34665247 RP11-140K17.3 brain_frontal_cortex_ba9 -1.51e+00 0.000757 0 6:33236497-6:35455407
10391 6 33540329 33548019 BAK1 whole_blood 8.62e-01 0.000298 0 6:33236497-6:35455407
12944 6 33130458 33160276 COL11A2 psychencode 1.69e+00 0.000454 0 6:33236497-6:35455407
10233 6 34857042 35059179 ANKS1A brain_frontal_cortex_ba9 2.43e+00 0.004930 1 6:33236497-6:35455407
10382 6 35226686 35263762 ZNF76 yfs.blood.rnaarr -5.05e-01 0.000306 0 6:33236497-6:35455407
12920 6 35436185 35438562 RPL10A psychencode 9.41e-01 0.000327 0 6:33236497-6:35455407
10239 6 33032346 33041549 HLA-DPA1 thyroid 2.81e+00 0.002250 1 6:33236497-6:35455407
10386 6 34555064 34664625 C6orf106 ntr.blood.rnaarr -7.81e-01 0.000305 0 6:33236497-6:35455407
10273 6 33663226 33663474 SBP1 brain_cerebellar_hemisphere -2.84e+00 0.000892 0 6:33236497-6:35455407
10224 6 33588142 33664351 ITPR3 thyroid 4.52e+00 0.171000 1 6:33236497-6:35455407
10458 6 34759857 34850915 UHRF1BP1 brain_caudate_basal_ganglia 7.89e-02 0.000256 0 6:33236497-6:35455407
10479 6 34759857 34850915 UHRF1BP1 whole_blood -4.46e-02 0.000248 0 6:33236497-6:35455407
10400 6 33540329 33548019 BAK1 yfs.blood.rnaarr 1.04e+00 0.000289 0 6:33236497-6:35455407
10303 6 33553883 33561115 LINC00336 brain_caudate_basal_ganglia 2.92e-01 0.000528 0 6:33236497-6:35455407
10352 6 32780540 32784825 HLA-DOB yfs.blood.rnaarr -7.17e-01 0.000347 0 6:33236497-6:35455407
10407 6 34725183 34741571 SNRPC brain_amygdala 5.74e-01 0.000283 0 6:33236497-6:35455407
13131 6 33239787 33244287 RPS18 psychencode 6.68e-01 0.000256 0 6:33236497-6:35455407
10437 6 32781499 32806547 TAP2 cmc.brain.rnaseq_splicing 2.29e-02 0.000262 0 6:33236497-6:35455407
10309 6 34664094 34665247 RP11-140K17.3 brain_putamen_basal_ganglia -1.25e+00 0.000501 0 6:33236497-6:35455407
10281 6 33663226 33663474 SBP1 thyroid 2.66e+00 0.000763 0 6:33236497-6:35455407
10299 6 34711953 34712450 RP3-375P9.2 brain_cerebellum 1.23e+00 0.000542 0 6:33236497-6:35455407
10337 6 33663226 33663474 SBP1 brain_caudate_basal_ganglia -8.42e-01 0.000382 0 6:33236497-6:35455407
10257 6 33384231 33386094 CUTA whole_blood -2.20e+00 0.001300 0 6:33236497-6:35455407
11785 6 33588142 33664351 ITPR3 psychencode 1.93e+00 0.000330 0 6:33236497-6:35455407
10291 6 33172419 33174608 HSD17B8 adrenal_gland 9.62e-01 0.000610 0 6:33236497-6:35455407
10265 6 33032346 33041549 HLA-DPA1 pituitary 2.04e+00 0.001040 0 6:33236497-6:35455407
10252 6 34555065 34664636 C6orf106 pituitary -1.73e+00 0.001490 1 6:33236497-6:35455407
10313 6 33032346 33048552 HLA-DPA1 yfs.blood.rnaarr -1.61e+00 0.000468 0 6:33236497-6:35455407
10457 6 33738979 33756913 LEMD2 brain_putamen_basal_ganglia -3.26e-02 0.000256 0 6:33236497-6:35455407
10429 6 33168602 33172214 SLC39A7 cmc.brain.rnaseq_splicing -4.57e-01 0.000268 0 6:33236497-6:35455407
12117 6 33989628 34123399 GRM4 psychencode 3.97e-01 0.000308 0 6:33236497-6:35455407
10253 6 33239825 33244287 RPS18 whole_blood 1.74e+00 0.001460 0 6:33236497-6:35455407
10434 6 34433837 34503000 PACSIN1 cmc.brain.rnaseq -5.37e-01 0.000262 0 6:33236497-6:35455407
10297 6 33689444 33714762 IP6K3 pituitary 1.66e+00 0.000545 0 6:33236497-6:35455407
10308 6 33689444 33714762 IP6K3 adrenal_gland 2.05e+00 0.000504 0 6:33236497-6:35455407
10351 6 34725183 34741571 SNRPC pituitary -5.14e-01 0.000348 0 6:33236497-6:35455407
10353 6 33689444 33714762 IP6K3 thyroid 1.76e+00 0.000347 0 6:33236497-6:35455407
12444 6 33689444 33714762 IP6K3 psychencode -3.99e-01 0.000273 0 6:33236497-6:35455407
10384 6 35436185 35438562 RPL10A thyroid 8.78e-01 0.000305 0 6:33236497-6:35455407
10338 6 33738979 33756913 LEMD2 adrenal_gland 1.17e+00 0.000380 0 6:33236497-6:35455407
10307 6 33378176 33384218 PHF1 brain_hippocampus 7.17e-01 0.000506 0 6:33236497-6:35455407
10262 6 34555065 34664636 C6orf106 brain_amygdala -1.82e+00 0.001120 0 6:33236497-6:35455407
10436 6 32971955 32977389 HLA-DOA brain_cerebellum 2.29e-02 0.000262 0 6:33236497-6:35455407
10231 6 33112560 33115544 HCG24 brain_hypothalamus 3.47e+00 0.006220 1 6:33236497-6:35455407
10428 6 34845554 34855848 TAF11 cmc.brain.rnaseq 4.88e-01 0.000268 0 6:33236497-6:35455407
12943 6 33161365 33168630 RXRB psychencode 1.41e+00 0.000296 0 6:33236497-6:35455407
10383 6 34857042 35059179 ANKS1A yfs.blood.rnaarr -6.85e-01 0.000306 0 6:33236497-6:35455407
12127 6 35085848 35116387 TCP11 psychencode 1.43e+00 0.001160 0 6:33236497-6:35455407
10256 6 33130468 33160245 COL11A2 cmc.brain.rnaseq 2.18e+00 0.001330 0 6:33236497-6:35455407
12247 6 33662070 33679504 UQCC2 psychencode -1.12e+00 0.000321 0 6:33236497-6:35455407
10350 6 33738979 33756913 LEMD2 brain_anterior_cingulate_cortex_ba24 -1.41e+00 0.000348 0 6:33236497-6:35455407
10385 6 33738979 33756913 LEMD2 brain_cerebellar_hemisphere -1.31e+00 0.000305 0 6:33236497-6:35455407
10449 6 34759857 34850915 UHRF1BP1 brain_cerebellar_hemisphere 1.15e-01 0.000258 0 6:33236497-6:35455407
10277 6 33267471 33282164 TAPBP brain_nucleus_accumbens_basal_ganglia 2.18e+00 0.000833 0 6:33236497-6:35455407
10473 6 33663126 33679504 UQCC2 brain_caudate_basal_ganglia -8.01e-02 0.000251 0 6:33236497-6:35455407
10462 6 33738979 33756913 LEMD2 pituitary 1.92e-01 0.000254 0 6:33236497-6:35455407
10279 6 33239825 33244287 RPS18 brain_hippocampus 2.66e+00 0.000818 0 6:33236497-6:35455407
10467 6 34759857 34850915 UHRF1BP1 brain_anterior_cingulate_cortex_ba24 -4.82e-02 0.000253 0 6:33236497-6:35455407
10401 6 33738979 33756913 LEMD2 brain_caudate_basal_ganglia -1.19e+00 0.000288 0 6:33236497-6:35455407
10427 6 34725183 34741571 SNRPC brain_cortex -2.64e-01 0.000269 0 6:33236497-6:35455407
10454 6 35085848 35116387 TCP11 pituitary -3.08e-02 0.000257 0 6:33236497-6:35455407
10369 6 33540329 33548019 BAK1 adrenal_gland -2.13e-01 0.000318 0 6:33236497-6:35455407
12118 6 34433916 34503006 PACSIN1 psychencode -1.93e+00 0.001260 0 6:33236497-6:35455407
10411 6 35748794 35761452 CLPSL1 brain_frontal_cortex_ba9 4.74e-01 0.000279 0 6:33236497-6:35455407
10453 6 34759857 34850915 UHRF1BP1 brain_hypothalamus 1.01e-01 0.000257 0 6:33236497-6:35455407
10325 6 33130458 33160276 COL11A2 brain_cerebellum 1.53e+00 0.000423 0 6:33236497-6:35455407
10334 6 33551515 33556803 GGNBP1 brain_anterior_cingulate_cortex_ba24 1.92e+00 0.000391 0 6:33236497-6:35455407
10349 6 33663126 33679504 UQCC2 brain_cerebellar_hemisphere -1.93e+00 0.000351 0 6:33236497-6:35455407
10480 6 34759857 34850915 UHRF1BP1 brain_cortex -1.84e-01 0.000247 0 6:33236497-6:35455407
10370 6 33267471 33282164 TAPBP thyroid -9.78e-01 0.000316 0 6:33236497-6:35455407
10275 6 33112560 33115544 HCG24 brain_anterior_cingulate_cortex_ba24 2.44e+00 0.000848 0 6:33236497-6:35455407
10274 6 33384219 33386094 CUTA yfs.blood.rnaarr -1.75e+00 0.000876 0 6:33236497-6:35455407
10418 6 33267471 33282164 TAPBP yfs.blood.rnaarr 4.35e-01 0.000274 0 6:33236497-6:35455407
10290 6 32971955 32977389 HLA-DOA brain_nucleus_accumbens_basal_ganglia 1.73e+00 0.000611 0 6:33236497-6:35455407
10481 6 35265595 35289548 DEF6 brain_cerebellum 2.33e-01 0.000247 0 6:33236497-6:35455407
12126 6 34385231 34393902 RPS10 psychencode 1.23e+00 0.000435 0 6:33236497-6:35455407
10345 6 35436185 35438562 RPL10A yfs.blood.rnaarr 1.10e+00 0.000357 0 6:33236497-6:35455407
10259 6 33663126 33679504 UQCC2 brain_cortex -2.86e+00 0.001230 0 6:33236497-6:35455407
10426 6 33239825 33244287 RPS18 pituitary 4.99e-01 0.000269 0 6:33236497-6:35455407
10472 6 35226759 35263762 ZNF76 whole_blood 5.21e-02 0.000251 0 6:33236497-6:35455407
10304 6 34214156 34216904 C6orf1 cmc.brain.rnaseq_splicing 8.24e-01 0.000519 0 6:33236497-6:35455407
10423 6 32902406 32908847 HLA-DMB yfs.blood.rnaarr 3.30e-01 0.000271 0 6:33236497-6:35455407
10366 6 33112560 33115544 HCG24 brain_frontal_cortex_ba9 -2.77e-02 0.000323 0 6:33236497-6:35455407
10246 6 35310334 35395968 PPARD cmc.brain.rnaseq_splicing 2.03e+00 0.001820 1 6:33236497-6:35455407
10447 6 32846948 32847625 PPP1R2P1 brain_cortex -3.21e-01 0.000259 0 6:33236497-6:35455407
10359 6 33540322 33548070 BAK1 cmc.brain.rnaseq 1.07e+00 0.000326 0 6:33236497-6:35455407
10487 6 35226759 35263762 ZNF76 adrenal_gland 1.72e-01 0.000244 0 6:33236497-6:35455407
10430 6 34725183 34741571 SNRPC brain_anterior_cingulate_cortex_ba24 -2.16e-01 0.000266 0 6:33236497-6:35455407
10226 6 33588142 33664351 ITPR3 pituitary 3.85e+00 0.012800 1 6:33236497-6:35455407
12445 6 33738979 33756913 LEMD2 psychencode 2.46e-02 0.000252 0 6:33236497-6:35455407
12803 6 34214157 34217247 C6orf1 psychencode 7.78e-01 0.000658 0 6:33236497-6:35455407
10329 6 34385231 34393902 RPS10 brain_cerebellum 9.90e-01 0.000407 0 6:33236497-6:35455407
13138 6 33267471 33282164 TAPBP psychencode -1.08e+00 0.000484 0 6:33236497-6:35455407
10417 6 35265594 35289546 DEF6 ntr.blood.rnaarr -3.13e-01 0.000274 0 6:33236497-6:35455407
10421 6 35265595 35289548 DEF6 whole_blood -1.98e-01 0.000272 0 6:33236497-6:35455407
10240 6 33663226 33663474 SBP1 brain_cerebellum -2.79e+00 0.002230 1 6:33236497-6:35455407
10288 6 35085848 35116387 TCP11 brain_anterior_cingulate_cortex_ba24 9.37e-01 0.000629 0 6:33236497-6:35455407
13474 6 34256547 34393825 RPS10-NUDT3 psychencode 1.42e+00 0.000396 0 6:33236497-6:35455407
10409 6 35226759 35263762 ZNF76 brain_cerebellum -2.71e-01 0.000282 0 6:33236497-6:35455407
10311 6 35085848 35116387 TCP11 brain_frontal_cortex_ba9 9.91e-01 0.000487 0 6:33236497-6:35455407
10322 6 33540329 33548019 BAK1 brain_caudate_basal_ganglia 2.19e+00 0.000437 0 6:33236497-6:35455407
11679 6 34759857 34850915 UHRF1BP1 psychencode 3.14e-01 0.000276 0 6:33236497-6:35455407
10314 6 34555065 34664636 C6orf106 brain_nucleus_accumbens_basal_ganglia -1.44e+00 0.000462 0 6:33236497-6:35455407
10296 6 33553883 33561115 LINC00336 adrenal_gland 9.54e-01 0.000561 0 6:33236497-6:35455407
10264 6 33663126 33679504 UQCC2 brain_cerebellum -2.92e+00 0.001070 0 6:33236497-6:35455407
10251 6 33282183 33285719 ZBTB22 brain_hypothalamus 2.72e+00 0.001510 1 6:33236497-6:35455407
10371 6 33282183 33285719 ZBTB22 yfs.blood.rnaarr 1.07e+00 0.000316 0 6:33236497-6:35455407
10465 6 35265595 35289548 DEF6 pituitary -4.29e-02 0.000253 0 6:33236497-6:35455407
11628 6 35265595 35289548 DEF6 psychencode -4.67e-01 0.000273 0 6:33236497-6:35455407
10242 6 34385231 34393902 RPS10 thyroid 2.13e+00 0.002220 1 6:33236497-6:35455407
10485 6 34845555 34855866 TAF11 adrenal_gland 5.55e-02 0.000245 0 6:33236497-6:35455407
11678 6 35226686 35263762 ZNF76 psychencode 1.32e+00 0.000486 0 6:33236497-6:35455407
10287 6 35310334 35395968 PPARD cmc.brain.rnaseq_splicing 1.22e+00 0.000680 0 6:33236497-6:35455407
10292 6 33663126 33679504 UQCC2 thyroid 2.29e+00 0.000610 0 6:33236497-6:35455407
10261 6 34857037 35085320 ANKS1A cmc.brain.rnaseq 1.84e+00 0.001130 0 6:33236497-6:35455407
10230 6 33588142 33664351 ITPR3 brain_caudate_basal_ganglia 3.63e+00 0.006960 1 6:33236497-6:35455407
10283 6 32916390 32936871 HLA-DMA pituitary 1.62e+00 0.000758 0 6:33236497-6:35455407
10357 6 33239825 33244287 RPS18 thyroid -2.70e-01 0.000334 0 6:33236497-6:35455407
10358 6 33540329 33548019 BAK1 brain_hypothalamus 1.73e+00 0.000331 0 6:33236497-6:35455407
10377 6 33080228 33102442 HLA-DPB2 brain_caudate_basal_ganglia 1.25e-03 0.000311 0 6:33236497-6:35455407
10235 6 33588142 33664351 ITPR3 whole_blood 3.37e+00 0.003320 1 6:33236497-6:35455407
10367 6 33540329 33548019 BAK1 brain_anterior_cingulate_cortex_ba24 1.87e+00 0.000320 0 6:33236497-6:35455407
10348 6 33130458 33160276 COL11A2 brain_cerebellar_hemisphere 9.92e-01 0.000351 0 6:33236497-6:35455407
11637 6 33540329 33548019 BAK1 psychencode 1.18e+00 0.000285 0 6:33236497-6:35455407
10336 6 33663126 33679504 UQCC2 pituitary -9.42e-01 0.000385 0 6:33236497-6:35455407
10435 6 33282183 33285719 ZBTB22 whole_blood 1.80e-01 0.000262 0 6:33236497-6:35455407
11676 6 34845555 34855866 TAF11 psychencode 6.09e-01 0.000282 0 6:33236497-6:35455407
11738 6 71122644 71270877 FAM135A psychencode -5.17e-01 0.000181 0 6:71609707-6:73449742
10512 6 71276620 71299272 C6orf57 brain_nucleus_accumbens_basal_ganglia -2.76e-01 0.000165 0 6:71609707-6:73449742
10502 6 71123106 71270877 FAM135A cmc.brain.rnaseq_splicing -5.83e-01 0.000188 0 6:71609707-6:73449742
10498 6 71377478 71571716 SMAP1 cmc.brain.rnaseq_splicing 8.51e-01 0.000228 0 6:71609707-6:73449742
10494 6 71306141 71306683 RP11-134K13.4 brain_anterior_cingulate_cortex_ba24 -1.08e+00 0.000279 0 6:71609707-6:73449742
10505 6 71306141 71306683 RP11-134K13.4 adrenal_gland 5.12e-01 0.000180 0 6:71609707-6:73449742
10492 6 71998506 72018653 OGFRL1 whole_blood -1.72e+00 0.000668 0 6:71609707-6:73449742
13028 6 71874779 71875473 LYPLA1P3 psychencode -2.53e-01 0.000164 0 6:71609707-6:73449742
10499 6 71276620 71299272 C6orf57 brain_cortex 6.87e-01 0.000200 0 6:71609707-6:73449742
10511 6 71276620 71299272 C6orf57 brain_hippocampus -2.87e-01 0.000165 0 6:71609707-6:73449742
10516 6 71931160 72037931 RP11-154D6.1 thyroid 1.60e-01 0.000162 0 6:71609707-6:73449742
10515 6 72596406 73112845 RIMS1 brain_cerebellum -2.06e-01 0.000162 0 6:71609707-6:73449742
10500 6 71276620 71299272 C6orf57 brain_cerebellar_hemisphere 6.12e-01 0.000190 0 6:71609707-6:73449742
10503 6 71276620 71299272 C6orf57 brain_frontal_cortex_ba9 5.70e-01 0.000186 0 6:71609707-6:73449742
11940 6 71377479 71571718 SMAP1 psychencode 2.62e+00 0.004460 0 6:71609707-6:73449742
12386 6 71276620 71299272 C6orf57 psychencode 5.42e-01 0.000183 0 6:71609707-6:73449742
11941 6 71566382 71666741 B3GAT2 psychencode -6.12e-01 0.000191 0 6:71609707-6:73449742
10496 6 71998506 72018653 OGFRL1 yfs.blood.rnaarr -1.01e+00 0.000260 0 6:71609707-6:73449742
10490 6 72596405 73112845 RIMS1 cmc.brain.rnaseq_splicing -1.84e+00 0.000824 0 6:71609707-6:73449742
10517 6 71276620 71299272 C6orf57 thyroid -1.47e-01 0.000161 0 6:71609707-6:73449742
11729 6 72596406 73112845 RIMS1 psychencode -2.30e+00 0.002060 0 6:71609707-6:73449742
10509 6 71998506 72018653 OGFRL1 brain_cerebellum -3.91e-01 0.000171 0 6:71609707-6:73449742
10514 6 71998476 72012230 OGFRL1 cmc.brain.rnaseq -1.54e-01 0.000163 0 6:71609707-6:73449742
10518 6 73331520 73908574 KCNQ5 thyroid -1.62e-01 0.000161 0 6:71609707-6:73449742
10519 6 71998506 72018653 OGFRL1 brain_cerebellar_hemisphere -6.76e-02 0.000159 0 6:71609707-6:73449742
12788 6 73331520 73908574 KCNQ5 psychencode 1.80e+00 0.000762 0 6:71609707-6:73449742
10504 6 71377479 71571718 SMAP1 yfs.blood.rnaarr -5.57e-01 0.000185 0 6:71609707-6:73449742
10507 6 71276620 71299272 C6orf57 pituitary 4.17e-01 0.000173 0 6:71609707-6:73449742
10491 6 71566916 71666892 B3GAT2 ntr.blood.rnaarr -1.73e+00 0.000673 0 6:71609707-6:73449742
10513 6 71306141 71306683 RP11-134K13.4 brain_frontal_cortex_ba9 -2.25e-01 0.000163 0 6:71609707-6:73449742
13032 6 71785267 71786078 RP1-20N4.1 psychencode -2.48e-01 0.000164 0 6:71609707-6:73449742
10506 6 73331833 73905848 KCNQ5 ntr.blood.rnaarr -5.09e-01 0.000180 0 6:71609707-6:73449742
10501 6 71998476 72012230 OGFRL1 cmc.brain.rnaseq_splicing -6.00e-01 0.000190 0 6:71609707-6:73449742
13160 6 73340223 73388282 KCNQ5-IT1 psychencode 9.05e-02 0.000160 0 6:71609707-6:73449742
10510 6 72596406 73112845 RIMS1 brain_cerebellar_hemisphere 3.31e-01 0.000168 0 6:71609707-6:73449742
10508 6 71377479 71571718 SMAP1 whole_blood 4.06e-01 0.000172 0 6:71609707-6:73449742
10497 6 73918806 73919803 KHDC1P1 brain_cerebellar_hemisphere -9.88e-01 0.000255 0 6:71609707-6:73449742
10489 6 71566382 71666741 B3GAT2 brain_nucleus_accumbens_basal_ganglia 2.20e+00 0.001680 0 6:71609707-6:73449742
10493 6 73933267 73935493 KHDC1L brain_putamen_basal_ganglia -1.11e+00 0.000288 0 6:71609707-6:73449742
10495 6 73933267 73935493 KHDC1L brain_amygdala -1.06e+00 0.000276 0 6:71609707-6:73449742
12049 6 71998506 72018653 OGFRL1 psychencode -1.35e+00 0.000381 0 6:71609707-6:73449742
10556 6 99968569 99979794 TSTD3 brain_hippocampus 3.78e-01 0.000306 0 6:97842747-6:100629728
10567 6 99316420 99395849 FBXL4 adrenal_gland -8.37e-01 0.000247 0 6:97842747-6:100629728
13098 6 99968569 99979794 TSTD3 psychencode -3.97e+00 0.014600 0 6:97842747-6:100629728
12089 6 99880190 99969604 USP45 psychencode 8.48e-01 0.000251 0 6:97842747-6:100629728
10569 6 99880183 99963252 USP45 cmc.brain.rnaseq_splicing -3.87e-01 0.000242 0 6:97842747-6:100629728
10555 6 99872798 99879249 RP11-98I9.4 brain_anterior_cingulate_cortex_ba24 -9.73e-01 0.000322 0 6:97842747-6:100629728
10551 6 100023588 100024332 RP1-199J3.5 brain_frontal_cortex_ba9 7.59e-03 0.000371 0 6:97842747-6:100629728
10544 6 99872798 99879249 RP11-98I9.4 brain_nucleus_accumbens_basal_ganglia -1.46e+00 0.000436 0 6:97842747-6:100629728
10571 6 99880183 99963252 USP45 cmc.brain.rnaseq 6.52e-01 0.000236 0 6:97842747-6:100629728
10521 6 99316420 99395849 FBXL4 thyroid 2.87e+00 0.009860 0 6:97842747-6:100629728
10547 6 100015973 100016972 RP1-199J3.7 brain_cerebellar_hemisphere 1.67e-01 0.000409 0 6:97842747-6:100629728
10530 6 100956607 101329224 ASCC3 cmc.brain.rnaseq 1.36e+00 0.000705 0 6:97842747-6:100629728
10533 6 100367785 100442114 MCHR2 cmc.brain.rnaseq -1.61e+00 0.000563 0 6:97842747-6:100629728
10546 6 99872798 99879249 RP11-98I9.4 brain_amygdala -1.17e+00 0.000409 0 6:97842747-6:100629728
10537 6 100023588 100024332 RP1-199J3.5 brain_cerebellum -9.02e-02 0.000517 0 6:97842747-6:100629728
10560 6 100023588 100024332 RP1-199J3.5 brain_caudate_basal_ganglia 1.56e+00 0.000265 0 6:97842747-6:100629728
10553 6 100023588 100024332 RP1-199J3.5 brain_hippocampus 2.31e+00 0.000331 0 6:97842747-6:100629728
10559 6 100023588 100024332 RP1-199J3.5 adrenal_gland 1.29e+00 0.000268 0 6:97842747-6:100629728
10568 6 100023588 100024332 RP1-199J3.5 brain_anterior_cingulate_cortex_ba24 1.04e+00 0.000245 0 6:97842747-6:100629728
10570 6 97372495 97588630 KLHL32 cmc.brain.rnaseq 3.59e-01 0.000237 0 6:97842747-6:100629728
10572 6 97590037 97731086 MMS22L whole_blood -2.02e-01 0.000235 0 6:97842747-6:100629728
10573 6 97590037 97731086 MMS22L pituitary -2.63e-01 0.000234 0 6:97842747-6:100629728
10574 6 97590037 97731086 MMS22L adrenal_gland -2.03e-01 0.000231 0 6:97842747-6:100629728
13033 6 100023588 100024332 RP1-199J3.5 psychencode 1.31e-01 0.000254 0 6:97842747-6:100629728
12330 6 97590037 97731093 MMS22L psychencode -9.56e-01 0.000307 0 6:97842747-6:100629728
13074 6 97731179 97757924 RP3-418C23.2 psychencode -2.71e-01 0.000231 0 6:97842747-6:100629728
10524 6 99719045 99797938 FAXC brain_anterior_cingulate_cortex_ba24 -3.34e+00 0.003730 0 6:97842747-6:100629728
10528 6 98150157 98155979 RP1-104O17.1 pituitary 1.59e+00 0.000978 0 6:97842747-6:100629728
13483 6 98264585 98847748 RP11-436D23.1 psychencode -1.45e+00 0.000309 0 6:97842747-6:100629728
10542 6 99872798 99879249 RP11-98I9.4 brain_cerebellum -1.51e+00 0.000446 0 6:97842747-6:100629728
10525 6 99719045 99797938 FAXC brain_cerebellum 5.53e-01 0.002360 0 6:97842747-6:100629728
13059 6 98150157 98155979 RP1-104O17.1 psychencode 1.12e+00 0.000497 0 6:97842747-6:100629728
10563 6 100023588 100024332 RP1-199J3.5 brain_cerebellar_hemisphere 3.81e-01 0.000258 0 6:97842747-6:100629728
10522 6 99321600 99395849 FBXL4 cmc.brain.rnaseq_splicing -2.90e+00 0.007610 0 6:97842747-6:100629728
10558 6 100023588 100024332 RP1-199J3.5 brain_amygdala 1.67e+00 0.000280 0 6:97842747-6:100629728
10526 6 99719045 99797938 FAXC thyroid 2.49e+00 0.002250 0 6:97842747-6:100629728
12331 6 99719045 99797938 FAXC psychencode -1.78e+00 0.000253 0 6:97842747-6:100629728
13101 6 99872798 99879249 RP11-98I9.4 psychencode -2.41e+00 0.000463 0 6:97842747-6:100629728
10529 6 99880186 99963252 USP45 ntr.blood.rnaarr 2.45e+00 0.000705 0 6:97842747-6:100629728
10532 6 99817276 99842080 COQ3 brain_cortex -9.86e-01 0.000575 0 6:97842747-6:100629728
10543 6 99872798 99879249 RP11-98I9.4 brain_substantia_nigra -1.73e+00 0.000444 0 6:97842747-6:100629728
12179 6 99817276 99842080 COQ3 psychencode -1.34e+00 0.007740 0 6:97842747-6:100629728
10527 6 99321600 99395849 FBXL4 cmc.brain.rnaseq 2.11e+00 0.001220 0 6:97842747-6:100629728
10523 6 99321600 99395849 FBXL4 cmc.brain.rnaseq_splicing -2.78e+00 0.005990 0 6:97842747-6:100629728
10552 6 99872798 99879249 RP11-98I9.4 brain_hippocampus -1.14e+00 0.000356 0 6:97842747-6:100629728
10554 6 100023588 100024332 RP1-199J3.5 pituitary 5.56e-01 0.000324 0 6:97842747-6:100629728
10520 6 99817347 99842082 COQ3 cmc.brain.rnaseq_splicing 5.10e+00 0.972000 1 6:97842747-6:100629728
10536 6 99817347 99842082 COQ3 cmc.brain.rnaseq_splicing 1.18e-01 0.000536 1 6:97842747-6:100629728
10548 6 99872798 99879249 RP11-98I9.4 brain_hypothalamus -1.43e+00 0.000408 0 6:97842747-6:100629728
10545 6 100023588 100024332 RP1-199J3.5 brain_hypothalamus -2.01e-02 0.000428 0 6:97842747-6:100629728
12180 6 99845927 99873207 PNISR psychencode -3.79e-01 0.000373 0 6:97842747-6:100629728
10531 6 99872798 99879249 RP11-98I9.4 pituitary -2.27e+00 0.000622 0 6:97842747-6:100629728
10534 6 99872798 99879249 RP11-98I9.4 thyroid -1.81e+00 0.000544 0 6:97842747-6:100629728
10535 6 99872798 99879249 RP11-98I9.4 brain_putamen_basal_ganglia -1.67e+00 0.000536 0 6:97842747-6:100629728
10538 6 99872798 99879249 RP11-98I9.4 brain_caudate_basal_ganglia -1.94e+00 0.000501 0 6:97842747-6:100629728
10539 6 99872798 99879249 RP11-98I9.4 whole_blood -1.52e+00 0.000467 0 6:97842747-6:100629728
10557 6 99880190 99969604 USP45 thyroid 2.05e+00 0.000283 0 6:97842747-6:100629728
10540 6 99872798 99879249 RP11-98I9.4 brain_cerebellar_hemisphere -1.64e+00 0.000467 0 6:97842747-6:100629728
10541 6 99872798 99879249 RP11-98I9.4 brain_frontal_cortex_ba9 -1.51e+00 0.000466 0 6:97842747-6:100629728
10549 6 99872798 99879249 RP11-98I9.4 brain_cortex -1.33e+00 0.000392 0 6:97842747-6:100629728
10550 6 99872798 99879249 RP11-98I9.4 adrenal_gland -1.36e+00 0.000378 0 6:97842747-6:100629728
10561 6 100023588 100024332 RP1-199J3.5 brain_putamen_basal_ganglia 1.52e+00 0.000258 0 6:97842747-6:100629728
10564 6 100023588 100024332 RP1-199J3.5 thyroid 1.18e+00 0.000252 0 6:97842747-6:100629728
10562 6 100023588 100024332 RP1-199J3.5 brain_nucleus_accumbens_basal_ganglia 1.31e+00 0.000258 0 6:97842747-6:100629728
10565 6 100023588 100024332 RP1-199J3.5 brain_cortex 1.16e+00 0.000252 0 6:97842747-6:100629728
10566 6 100023588 100024332 RP1-199J3.5 brain_substantia_nigra -2.23e-01 0.000248 0 6:97842747-6:100629728
10582 6 100956607 101329224 ASCC3 cmc.brain.rnaseq 2.41e+00 0.001430 0 6:100630458-6:102636593
10579 6 100956607 101329224 ASCC3 cmc.brain.rnaseq_splicing -3.16e+00 0.003410 0 6:100630458-6:102636593
13387 6 101329347 101330863 RP3-467N11.1 psychencode 3.93e+00 0.042700 0 6:100630458-6:102636593
10585 6 101846664 102517958 GRIK2 adrenal_gland -8.16e-01 0.000887 0 6:100630458-6:102636593
10576 6 100956070 101329248 ASCC3 pituitary -4.40e+00 0.255000 1 6:100630458-6:102636593
10577 6 100956070 101329248 ASCC3 thyroid 2.17e+00 0.019500 0 6:100630458-6:102636593
10588 6 100956070 101329248 ASCC3 brain_cortex -6.81e-01 0.000421 0 6:100630458-6:102636593
10575 6 101329347 101330863 RP3-467N11.1 brain_cerebellum -4.61e+00 0.583000 1 6:100630458-6:102636593
10581 6 100956070 101329248 ASCC3 brain_cerebellar_hemisphere -2.96e+00 0.001960 0 6:100630458-6:102636593
10590 6 101846664 102517958 GRIK2 thyroid -5.03e-01 0.000244 0 6:100630458-6:102636593
10586 6 102526747 102527430 AP002530.2 brain_cortex -1.58e+00 0.000682 0 6:100630458-6:102636593
10583 6 100956070 101329248 ASCC3 yfs.blood.rnaarr -8.45e-02 0.001210 0 6:100630458-6:102636593
10580 6 101846860 102517958 GRIK2 cmc.brain.rnaseq -3.10e+00 0.002710 0 6:100630458-6:102636593
10578 6 101329347 101330863 RP3-467N11.1 brain_anterior_cingulate_cortex_ba24 3.49e+00 0.008330 0 6:100630458-6:102636593
10584 6 100956070 101329248 ASCC3 brain_cerebellum -2.73e+00 0.001080 0 6:100630458-6:102636593
10587 6 100956070 101329248 ASCC3 whole_blood 1.54e+00 0.000666 0 6:100630458-6:102636593
10589 6 100956070 101329248 ASCC3 brain_anterior_cingulate_cortex_ba24 -7.30e-01 0.000353 0 6:100630458-6:102636593
10601 6 105175968 105307794 HACE1 brain_caudate_basal_ganglia 1.29e+00 0.000382 0 6:103983395-6:106056733
10615 6 105175968 105307794 HACE1 brain_cerebellum 2.39e+00 0.000285 0 6:103983395-6:106056733
12181 6 105606155 105627870 POPDC3 psychencode 1.80e+00 0.000476 0 6:103983395-6:106056733
10604 6 106534192 106557814 PRDM1 ntr.blood.rnaarr -1.23e+00 0.000344 0 6:103983395-6:106056733
10609 6 105606155 105627870 POPDC3 thyroid -1.34e+00 0.000304 0 6:103983395-6:106056733
13493 6 105721095 105721635 RP3-355L5.5 psychencode 8.06e-01 0.000263 0 6:103983395-6:106056733
10621 6 105544697 105585049 BVES brain_hippocampus -2.02e+00 0.000246 0 6:103983395-6:106056733
10597 6 106534195 106557814 PRDM1 brain_cerebellum 1.71e+00 0.000752 0 6:103983395-6:106056733
10606 6 105725440 105850959 PREP yfs.blood.rnaarr 1.26e+00 0.000324 0 6:103983395-6:106056733
10603 6 105725441 105850999 PREP cmc.brain.rnaseq_splicing -1.07e+00 0.000347 0 6:103983395-6:106056733
10624 6 105175967 105307794 HACE1 cmc.brain.rnaseq_splicing 4.57e-01 0.000224 0 6:103983395-6:106056733
10618 6 106534195 106557814 PRDM1 brain_cerebellar_hemisphere 9.18e-01 0.000269 0 6:103983395-6:106056733
10623 6 105544697 105585049 BVES thyroid -8.89e-01 0.000226 0 6:103983395-6:106056733
12931 6 105584183 105617820 BVES-AS1 psychencode 1.65e+00 0.000311 0 6:103983395-6:106056733
10591 6 105584224 105617820 BVES-AS1 brain_amygdala -5.43e+00 0.742000 1 6:103983395-6:106056733
10614 6 105605774 105627858 POPDC3 cmc.brain.rnaseq 1.94e+00 0.000288 0 6:103983395-6:106056733
10596 6 105606155 105627870 POPDC3 brain_hippocampus -3.93e+00 0.001420 0 6:103983395-6:106056733
10605 6 105606155 105627870 POPDC3 brain_hypothalamus -1.52e+00 0.000342 0 6:103983395-6:106056733
10599 6 105725441 105850999 PREP cmc.brain.rnaseq 1.54e+00 0.000520 0 6:103983395-6:106056733
10595 6 105404923 105531207 LIN28B pituitary -4.04e+00 0.001630 0 6:103983395-6:106056733
11745 6 105175968 105307794 HACE1 psychencode 2.44e+00 0.000278 0 6:103983395-6:106056733
10602 6 105175968 105307794 HACE1 brain_nucleus_accumbens_basal_ganglia 2.18e+00 0.000355 0 6:103983395-6:106056733
10617 6 105606155 105627870 POPDC3 brain_putamen_basal_ganglia -1.76e+00 0.000273 0 6:103983395-6:106056733
10607 6 105175968 105307794 HACE1 brain_cortex 2.17e+00 0.000316 0 6:103983395-6:106056733
10592 6 105404922 105531207 LIN28B cmc.brain.rnaseq -5.08e+00 0.127000 1 6:103983395-6:106056733
10616 6 105175968 105307794 HACE1 brain_frontal_cortex_ba9 2.59e+00 0.000282 0 6:103983395-6:106056733
10620 6 105606155 105627870 POPDC3 brain_nucleus_accumbens_basal_ganglia -1.87e+00 0.000246 0 6:103983395-6:106056733
10619 6 105175967 105307794 HACE1 cmc.brain.rnaseq_splicing 2.15e+00 0.000262 0 6:103983395-6:106056733
10612 6 105175968 105307794 HACE1 thyroid 2.45e+00 0.000294 0 6:103983395-6:106056733
10593 6 105175968 105307794 HACE1 adrenal_gland 4.79e+00 0.032100 0 6:103983395-6:106056733
10594 6 105384169 105388402 LINC00577 brain_putamen_basal_ganglia 4.35e+00 0.004820 0 6:103983395-6:106056733
10613 6 105175968 105307794 HACE1 pituitary 2.25e+00 0.000289 0 6:103983395-6:106056733
11744 6 105725440 105850959 PREP psychencode 2.52e-01 0.000236 0 6:103983395-6:106056733
10600 6 105175968 105307794 HACE1 brain_anterior_cingulate_cortex_ba24 3.42e+00 0.000513 0 6:103983395-6:106056733
10611 6 105175967 105307794 HACE1 cmc.brain.rnaseq 2.68e+00 0.000299 0 6:103983395-6:106056733
10610 6 105175968 105307794 HACE1 brain_cerebellar_hemisphere 2.07e+00 0.000303 0 6:103983395-6:106056733
10598 6 105384169 105388402 LINC00577 brain_hippocampus 3.69e+00 0.000649 0 6:103983395-6:106056733
10608 6 105384169 105388402 LINC00577 brain_cortex 2.86e+00 0.000309 0 6:103983395-6:106056733
12823 6 105404923 105531207 LIN28B psychencode -5.02e+00 0.092400 0 6:103983395-6:106056733
10622 6 105606155 105627870 POPDC3 brain_caudate_basal_ganglia -7.10e-01 0.000232 0 6:103983395-6:106056733
10647 6 131160487 131384462 EPB41L2 cmc.brain.rnaseq 1.14e-01 0.000178 0 6:129861031-6:130935454
10634 6 130152389 130182692 TMEM244 brain_hippocampus 1.98e+00 0.001090 0 6:129861031-6:130935454
12332 6 129897277 130031370 ARHGAP18 psychencode -2.92e+00 0.010700 0 6:129861031-6:130935454
10648 6 131160487 131384462 EPB41L2 thyroid 1.57e-01 0.000172 0 6:129861031-6:130935454
13346 6 131148546 131158275 SMLR1 psychencode -2.67e+00 0.004830 0 6:129861031-6:130935454
10636 6 130152389 130182692 TMEM244 brain_anterior_cingulate_cortex_ba24 1.87e+00 0.000891 0 6:129861031-6:130935454
10631 6 130465516 130686570 SAMD3 whole_blood -2.56e+00 0.003820 0 6:129861031-6:130935454
12930 6 130152389 130182692 TMEM244 psychencode 2.64e+00 0.004890 0 6:129861031-6:130935454
10643 6 131160487 131384462 EPB41L2 cmc.brain.rnaseq_splicing 9.25e-01 0.000254 0 6:129861031-6:130935454
10646 6 130334844 130462594 L3MBTL3 thyroid 5.91e-01 0.000216 0 6:129861031-6:130935454
10642 6 131160487 131384462 EPB41L2 cmc.brain.rnaseq_splicing 1.08e+00 0.000294 0 6:129861031-6:130935454
10629 6 130465446 130686570 SAMD3 cmc.brain.rnaseq 2.71e+00 0.005360 0 6:129861031-6:130935454
10649 6 131160487 131384462 EPB41L2 brain_hypothalamus -1.88e-02 0.000171 0 6:129861031-6:130935454
10628 6 131160487 131384462 EPB41L2 cmc.brain.rnaseq_splicing 2.83e+00 0.007270 0 6:129861031-6:130935454
10633 6 130152389 130182692 TMEM244 pituitary 2.33e+00 0.002270 0 6:129861031-6:130935454
10641 6 130334844 130462594 L3MBTL3 pituitary 1.10e+00 0.000327 0 6:129861031-6:130935454
10625 6 130465516 130686570 SAMD3 brain_cortex 3.29e+00 0.028700 0 6:129861031-6:130935454
10644 6 131160487 131384462 EPB41L2 cmc.brain.rnaseq_splicing -8.75e-01 0.000251 0 6:129861031-6:130935454
10626 6 130465460 130686570 SAMD3 yfs.blood.rnaarr -3.14e+00 0.018500 0 6:129861031-6:130935454
10630 6 129929037 130182692 ARHGAP18 cmc.brain.rnaseq -2.68e+00 0.005320 0 6:129861031-6:130935454
10645 6 130334844 130462594 L3MBTL3 whole_blood 6.35e-01 0.000225 0 6:129861031-6:130935454
13066 6 129847771 129873732 RP1-69D17.4 psychencode -8.69e-01 0.000244 0 6:129861031-6:130935454
10638 6 130339727 130462594 L3MBTL3 cmc.brain.rnaseq_splicing -1.38e+00 0.000513 0 6:129861031-6:130935454
10635 6 130454555 130465459 RP11-73O6.3 pituitary 1.98e+00 0.001050 0 6:129861031-6:130935454
10632 6 129204285 129837710 LAMA2 cmc.brain.rnaseq_splicing 2.40e+00 0.002750 0 6:129861031-6:130935454
12863 6 129204342 129837714 LAMA2 psychencode -1.75e+00 0.000769 0 6:129861031-6:130935454
10627 6 130687425 130764210 TMEM200A cmc.brain.rnaseq 2.96e+00 0.010700 0 6:129861031-6:130935454
10637 6 130454555 130465459 RP11-73O6.3 whole_blood 1.60e+00 0.000570 0 6:129861031-6:130935454
10639 6 130334844 130462594 L3MBTL3 brain_cortex 1.52e+00 0.000494 0 6:129861031-6:130935454
10640 6 130334844 130462594 L3MBTL3 yfs.blood.rnaarr 1.19e+00 0.000348 0 6:129861031-6:130935454
10683 6 153071933 153080900 VIP thyroid 2.44e-01 0.000164 0 6:151912703-6:153093758
10684 6 152442819 152958936 SYNE1 whole_blood 2.12e-01 0.000164 0 6:151912703-6:153093758
10688 6 153308399 153323925 MTRF1L cmc.brain.rnaseq_splicing 2.11e-02 0.000159 0 6:151912703-6:153093758
10655 6 153308497 153323820 MTRF1L brain_cerebellar_hemisphere -1.75e+00 0.000711 0 6:151912703-6:153093758
12051 6 151815165 151942328 CCDC170 psychencode -1.51e+00 0.000482 0 6:151912703-6:153093758
11774 6 151977826 152450754 ESR1 psychencode 9.06e-01 0.000237 0 6:151912703-6:153093758
10651 6 152442818 152958534 SYNE1 cmc.brain.rnaseq_splicing -2.03e+00 0.001180 0 6:151912703-6:153093758
10656 6 151725896 151773316 RMND1 cmc.brain.rnaseq 1.61e+00 0.000567 0 6:151912703-6:153093758
10652 6 151725989 151773259 RMND1 thyroid 1.94e+00 0.001020 0 6:151912703-6:153093758
10658 6 151725989 151773259 RMND1 brain_amygdala -1.50e+00 0.000474 0 6:151912703-6:153093758
10663 6 151725989 151773259 RMND1 whole_blood -1.20e+00 0.000329 0 6:151912703-6:153093758
10660 6 152442818 152958534 SYNE1 cmc.brain.rnaseq 1.40e+00 0.000412 0 6:151912703-6:153093758
12052 6 153019030 153045702 MYCT1 psychencode 8.83e-01 0.000232 0 6:151912703-6:153093758
10664 6 151725989 151773259 RMND1 brain_caudate_basal_ganglia -1.00e+00 0.000323 0 6:151912703-6:153093758
10681 6 151725989 151773259 RMND1 brain_frontal_cortex_ba9 -2.69e-01 0.000165 0 6:151912703-6:153093758
12393 6 151725989 151773259 RMND1 psychencode 1.95e+00 0.001070 0 6:151912703-6:153093758
10674 6 151773422 151791236 C6orf211 brain_hypothalamus 5.34e-01 0.000183 0 6:151912703-6:153093758
10686 6 151186685 151423023 MTHFD1L yfs.blood.rnaarr -2.06e-01 0.000162 0 6:151912703-6:153093758
12334 6 151773422 151791236 C6orf211 psychencode 7.39e-01 0.000207 0 6:151912703-6:153093758
10672 6 152442818 152958534 SYNE1 cmc.brain.rnaseq_splicing 5.91e-01 0.000189 0 6:151912703-6:153093758
10653 6 151815165 151942328 CCDC170 brain_putamen_basal_ganglia 1.80e+00 0.000821 0 6:151912703-6:153093758
10654 6 151815165 151942328 CCDC170 brain_hippocampus 1.78e+00 0.000737 0 6:151912703-6:153093758
10657 6 151815165 151942328 CCDC170 brain_cortex 1.60e+00 0.000556 0 6:151912703-6:153093758
10687 6 151725896 151773316 RMND1 cmc.brain.rnaseq_splicing -2.47e-02 0.000159 0 6:151912703-6:153093758
10678 6 153308399 153323925 MTRF1L cmc.brain.rnaseq_splicing 4.72e-01 0.000177 0 6:151912703-6:153093758
11939 6 153308497 153323820 MTRF1L psychencode 1.32e+00 0.000371 0 6:151912703-6:153093758
10665 6 151815165 151942328 CCDC170 brain_anterior_cingulate_cortex_ba24 -9.83e-01 0.000255 0 6:151912703-6:153093758
10677 6 152442818 152958534 SYNE1 cmc.brain.rnaseq_splicing -3.37e-01 0.000178 0 6:151912703-6:153093758
10671 6 151815165 151942328 CCDC170 brain_frontal_cortex_ba9 -6.42e-01 0.000196 0 6:151912703-6:153093758
10666 6 151977826 152450754 ESR1 thyroid -9.81e-01 0.000254 0 6:151912703-6:153093758
12168 6 151561134 151679692 AKAP12 psychencode 9.38e-01 0.000285 0 6:151912703-6:153093758
10679 6 151815165 151942328 CCDC170 adrenal_gland -3.56e-01 0.000170 0 6:151912703-6:153093758
10680 6 151815165 151942328 CCDC170 brain_nucleus_accumbens_basal_ganglia 3.22e-01 0.000167 0 6:151912703-6:153093758
10661 6 153308497 153323820 MTRF1L yfs.blood.rnaarr -1.32e+00 0.000371 0 6:151912703-6:153093758
10682 6 152011630 152424408 ESR1 cmc.brain.rnaseq 2.58e-01 0.000164 0 6:151912703-6:153093758
10673 6 153325594 153452384 RGS17 brain_cerebellum 5.62e-01 0.000185 0 6:151912703-6:153093758
10662 6 153308497 153323820 MTRF1L brain_caudate_basal_ganglia -1.24e+00 0.000338 0 6:151912703-6:153093758
10667 6 153552455 153668623 AL590867.1 thyroid 9.55e-01 0.000248 0 6:151912703-6:153093758
10685 6 152442818 152958534 SYNE1 cmc.brain.rnaseq_splicing -4.18e-04 0.000163 0 6:151912703-6:153093758
10689 6 153308497 153323820 MTRF1L whole_blood 4.20e-02 0.000159 0 6:151912703-6:153093758
10668 6 153308497 153323820 MTRF1L brain_amygdala -8.45e-01 0.000226 0 6:151912703-6:153093758
10675 6 153308497 153323820 MTRF1L brain_frontal_cortex_ba9 5.17e-01 0.000181 0 6:151912703-6:153093758
10669 6 153325594 153452384 RGS17 yfs.blood.rnaarr 7.84e-01 0.000214 0 6:151912703-6:153093758
10676 6 153308497 153323820 MTRF1L thyroid -4.92e-01 0.000179 0 6:151912703-6:153093758
10659 6 153308399 153323925 MTRF1L cmc.brain.rnaseq_splicing -1.48e+00 0.000458 0 6:151912703-6:153093758
10650 6 152442819 152958936 SYNE1 adrenal_gland -2.30e+00 0.002100 0 6:151912703-6:153093758
10670 6 153332031 153452389 RGS17 cmc.brain.rnaseq 7.55e-01 0.000210 0 6:151912703-6:153093758
10695 6 165693152 165723111 C6orf118 cmc.brain.rnaseq 1.53e-01 0.000160 0 6:164383521-6:165586864
10694 6 163835665 163995794 QKI ntr.blood.rnaarr 5.09e-01 0.000179 0 6:164383521-6:165586864
10693 6 163835032 163999628 QKI yfs.blood.rnaarr 1.31e+00 0.000365 0 6:164383521-6:165586864
13088 6 165241239 165245119 RP11-300M24.1 psychencode -2.40e+00 0.002580 0 6:164383521-6:165586864
10690 6 165241239 165245119 RP11-300M24.1 brain_cerebellar_hemisphere -2.54e+00 0.003600 0 6:164383521-6:165586864
10691 6 165241239 165245119 RP11-300M24.1 brain_caudate_basal_ganglia -2.32e+00 0.002150 0 6:164383521-6:165586864
10692 6 165241239 165245119 RP11-300M24.1 brain_anterior_cingulate_cortex_ba24 -1.69e+00 0.000632 0 6:164383521-6:165586864
10721 7 1509913 1545489 INTS1 brain_nucleus_accumbens_basal_ganglia 2.03e+00 0.000870 0 7:1353852-7:2062398
10731 7 1509913 1545489 INTS1 brain_cerebellar_hemisphere 1.87e+00 0.000678 0 7:1353852-7:2062398
10734 7 1509913 1545489 INTS1 yfs.blood.rnaarr 1.83e+00 0.000662 0 7:1353852-7:2062398
10736 7 1509913 1545489 INTS1 brain_cerebellum 1.65e+00 0.000592 0 7:1353852-7:2062398
10739 7 1509913 1545489 INTS1 brain_hippocampus 1.54e+00 0.000491 0 7:1353852-7:2062398
10746 7 1191707 1200395 ZFAND2A thyroid -1.19e+00 0.000401 0 7:1353852-7:2062398
10761 7 1504133 1507158 RP11-1246C19.1 brain_anterior_cingulate_cortex_ba24 7.22e-01 0.000296 0 7:1353852-7:2062398
10722 7 1509913 1545489 INTS1 brain_amygdala 2.01e+00 0.000848 0 7:1353852-7:2062398
10782 7 937540 995043 ADAP1 whole_blood 1.42e-01 0.000244 0 7:1353852-7:2062398
10756 7 1084212 1097400 GPR146 brain_cerebellar_hemisphere 1.04e+00 0.000308 0 7:1353852-7:2062398
10786 7 937540 995043 ADAP1 thyroid 2.55e-01 0.000235 0 7:1353852-7:2062398
11882 7 937540 995043 ADAP1 psychencode -4.84e-02 0.000233 0 7:1353852-7:2062398
10729 7 937540 995043 ADAP1 yfs.blood.rnaarr -1.67e+00 0.000738 0 7:1353852-7:2062398
10743 7 1036622 1177896 C7orf50 thyroid -1.40e+00 0.000425 0 7:1353852-7:2062398
10745 7 1036622 1177896 C7orf50 brain_nucleus_accumbens_basal_ganglia 1.42e+00 0.000422 0 7:1353852-7:2062398
10747 7 1606966 1610641 PSMG3 brain_anterior_cingulate_cortex_ba24 4.04e-01 0.000398 0 7:1353852-7:2062398
10757 7 1036622 1177896 C7orf50 brain_hippocampus 7.91e-01 0.000307 0 7:1353852-7:2062398
10762 7 1036622 1177896 C7orf50 brain_cortex 7.83e-01 0.000295 0 7:1353852-7:2062398
10779 7 1192542 1199855 ZFAND2A cmc.brain.rnaseq_splicing -6.16e-02 0.000247 0 7:1353852-7:2062398
10744 7 1200121 1204903 AC091729.9 adrenal_gland -1.50e+00 0.000425 0 7:1353852-7:2062398
13530 7 919427 926184 RP11-449P15.2 psychencode 1.22e-01 0.000245 0 7:1353852-7:2062398
10751 7 1068661 1083527 AC073957.15 brain_hypothalamus -1.11e+00 0.000344 0 7:1353852-7:2062398
10707 7 856251 914557 SUN1 cmc.brain.rnaseq_splicing 1.66e+00 0.001170 0 7:1353852-7:2062398
10740 7 1509913 1545489 INTS1 brain_hypothalamus 1.53e+00 0.000489 0 7:1353852-7:2062398
10774 7 1036622 1177896 C7orf50 brain_caudate_basal_ganglia 7.45e-01 0.000257 0 7:1353852-7:2062398
10771 7 1200121 1204903 AC091729.9 brain_cerebellar_hemisphere -8.33e-01 0.000266 0 7:1353852-7:2062398
10753 7 1036641 1177876 C7orf50 ntr.blood.rnaarr -1.19e+00 0.000324 0 7:1353852-7:2062398
10741 7 1570350 1581870 MAFK thyroid 1.35e+00 0.000433 0 7:1353852-7:2062398
10767 7 1036622 1177893 C7orf50 cmc.brain.rnaseq_splicing 6.52e-01 0.000285 0 7:1353852-7:2062398
10768 7 1036622 1177893 C7orf50 cmc.brain.rnaseq -6.42e-01 0.000281 0 7:1353852-7:2062398
10735 7 1504133 1507158 RP11-1246C19.1 brain_cortex 1.76e+00 0.000627 0 7:1353852-7:2062398
10749 7 1504133 1507158 RP11-1246C19.1 thyroid 8.28e-01 0.000375 0 7:1353852-7:2062398
10759 7 856251 914557 SUN1 cmc.brain.rnaseq_splicing 6.72e-01 0.000298 0 7:1353852-7:2062398
10701 7 1473994 1499109 MICALL2 cmc.brain.rnaseq_splicing 3.54e+00 0.021000 0 7:1353852-7:2062398
10719 7 1509913 1545489 INTS1 thyroid 2.03e+00 0.000884 0 7:1353852-7:2062398
10778 7 1036622 1177893 C7orf50 cmc.brain.rnaseq_splicing -1.06e-02 0.000249 0 7:1353852-7:2062398
12411 7 1606966 1610641 PSMG3 psychencode -7.05e-01 0.000246 0 7:1353852-7:2062398
13118 7 1654226 1654961 TFAMP1 psychencode -2.34e-01 0.000259 0 7:1353852-7:2062398
10742 7 1582680 1600457 TMEM184A adrenal_gland 1.26e+00 0.000432 0 7:1353852-7:2062398
10724 7 1509913 1545489 INTS1 brain_cortex 2.00e+00 0.000797 0 7:1353852-7:2062398
10772 7 1606966 1610641 PSMG3 yfs.blood.rnaarr -2.30e-01 0.000263 0 7:1353852-7:2062398
10726 7 1606966 1610641 PSMG3 brain_hippocampus -1.80e+00 0.000773 0 7:1353852-7:2062398
10698 7 1878222 1889567 AC110781.3 pituitary -3.91e+00 0.073300 1 7:1353852-7:2062398
10764 7 1114086 1117672 AC091729.7 brain_cerebellum -5.04e-01 0.000289 0 7:1353852-7:2062398
10787 7 1114086 1117672 AC091729.7 brain_nucleus_accumbens_basal_ganglia -6.74e-02 0.000234 0 7:1353852-7:2062398
10737 7 1121844 1133451 GPER1 whole_blood -1.52e+00 0.000531 0 7:1353852-7:2062398
10773 7 1121844 1133451 GPER yfs.blood.rnaarr 6.76e-01 0.000261 0 7:1353852-7:2062398
13119 7 1609709 1629262 PSMG3-AS1 psychencode -6.62e-02 0.000233 0 7:1353852-7:2062398
10765 7 1200121 1204903 AC091729.9 brain_cortex -6.98e-01 0.000287 0 7:1353852-7:2062398
10780 7 1036622 1177896 C7orf50 brain_substantia_nigra -5.69e-01 0.000246 0 7:1353852-7:2062398
10758 7 916189 936073 GET4 thyroid 6.00e-01 0.000307 0 7:1353852-7:2062398
10733 7 1855427 2272878 MAD1L1 ntr.blood.rnaarr -1.64e+00 0.000667 0 7:1353852-7:2062398
10727 7 1509913 1545489 INTS1 whole_blood 1.93e+00 0.000766 0 7:1353852-7:2062398
10754 7 1114086 1117672 AC091729.7 brain_cerebellar_hemisphere 1.05e+00 0.000317 0 7:1353852-7:2062398
10706 7 2477398 2487485 AC004840.9 adrenal_gland -2.50e+00 0.001550 0 7:1353852-7:2062398
10766 7 1200121 1204903 AC091729.9 brain_substantia_nigra -4.44e-01 0.000286 0 7:1353852-7:2062398
10709 7 1509913 1545489 INTS1 brain_anterior_cingulate_cortex_ba24 2.11e+00 0.000988 0 7:1353852-7:2062398
10714 7 1509913 1545489 INTS1 brain_caudate_basal_ganglia 2.07e+00 0.000941 0 7:1353852-7:2062398
10699 7 2477398 2487485 AC004840.9 thyroid 3.70e+00 0.034300 1 7:1353852-7:2062398
10784 7 1084212 1097400 GPR146 brain_cerebellum -2.97e-01 0.000241 0 7:1353852-7:2062398
10710 7 1473996 1499138 MICALL2 whole_blood -2.09e+00 0.000964 0 7:1353852-7:2062398
10775 7 1606966 1610641 PSMG3 thyroid -2.62e-02 0.000256 0 7:1353852-7:2062398
10728 7 1509913 1545489 INTS1 brain_frontal_cortex_ba9 1.93e+00 0.000746 0 7:1353852-7:2062398
10708 7 1878222 1889567 AC110781.3 brain_nucleus_accumbens_basal_ganglia 2.41e+00 0.001050 0 7:1353852-7:2062398
10755 7 1609709 1629262 PSMG3-AS1 brain_nucleus_accumbens_basal_ganglia -1.29e+00 0.000308 0 7:1353852-7:2062398
10717 7 1509913 1545489 INTS1 adrenal_gland 2.04e+00 0.000893 0 7:1353852-7:2062398
10783 7 1609709 1629262 PSMG3-AS1 brain_cerebellum -5.31e-01 0.000244 0 7:1353852-7:2062398
10752 7 1878222 1889567 AC110781.3 brain_frontal_cortex_ba9 -7.61e-01 0.000330 0 7:1353852-7:2062398
10704 7 2273866 2281840 FTSJ2 brain_amygdala 2.90e+00 0.002940 0 7:1353852-7:2062398
10763 7 1878222 1889567 AC110781.3 brain_cortex 7.72e-01 0.000289 0 7:1353852-7:2062398
12650 7 1878222 1889567 AC110781.3 psychencode -1.85e-01 0.000401 0 7:1353852-7:2062398
10776 7 1036622 1177893 C7orf50 cmc.brain.rnaseq_splicing -5.12e-01 0.000254 0 7:1353852-7:2062398
10700 7 2273866 2281840 FTSJ2 brain_nucleus_accumbens_basal_ganglia 3.57e+00 0.021800 0 7:1353852-7:2062398
10777 7 1609709 1629262 PSMG3-AS1 thyroid 4.20e-01 0.000254 0 7:1353852-7:2062398
10705 7 1855429 2272878 MAD1L1 yfs.blood.rnaarr -2.43e+00 0.002310 0 7:1353852-7:2062398
10702 7 1509912 1544018 INTS1 cmc.brain.rnaseq_splicing 3.48e+00 0.016200 0 7:1353852-7:2062398
10769 7 919427 926184 RP11-449P15.2 whole_blood -3.72e-01 0.000278 0 7:1353852-7:2062398
10697 7 2477398 2487485 AC004840.9 brain_hypothalamus -4.17e+00 0.201000 1 7:1353852-7:2062398
10713 7 1504133 1507158 RP11-1246C19.1 brain_cerebellum 2.08e+00 0.000947 0 7:1353852-7:2062398
10718 7 1509913 1545489 INTS1 brain_putamen_basal_ganglia 2.04e+00 0.000893 0 7:1353852-7:2062398
10748 7 1855427 2272583 MAD1L1 cmc.brain.rnaseq 1.56e+00 0.000381 0 7:1353852-7:2062398
10785 7 1036622 1177896 C7orf50 adrenal_gland 2.19e-01 0.000235 0 7:1353852-7:2062398
10712 7 1509913 1545489 INTS1 pituitary 2.08e+00 0.000951 0 7:1353852-7:2062398
10732 7 1509912 1544018 INTS1 cmc.brain.rnaseq 1.87e+00 0.000672 0 7:1353852-7:2062398
10723 7 1097140 1099234 GPR146 ntr.blood.rnaarr -2.01e+00 0.000848 0 7:1353852-7:2062398
10788 7 1473996 1499138 MICALL2 thyroid 1.18e-01 0.000234 0 7:1353852-7:2062398
10750 7 1855427 2272583 MAD1L1 cmc.brain.rnaseq_splicing 1.08e+00 0.000346 0 7:1353852-7:2062398
10781 7 1626206 1629259 KIAA1908 cmc.brain.rnaseq -6.27e-01 0.000244 0 7:1353852-7:2062398
10716 7 2273866 2281840 FTSJ2 whole_blood 2.16e+00 0.000912 0 7:1353852-7:2062398
10725 7 1654226 1654961 TFAMP1 brain_cerebellum 1.80e+00 0.000791 0 7:1353852-7:2062398
10696 7 2273866 2281840 FTSJ2 pituitary 4.31e+00 0.361000 1 7:1353852-7:2062398
10720 7 2273866 2281840 FTSJ2 brain_caudate_basal_ganglia 2.34e+00 0.000875 0 7:1353852-7:2062398
10711 7 2291405 2393953 SNX8 yfs.blood.rnaarr 2.10e+00 0.000951 0 7:1353852-7:2062398
10715 7 1855429 2272878 MAD1L1 whole_blood -1.75e+00 0.000936 0 7:1353852-7:2062398
10760 7 1609709 1629262 PSMG3-AS1 brain_putamen_basal_ganglia 4.66e-01 0.000297 0 7:1353852-7:2062398
11886 7 2291405 2393953 SNX8 psychencode -1.04e+00 0.000390 0 7:1353852-7:2062398
10738 7 937536 1015235 ADAP1 cmc.brain.rnaseq_splicing 1.05e+00 0.000508 0 7:1353852-7:2062398
10703 7 2281857 2290781 NUDT1 pituitary 2.90e+00 0.003100 0 7:1353852-7:2062398
12079 7 2273866 2281840 FTSJ2 psychencode 7.06e-01 0.000361 0 7:1353852-7:2062398
10730 7 2273866 2281840 FTSJ2 thyroid -2.24e+00 0.000735 0 7:1353852-7:2062398
10770 7 1609709 1629262 PSMG3-AS1 brain_cortex -8.33e-01 0.000266 0 7:1353852-7:2062398
11885 7 2393721 2420380 EIF3B psychencode -7.14e-01 0.000427 0 7:1353852-7:2062398
11602 7 12610203 12693228 SCIN psychencode -8.78e-01 0.000238 0 7:11299198-7:12635461
10803 7 12610475 12693228 SCIN thyroid 1.28e+00 0.000294 0 7:11299198-7:12635461
10806 7 12693804 12694610 AC011891.5 brain_nucleus_accumbens_basal_ganglia 1.51e+00 0.000271 0 7:11299198-7:12635461
12078 7 12726481 12730559 ARL4A psychencode -1.56e-01 0.000224 0 7:11299198-7:12635461
10791 7 12250867 12276886 TMEM106B yfs.blood.rnaarr 5.27e+00 0.057400 0 7:11299198-7:12635461
10794 7 12609751 12611017 AC005281.2 brain_nucleus_accumbens_basal_ganglia -3.47e+00 0.001440 0 7:11299198-7:12635461
10815 7 12250867 12282993 TMEM106B brain_cerebellar_hemisphere 6.22e-01 0.000217 0 7:11299198-7:12635461
10795 7 11409984 11871824 THSD7A thyroid 1.46e+00 0.000721 0 7:11299198-7:12635461
10810 7 12370508 12443852 VWDE ntr.blood.rnaarr -1.63e+00 0.000241 0 7:11299198-7:12635461
10807 7 11013499 11209250 PHF14 pituitary -2.42e-01 0.000262 0 7:11299198-7:12635461
10799 7 12370511 12443567 VWDE adrenal_gland -1.23e+00 0.000367 0 7:11299198-7:12635461
10792 7 11221359 11559802 AC004538.3 thyroid 2.99e+00 0.021600 0 7:11299198-7:12635461
10811 7 12370511 12443567 VWDE brain_hypothalamus 5.82e-01 0.000239 0 7:11299198-7:12635461
13175 7 11859943 11860920 AC073109.2 psychencode -1.16e+00 0.000530 0 7:11299198-7:12635461
10796 7 12370508 12443852 VWDE cmc.brain.rnaseq -2.17e+00 0.000708 0 7:11299198-7:12635461
10793 7 12250847 12276890 TMEM106B cmc.brain.rnaseq_splicing -4.89e+00 0.009460 0 7:11299198-7:12635461
10812 7 12370511 12443567 VWDE brain_nucleus_accumbens_basal_ganglia 8.19e-01 0.000239 0 7:11299198-7:12635461
10789 7 12250867 12282993 TMEM106B whole_blood 5.72e+00 0.614000 1 7:11299198-7:12635461
10790 7 12250867 12282993 TMEM106B adrenal_gland 5.29e+00 0.062900 0 7:11299198-7:12635461
10798 7 11409984 11871824 THSD7A brain_cerebellum 2.59e+00 0.000444 0 7:11299198-7:12635461
10800 7 12370511 12443567 VWDE brain_anterior_cingulate_cortex_ba24 1.75e-02 0.000363 0 7:11299198-7:12635461
10813 7 12370511 12443567 VWDE pituitary 1.08e+00 0.000236 0 7:11299198-7:12635461
10801 7 12370511 12443567 VWDE thyroid 1.95e+00 0.000335 0 7:11299198-7:12635461
10809 7 12370511 12443567 VWDE brain_frontal_cortex_ba9 3.70e-01 0.000255 0 7:11299198-7:12635461
10814 7 12370511 12443567 VWDE brain_caudate_basal_ganglia 1.26e+00 0.000235 0 7:11299198-7:12635461
10802 7 12370511 12443567 VWDE whole_blood 1.65e+00 0.000309 0 7:11299198-7:12635461
11887 7 12250867 12282993 TMEM106B psychencode -5.56e+00 0.259000 1 7:11299198-7:12635461
11595 7 11409984 11871824 THSD7A psychencode -1.68e+00 0.002080 0 7:11299198-7:12635461
10797 7 11409984 11871824 THSD7A adrenal_gland 2.48e+00 0.000573 0 7:11299198-7:12635461
10804 7 12370511 12443567 VWDE brain_putamen_basal_ganglia 5.85e-01 0.000274 0 7:11299198-7:12635461
10805 7 12370511 12443567 VWDE brain_hippocampus 1.25e+00 0.000273 0 7:11299198-7:12635461
10808 7 12370511 12443567 VWDE brain_cortex 6.78e-02 0.000257 0 7:11299198-7:12635461
13117 7 11221359 11559802 AC004538.3 psychencode 2.27e+00 0.001690 0 7:11299198-7:12635461
10839 7 24737973 24797639 DFNA5 cmc.brain.rnaseq_splicing 9.51e-01 0.000731 0 7:23471523-7:25077097
10833 7 25397859 25399527 RP5-978I12.1 adrenal_gland -3.10e+00 0.001130 0 7:23471523-7:25077097
10816 7 24836158 25021253 OSBPL3 pituitary -5.32e+00 0.982000 1 7:23471523-7:25077097
10893 7 24613084 24727498 MPP6 cmc.brain.rnaseq_splicing -1.21e+00 0.000232 0 7:23471523-7:25077097
10823 7 24737972 24809244 DFNA5 brain_hippocampus 3.97e+00 0.003370 0 7:23471523-7:25077097
10831 7 24737972 24809244 DFNA5 brain_nucleus_accumbens_basal_ganglia 3.43e+00 0.001290 0 7:23471523-7:25077097
10865 7 23749786 23872132 STK31 brain_substantia_nigra 9.56e-01 0.000283 0 7:23471523-7:25077097
10830 7 24737972 24809244 DFNA5 brain_substantia_nigra 3.70e+00 0.001310 0 7:23471523-7:25077097
10875 7 23749786 23872132 STK31 brain_amygdala 7.72e-01 0.000257 0 7:23471523-7:25077097
10827 7 24737972 24809244 DFNA5 whole_blood 3.60e+00 0.001540 0 7:23471523-7:25077097
10825 7 24737972 24809244 DFNA5 brain_anterior_cingulate_cortex_ba24 3.44e+00 0.002480 0 7:23471523-7:25077097
10819 7 24737972 24809244 DFNA5 brain_caudate_basal_ganglia 4.05e+00 0.005670 0 7:23471523-7:25077097
10844 7 24836158 25021253 OSBPL3 brain_caudate_basal_ganglia -2.92e-02 0.000530 0 7:23471523-7:25077097
10888 7 23749786 23872132 STK31 brain_hippocampus 1.54e-02 0.000235 0 7:23471523-7:25077097
10854 7 24737973 24797639 DFNA5 cmc.brain.rnaseq_splicing -4.80e-01 0.000394 0 7:23471523-7:25077097
12232 7 23275586 23314727 GPNMB psychencode 4.04e-01 0.000292 0 7:23471523-7:25077097
10871 7 23636998 23684327 CCDC126 yfs.blood.rnaarr 5.23e-01 0.000269 0 7:23471523-7:25077097
10846 7 23245632 23247664 AC005082.12 whole_blood 1.29e+00 0.000484 0 7:23471523-7:25077097
10879 7 23749785 23872130 STK31 cmc.brain.rnaseq -1.41e-01 0.000247 0 7:23471523-7:25077097
10859 7 23140847 23145322 KLHL7-AS1 brain_amygdala -8.02e-01 0.000360 0 7:23471523-7:25077097
10838 7 23749786 23872132 STK31 brain_cerebellum -2.11e+00 0.000788 0 7:23471523-7:25077097
10829 7 24737973 24797639 DFNA5 cmc.brain.rnaseq 3.32e+00 0.001320 0 7:23471523-7:25077097
10820 7 24737972 24809244 DFNA5 brain_putamen_basal_ganglia 4.06e+00 0.005160 0 7:23471523-7:25077097
10835 7 23719749 23742868 FAM221A brain_anterior_cingulate_cortex_ba24 1.99e+00 0.001080 0 7:23471523-7:25077097
12838 7 23719749 23742868 FAM221A psychencode 8.40e-01 0.000270 0 7:23471523-7:25077097
10869 7 23719749 23742868 FAM221A adrenal_gland -8.16e-01 0.000276 0 7:23471523-7:25077097
10880 7 22980878 23053749 FAM126A brain_hippocampus 1.84e-01 0.000247 0 7:23471523-7:25077097
10883 7 22980878 23053749 FAM126A adrenal_gland -6.29e-01 0.000240 0 7:23471523-7:25077097
10832 7 23210760 23234503 AC005082.1 brain_anterior_cingulate_cortex_ba24 1.88e+00 0.001230 0 7:23471523-7:25077097
10847 7 23749786 23872132 STK31 thyroid -1.45e+00 0.000465 0 7:23471523-7:25077097
10863 7 24836163 25019760 OSBPL3 cmc.brain.rnaseq 7.41e-02 0.000321 0 7:23471523-7:25077097
10908 7 22980877 23053770 FAM126A cmc.brain.rnaseq_splicing -3.10e-01 0.000225 0 7:23471523-7:25077097
10904 7 23544398 23571656 TRA2A ntr.blood.rnaarr -1.51e-01 0.000226 0 7:23471523-7:25077097
10834 7 24737972 24809244 DFNA5 brain_hypothalamus 2.99e+00 0.001130 0 7:23471523-7:25077097
12075 7 23145353 23217533 KLHL7 psychencode -8.42e-01 0.000358 0 7:23471523-7:25077097
10840 7 23719749 23742868 FAM221A brain_hypothalamus 1.79e+00 0.000714 0 7:23471523-7:25077097
12077 7 22980878 23053749 FAM126A psychencode -1.09e+00 0.000482 0 7:23471523-7:25077097
10903 7 23221237 23240630 NUPL2 ntr.blood.rnaarr 1.58e-01 0.000226 0 7:23471523-7:25077097
13078 7 23245632 23247664 AC005082.12 psychencode 1.40e-01 0.000232 0 7:23471523-7:25077097
10884 7 23719749 23742868 FAM221A pituitary -5.72e-01 0.000239 0 7:23471523-7:25077097
10885 7 23719749 23742868 FAM221A brain_cortex 4.68e-01 0.000237 0 7:23471523-7:25077097
10887 7 23749786 23872132 STK31 brain_putamen_basal_ganglia 5.55e-01 0.000236 0 7:23471523-7:25077097
10881 7 24612887 24729159 MPP6 yfs.blood.rnaarr 1.73e+00 0.000244 0 7:23471523-7:25077097
10868 7 22980878 23053749 FAM126A brain_cerebellum -8.16e-01 0.000278 0 7:23471523-7:25077097
11881 7 24737972 24809244 DFNA5 psychencode 3.39e+00 0.001450 0 7:23471523-7:25077097
10895 7 23749786 23872132 STK31 brain_caudate_basal_ganglia 1.80e-01 0.000230 0 7:23471523-7:25077097
10874 7 23245632 23247664 AC005082.12 brain_putamen_basal_ganglia -7.97e-01 0.000263 0 7:23471523-7:25077097
12856 7 23749786 23872132 STK31 psychencode -1.28e-01 0.000248 0 7:23471523-7:25077097
10862 7 24836158 25021253 OSBPL3 thyroid -9.02e-01 0.000330 0 7:23471523-7:25077097
10890 7 23719749 23742868 FAM221A brain_amygdala 4.12e-01 0.000233 0 7:23471523-7:25077097
10870 7 24613084 24727498 MPP6 cmc.brain.rnaseq_splicing -1.07e+00 0.000273 0 7:23471523-7:25077097
10878 7 24613084 24727498 MPP6 cmc.brain.rnaseq -8.74e-01 0.000248 0 7:23471523-7:25077097
10828 7 24737972 24809244 DFNA5 brain_amygdala 3.47e+00 0.001370 0 7:23471523-7:25077097
11700 7 24836158 25021253 OSBPL3 psychencode -9.70e-01 0.000266 0 7:23471523-7:25077097
10848 7 24613084 24727498 MPP6 cmc.brain.rnaseq_splicing -1.02e+00 0.000464 0 7:23471523-7:25077097
10857 7 24323782 24331484 NPY brain_cerebellar_hemisphere -1.54e+00 0.000378 0 7:23471523-7:25077097
10841 7 24737972 24809244 DFNA5 brain_cortex 3.18e+00 0.000648 0 7:23471523-7:25077097
11880 7 24612887 24733812 MPP6 psychencode -3.38e-01 0.000233 0 7:23471523-7:25077097
10824 7 23221445 23240630 NUPL2 cmc.brain.rnaseq_splicing 2.67e+00 0.003290 0 7:23471523-7:25077097
10851 7 23245632 23247664 AC005082.12 brain_cerebellum 9.51e-01 0.000444 0 7:23471523-7:25077097
10842 7 24737972 24809244 DFNA5 pituitary 2.61e+00 0.000601 0 7:23471523-7:25077097
10826 7 24737972 24809244 DFNA5 brain_frontal_cortex_ba9 3.61e+00 0.001790 0 7:23471523-7:25077097
10861 7 23145352 23215038 KLHL7 cmc.brain.rnaseq_splicing -1.25e+00 0.000340 0 7:23471523-7:25077097
10882 7 23544399 23571660 TRA2A yfs.blood.rnaarr 5.28e-01 0.000241 0 7:23471523-7:25077097
10849 7 24737972 24809244 DFNA5 adrenal_gland 1.91e+00 0.000463 0 7:23471523-7:25077097
10877 7 23749786 23872132 STK31 brain_nucleus_accumbens_basal_ganglia -2.75e-01 0.000252 0 7:23471523-7:25077097
10858 7 24737972 24809244 DFNA5 thyroid -1.32e+00 0.000364 0 7:23471523-7:25077097
10822 7 23168797 23169460 AK3P3 thyroid -2.60e+00 0.003660 0 7:23471523-7:25077097
10821 7 23636997 23684327 CCDC126 cmc.brain.rnaseq -2.73e+00 0.004990 0 7:23471523-7:25077097
10886 7 23221446 23240628 NUPL2 whole_blood 3.89e-01 0.000236 0 7:23471523-7:25077097
10876 7 24737972 24809244 DFNA5 yfs.blood.rnaarr 1.35e+00 0.000254 0 7:23471523-7:25077097
12076 7 24323782 24331484 NPY psychencode -5.71e-01 0.000530 0 7:23471523-7:25077097
10850 7 23749786 23872132 STK31 brain_cerebellar_hemisphere -1.63e+00 0.000463 0 7:23471523-7:25077097
10853 7 23245632 23247664 AC005082.12 adrenal_gland 1.28e+00 0.000394 0 7:23471523-7:25077097
10864 7 23749786 23872132 STK31 brain_cortex -5.09e-01 0.000289 0 7:23471523-7:25077097
10867 7 23719749 23742868 FAM221A brain_substantia_nigra -4.25e-01 0.000279 0 7:23471523-7:25077097
10901 7 22980878 23053749 FAM126A brain_caudate_basal_ganglia -3.18e-01 0.000228 0 7:23471523-7:25077097
10873 7 23275586 23314727 GPNMB brain_nucleus_accumbens_basal_ganglia 7.90e-01 0.000266 0 7:23471523-7:25077097
10855 7 23145353 23217533 KLHL7 brain_frontal_cortex_ba9 1.28e+00 0.000390 0 7:23471523-7:25077097
10906 7 23221445 23240630 NUPL2 cmc.brain.rnaseq_splicing 3.19e-01 0.000226 0 7:23471523-7:25077097
10852 7 23210760 23234503 AC005082.1 adrenal_gland -1.37e+00 0.000442 0 7:23471523-7:25077097
10899 7 23210760 23234503 AC005082.1 brain_cerebellar_hemisphere -2.40e-01 0.000228 0 7:23471523-7:25077097
10898 7 23145352 23215038 KLHL7 cmc.brain.rnaseq_splicing 1.02e-01 0.000229 0 7:23471523-7:25077097
10860 7 24612887 24733812 MPP6 adrenal_gland -2.75e+00 0.000341 0 7:23471523-7:25077097
10902 7 23140847 23145322 KLHL7-AS1 brain_anterior_cingulate_cortex_ba24 -3.28e-01 0.000226 0 7:23471523-7:25077097
10836 7 24836163 25019760 OSBPL3 cmc.brain.rnaseq_splicing -1.12e+00 0.000946 0 7:23471523-7:25077097
10817 7 23221446 23240628 NUPL2 pituitary -3.17e+00 0.011600 0 7:23471523-7:25077097
10872 7 23145353 23217533 KLHL7 brain_caudate_basal_ganglia -8.80e-01 0.000266 0 7:23471523-7:25077097
10856 7 23719749 23742868 FAM221A thyroid -1.40e+00 0.000383 0 7:23471523-7:25077097
13120 7 23140847 23145322 KLHL7-AS1 psychencode 5.25e-01 0.000324 0 7:23471523-7:25077097
10866 7 24612887 24733812 MPP6 brain_putamen_basal_ganglia -1.53e+00 0.000280 0 7:23471523-7:25077097
10907 7 23275586 23314727 GPNMB brain_hypothalamus 1.18e-01 0.000226 0 7:23471523-7:25077097
10891 7 23719749 23742868 FAM221A brain_hippocampus 1.41e-01 0.000232 0 7:23471523-7:25077097
10897 7 23719749 23742868 FAM221A brain_nucleus_accumbens_basal_ganglia 2.76e-01 0.000230 0 7:23471523-7:25077097
10905 7 23221446 23240628 NUPL2 brain_cerebellar_hemisphere -3.16e-01 0.000226 0 7:23471523-7:25077097
10892 7 23719749 23742868 FAM221A brain_putamen_basal_ganglia 1.28e-01 0.000232 0 7:23471523-7:25077097
10900 7 23145353 23217533 KLHL7 brain_nucleus_accumbens_basal_ganglia -3.97e-01 0.000228 0 7:23471523-7:25077097
12233 7 23221446 23240630 NUPL2 psychencode 4.93e-01 0.000256 0 7:23471523-7:25077097
10818 7 23245632 23247664 AC005082.12 brain_nucleus_accumbens_basal_ganglia 2.73e+00 0.006160 0 7:23471523-7:25077097
10896 7 23168797 23169460 AK3P3 brain_cerebellum 3.62e-01 0.000230 0 7:23471523-7:25077097
10894 7 23719749 23742868 FAM221A brain_caudate_basal_ganglia 2.81e-01 0.000231 0 7:23471523-7:25077097
10843 7 23221446 23240630 NUPL2 yfs.blood.rnaarr -1.68e+00 0.000542 0 7:23471523-7:25077097
10837 7 23245632 23247664 AC005082.12 brain_caudate_basal_ganglia 1.39e+00 0.000819 0 7:23471523-7:25077097
10845 7 23245632 23247664 AC005082.12 pituitary 1.65e+00 0.000495 0 7:23471523-7:25077097
10889 7 24613084 24727498 MPP6 cmc.brain.rnaseq_splicing 1.03e+00 0.000235 0 7:23471523-7:25077097
10911 7 54398390 54417542 RP11-436F9.1 brain_cortex 1.94e-01 0.000160 0 7:53176376-7:54222976
10910 7 54487137 54488021 SLC25A5P3 brain_hypothalamus 4.36e-01 0.000172 0 7:53176376-7:54222976
10909 7 54624662 54639419 LOC285878 cmc.brain.rnaseq 1.13e+00 0.000291 0 7:53176376-7:54222976
12599 7 54610018 54638773 VSTM2A psychencode -1.72e-01 0.000159 0 7:53176376-7:54222976
10912 7 54624663 54639419 GS1-18A18.1 brain_cortex 1.35e-01 0.000158 0 7:53176376-7:54222976
13050 7 54624663 54639419 GS1-18A18.1 psychencode -2.18e+00 0.001590 0 7:53176376-7:54222976
10921 7 79998891 80308593 CD36 yfs.blood.rnaarr -6.06e-01 0.000188 0 7:79888283-7:82022625
11619 7 81328322 81399754 HGF psychencode -8.39e-01 0.000221 0 7:79888283-7:82022625
10913 7 81579417 82073031 CACNA2D1 cmc.brain.rnaseq_splicing 2.09e+00 0.001320 0 7:79888283-7:82022625
10923 7 79998891 80306324 CD36 whole_blood 1.23e-01 0.000159 0 7:79888283-7:82022625
10918 7 80371853 80551675 SEMA3C cmc.brain.rnaseq -9.66e-01 0.000247 0 7:79888283-7:82022625
10919 7 80371854 80551675 SEMA3C yfs.blood.rnaarr 9.48e-01 0.000243 0 7:79888283-7:82022625
12214 7 79998891 80308593 CD36 psychencode -1.40e+00 0.000410 0 7:79888283-7:82022625
11711 7 80371854 80551675 SEMA3C psychencode -5.42e-01 0.000181 0 7:79888283-7:82022625
10922 7 80371854 80551675 SEMA3C whole_blood -4.03e-01 0.000170 0 7:79888283-7:82022625
10917 7 80087987 80141336 GNAT3 thyroid -1.41e+00 0.000412 0 7:79888283-7:82022625
10920 7 79763271 79848718 GNAI1 thyroid -7.51e-01 0.000207 0 7:79888283-7:82022625
10915 7 81575760 82073114 CACNA2D1 adrenal_gland 1.59e+00 0.000535 0 7:79888283-7:82022625
10914 7 80267764 80308593 CD36 ntr.blood.rnaarr -2.08e+00 0.001310 0 7:79888283-7:82022625
10924 7 81328322 81399754 HGF brain_cerebellum 1.60e-01 0.000159 0 7:79888283-7:82022625
10916 7 79998890 80303734 CD36 cmc.brain.rnaseq -1.58e+00 0.000527 0 7:79888283-7:82022625
12384 7 81575760 82073114 CACNA2D1 psychencode -1.72e+00 0.000697 0 7:82023061-7:83799780
10926 7 82993222 83278326 SEMA3E brain_amygdala -1.64e+00 0.003110 0 7:82023061-7:83799780
10929 7 82993222 83278326 SEMA3E thyroid 1.28e+00 0.000303 0 7:82023061-7:83799780
12598 7 82993222 83278326 SEMA3E psychencode -1.95e+00 0.001120 0 7:82023061-7:83799780
10925 7 82383329 82792246 PCLO brain_nucleus_accumbens_basal_ganglia -4.28e+00 0.541000 1 7:82023061-7:83799780
10927 7 83585093 84122040 SEMA3A thyroid -2.00e+00 0.001670 0 7:82023061-7:83799780
12802 7 82383329 82792246 PCLO psychencode -1.67e+00 0.000425 0 7:82023061-7:83799780
11710 7 83585093 84122040 SEMA3A psychencode -2.31e+00 0.003960 0 7:82023061-7:83799780
10928 7 81575760 82073114 CACNA2D1 adrenal_gland 1.34e+00 0.000322 0 7:82023061-7:83799780
10930 7 81579417 82073031 CACNA2D1 cmc.brain.rnaseq_splicing -4.36e-02 0.000207 0 7:82023061-7:83799780
10940 7 108194987 108209897 THAP5 brain_caudate_basal_ganglia -3.69e+00 0.032100 1 7:107780267-7:109647594
10942 7 108194987 108209897 THAP5 brain_amygdala -3.65e+00 0.027800 0 7:107780267-7:109647594
10954 7 107531415 107572175 DLD brain_cerebellum 1.77e+00 0.000454 0 7:107780267-7:109647594
10939 7 108194987 108209897 THAP5 brain_nucleus_accumbens_basal_ganglia -3.70e+00 0.032900 1 7:107780267-7:109647594
10962 7 107383262 107384881 AC002467.7 brain_hypothalamus -4.28e-01 0.000281 0 7:107780267-7:109647594
10943 7 108194987 108209897 THAP5 brain_cortex -3.65e+00 0.027600 0 7:107780267-7:109647594
10944 7 108194987 108209897 THAP5 whole_blood -3.56e+00 0.020600 0 7:107780267-7:109647594
10945 7 108194987 108209897 THAP5 adrenal_gland -3.29e+00 0.008390 0 7:107780267-7:109647594
12155 7 108210012 108215294 DNAJB9 psychencode -3.16e+00 0.005670 0 7:107780267-7:109647594
10938 7 108194987 108209897 THAP5 brain_cerebellum -3.72e+00 0.035400 1 7:107780267-7:109647594
10968 7 107788068 108097161 NRCAM thyroid 3.09e-01 0.000251 0 7:107780267-7:109647594
10958 7 108110866 108168605 PNPLA8 brain_caudate_basal_ganglia 2.76e-01 0.000367 0 7:107780267-7:109647594
10971 7 107582561 107583185 CTB-13F3.1 brain_cerebellum -4.42e-01 0.000241 0 7:107780267-7:109647594
10947 7 107788070 108096841 NRCAM cmc.brain.rnaseq_splicing -3.01e+00 0.003700 0 7:107780267-7:109647594
10937 7 108194987 108209897 THAP5 brain_hippocampus -3.80e+00 0.046300 1 7:107780267-7:109647594
11765 7 107788068 108097161 NRCAM psychencode 1.04e+00 0.000281 0 7:107780267-7:109647594
11768 7 107531415 107572175 DLD psychencode 3.05e-01 0.000250 0 7:107780267-7:109647594
10969 7 107582561 107583185 CTB-13F3.1 thyroid 6.20e-01 0.000250 0 7:107780267-7:109647594
10956 7 108110866 108210110 PNPLA8 yfs.blood.rnaarr -6.72e-01 0.000386 0 7:107780267-7:109647594
10932 7 108194987 108209897 THAP5 thyroid -3.96e+00 0.085500 1 7:107780267-7:109647594
10941 7 108210188 108215294 DNAJB9 cmc.brain.rnaseq -3.66e+00 0.030100 1 7:107780267-7:109647594
10948 7 108110865 108168605 PNPLA8 cmc.brain.rnaseq_splicing 2.66e+00 0.001560 0 7:107780267-7:109647594
10955 7 107383262 107384881 AC002467.7 brain_caudate_basal_ganglia 1.45e+00 0.000414 0 7:107780267-7:109647594
11767 7 107301080 107358254 SLC26A4 psychencode -1.07e+00 0.000359 0 7:107780267-7:109647594
10972 7 107531585 107561643 DLD cmc.brain.rnaseq 2.72e-01 0.000239 0 7:107780267-7:109647594
13527 7 107582561 107583185 CTB-13F3.1 psychencode 2.27e+00 0.000770 0 7:107780267-7:109647594
10953 7 108110866 108168605 PNPLA8 thyroid -3.46e-01 0.000517 0 7:107780267-7:109647594
12215 7 108110866 108210110 PNPLA8 psychencode 2.28e+00 0.002000 0 7:107780267-7:109647594
10933 7 108194987 108209897 THAP5 brain_putamen_basal_ganglia -3.86e+00 0.058800 1 7:107780267-7:109647594
10935 7 108194987 108209897 THAP5 brain_anterior_cingulate_cortex_ba24 -3.86e+00 0.058400 1 7:107780267-7:109647594
10965 7 107531415 107572175 DLD brain_cortex -8.99e-01 0.000269 0 7:107780267-7:109647594
11766 7 107564244 107643700 LAMB1 psychencode 2.52e-01 0.000249 0 7:107780267-7:109647594
10936 7 108194987 108209897 THAP5 pituitary -3.80e+00 0.047200 1 7:107780267-7:109647594
10931 7 108194987 108209897 THAP5 brain_cerebellar_hemisphere -4.12e+00 0.162000 1 7:107780267-7:109647594
10950 7 107531415 107572175 DLD yfs.blood.rnaarr 2.53e+00 0.001360 0 7:107780267-7:109647594
11879 7 107384142 107402112 CBLL1 psychencode 2.52e+00 0.001340 0 7:107780267-7:109647594
10970 7 107564248 107643700 LAMB1 thyroid 4.20e-01 0.000247 0 7:107780267-7:109647594
10961 7 107531415 107572175 DLD brain_frontal_cortex_ba9 4.36e-02 0.000306 0 7:107780267-7:109647594
10951 7 107564248 107643700 LAMB1 brain_cerebellar_hemisphere -2.49e+00 0.001140 0 7:107780267-7:109647594
10949 7 107788068 108097161 NRCAM brain_cerebellum -2.48e+00 0.001390 0 7:107780267-7:109647594
10934 7 108194987 108209897 THAP5 brain_frontal_cortex_ba9 -3.86e+00 0.058500 1 7:107780267-7:109647594
10946 7 108194987 108209897 THAP5 brain_hypothalamus -3.05e+00 0.004110 0 7:107780267-7:109647594
13152 7 107294421 107302596 SLC26A4-AS1 psychencode 4.67e-01 0.000383 0 7:107780267-7:109647594
10952 7 107531415 107572175 DLD brain_substantia_nigra -2.20e+00 0.000839 0 7:107780267-7:109647594
10967 7 107531415 107572175 DLD brain_putamen_basal_ganglia -1.29e-01 0.000254 0 7:107780267-7:109647594
10959 7 107788068 108097161 NRCAM yfs.blood.rnaarr 1.17e+00 0.000347 0 7:107780267-7:109647594
10964 7 107788068 108097161 NRCAM adrenal_gland 8.83e-01 0.000270 0 7:107780267-7:109647594
10960 7 107582561 107583185 CTB-13F3.1 brain_cerebellar_hemisphere -1.11e+00 0.000314 0 7:107780267-7:109647594
10966 7 107383262 107384881 AC002467.7 brain_frontal_cortex_ba9 1.78e-01 0.000259 0 7:107780267-7:109647594
10963 7 107531415 107572175 DLD brain_caudate_basal_ganglia 3.77e-01 0.000273 0 7:107780267-7:109647594
10957 7 107531415 107572175 DLD thyroid 1.55e+00 0.000368 0 7:107780267-7:109647594
10992 7 116451124 116562103 CAPZA2 whole_blood -1.32e+00 0.000446 0 7:116780178-7:118351333
13003 7 116593953 116738860 ST7-OT4 psychencode 7.04e-02 0.000241 0 7:116780178-7:118351333
10987 7 117854727 117882785 ANKRD7 thyroid -2.19e+00 0.000742 0 7:116780178-7:118351333
11593 7 117105838 117356025 CFTR psychencode 3.00e+00 0.020800 0 7:116780178-7:118351333
10994 7 117864711 117882784 ANKRD7 cmc.brain.rnaseq -1.60e+00 0.000436 0 7:116780178-7:118351333
10991 7 116451123 116538889 CAPZA2 cmc.brain.rnaseq 1.30e+00 0.000488 0 7:116780178-7:118351333
10974 7 117864711 117882784 ANKRD7 cmc.brain.rnaseq_splicing -4.08e+00 0.159000 1 7:116780178-7:118351333
10993 7 117105838 117356025 CFTR brain_cerebellar_hemisphere -1.10e+00 0.000440 0 7:116780178-7:118351333
10981 7 117120016 117308718 CFTR cmc.brain.rnaseq 2.68e+00 0.007440 0 7:116780178-7:118351333
10983 7 117350705 117513561 CTTNBP2 cmc.brain.rnaseq -2.97e+00 0.003900 0 7:116780178-7:118351333
10989 7 116593292 116870157 ST7 yfs.blood.rnaarr -1.47e+00 0.000669 0 7:116780178-7:118351333
11884 7 117854727 117882785 ANKRD7 psychencode -1.66e+00 0.000648 0 7:116780178-7:118351333
10973 7 117864711 117882784 ANKRD7 cmc.brain.rnaseq_splicing 4.23e+00 0.293000 1 7:116780178-7:118351333
11721 7 117350705 117514193 CTTNBP2 psychencode -2.72e+00 0.002440 0 7:116780178-7:118351333
10990 7 117350756 117514193 CTTNBP2 thyroid 1.67e+00 0.000615 0 7:116780178-7:118351333
11883 7 116916685 116963343 WNT2 psychencode 1.92e+00 0.001520 0 7:116780178-7:118351333
10978 7 117824085 117844093 NAA38 cmc.brain.rnaseq -3.58e+00 0.024100 0 7:116780178-7:118351333
10975 7 117824086 117832878 NAA38 brain_caudate_basal_ganglia 4.07e+00 0.145000 1 7:116780178-7:118351333
10976 7 117824086 117832878 NAA38 brain_frontal_cortex_ba9 3.74e+00 0.041800 1 7:116780178-7:118351333
10985 7 116916685 116963343 WNT2 brain_cortex 2.12e+00 0.002070 0 7:116780178-7:118351333
10977 7 117824086 117832878 NAA38 thyroid 3.59e+00 0.024800 1 7:116780178-7:118351333
10986 7 116312444 116438440 MET thyroid 1.62e+00 0.000947 0 7:116780178-7:118351333
10996 7 116916685 116963343 WNT2 cmc.brain.rnaseq 4.29e-01 0.000309 0 7:116780178-7:118351333
10979 7 117105838 117356025 CFTR brain_hippocampus 3.07e+00 0.022600 0 7:116780178-7:118351333
10988 7 117854727 117882785 ANKRD7 pituitary -1.75e+00 0.000679 0 7:116780178-7:118351333
10984 7 117824086 117832878 NAA38 brain_cerebellum 2.97e+00 0.003640 0 7:116780178-7:118351333
10995 7 116451124 116559315 CAPZA2 yfs.blood.rnaarr -4.58e-01 0.000356 0 7:116780178-7:118351333
10980 7 117854727 117882785 ANKRD7 brain_cerebellum -3.53e+00 0.020600 0 7:116780178-7:118351333
10982 7 117105838 117356025 CFTR brain_anterior_cingulate_cortex_ba24 2.53e+00 0.005630 0 7:116780178-7:118351333
12154 7 117824086 117832878 NAA38 psychencode -3.24e-01 0.000305 0 7:116780178-7:118351333
12579 8 21547915 21669869 GFRA2 psychencode 6.81e-01 0.000199 0 8:20060856-8:21661737
11001 8 21881636 21894408 NPM2 brain_cerebellum 1.26e+00 0.000344 0 8:20060856-8:21661737
11021 8 20513202 20557645 RP11-108E14.1 brain_nucleus_accumbens_basal_ganglia -4.38e-01 0.000174 0 8:20060856-8:21661737
11019 8 21899909 21906320 FGF17 pituitary 5.14e-01 0.000180 0 8:20060856-8:21661737
11029 8 21899909 21906320 FGF17 brain_cerebellum 2.90e-01 0.000165 0 8:20060856-8:21661737
12423 8 21906506 21940038 DMTN psychencode -1.90e+00 0.000925 0 8:20060856-8:21661737
11011 8 21964383 21966932 NUDT18 brain_putamen_basal_ganglia -7.04e-01 0.000202 0 8:20060856-8:21661737
11016 8 21964383 21966932 NUDT18 yfs.blood.rnaarr 6.23e-01 0.000191 0 8:20060856-8:21661737
12576 8 22004338 22014597 LGI3 psychencode 3.55e-01 0.000169 0 8:20060856-8:21661737
11010 8 19261672 19615540 CSGALNACT1 brain_anterior_cingulate_cortex_ba24 7.55e-01 0.000209 0 8:20060856-8:21661737
11022 8 21964383 21966932 NUDT18 brain_caudate_basal_ganglia 3.96e-01 0.000171 0 8:20060856-8:21661737
11027 8 19261672 19615540 CSGALNACT1 thyroid 3.36e-01 0.000167 0 8:20060856-8:21661737
11033 8 20054878 20084330 ATP6V1B2 brain_cerebellum 1.53e-01 0.000160 0 8:20060856-8:21661737
12628 8 21964383 21966932 NUDT18 psychencode 2.86e-01 0.000165 0 8:20060856-8:21661737
11002 8 21906506 21940038 DMTN brain_anterior_cingulate_cortex_ba24 -1.16e+00 0.000306 0 8:20060856-8:21661737
11037 8 19261671 19615382 CSGALNACT1 cmc.brain.rnaseq 1.27e-01 0.000160 0 8:20060856-8:21661737
12643 8 19759228 19824769 LPL psychencode 2.15e+00 0.001510 0 8:20060856-8:21661737
11008 8 20103676 20161474 LZTS1 whole_blood 8.63e-01 0.000228 0 8:20060856-8:21661737
11670 8 20103676 20161474 LZTS1 psychencode -5.57e-01 0.000184 0 8:20060856-8:21661737
11017 8 21971931 21988565 HR cmc.brain.rnaseq_splicing -5.89e-01 0.000188 0 8:20060856-8:21661737
11030 8 19261672 19615540 CSGALNACT1 yfs.blood.rnaarr -2.19e-01 0.000162 0 8:20060856-8:21661737
11032 8 21881636 21894408 NPM2 brain_cerebellar_hemisphere -1.48e-01 0.000160 0 8:20060856-8:21661737
13304 8 20880807 20886569 RP11-421P23.2 psychencode 1.06e+00 0.000274 0 8:20060856-8:21661737
11034 8 20103676 20161474 LZTS1 yfs.blood.rnaarr -1.29e-01 0.000160 0 8:20060856-8:21661737
12421 8 21881636 21894408 NPM2 psychencode 3.54e-01 0.000169 0 8:20060856-8:21661737
11023 8 19261672 19615540 CSGALNACT1 brain_cortex 3.68e-01 0.000169 0 8:20060856-8:21661737
11006 8 21946695 21962409 FAM160B2 adrenal_gland -9.19e-01 0.000239 0 8:20060856-8:21661737
11035 8 19261672 19615540 CSGALNACT1 brain_caudate_basal_ganglia 1.27e-01 0.000160 0 8:20060856-8:21661737
11007 8 21547915 21669869 GFRA2 pituitary 9.11e-01 0.000237 0 8:20060856-8:21661737
11004 8 19674651 19709594 INTS10 brain_putamen_basal_ganglia -1.13e+00 0.000296 0 8:20060856-8:21661737
13305 8 20810156 20831388 RP11-369E15.3 psychencode -2.67e-02 0.000158 0 8:20060856-8:21661737
11038 8 19674651 19709594 INTS10 thyroid -1.19e-01 0.000160 0 8:20060856-8:21661737
11031 8 21971931 21988565 HR cmc.brain.rnaseq -1.68e-01 0.000161 0 8:20060856-8:21661737
11003 8 19261672 19615540 CSGALNACT1 adrenal_gland 1.16e+00 0.000305 0 8:20060856-8:21661737
11024 8 21899909 21906320 FGF17 brain_cerebellar_hemisphere 3.53e-01 0.000169 0 8:20060856-8:21661737
11015 8 21547915 21669869 GFRA2 thyroid -6.27e-01 0.000193 0 8:20060856-8:21661737
11018 8 19674917 19709586 INTS10 cmc.brain.rnaseq_splicing -5.92e-01 0.000188 0 8:20060856-8:21661737
10999 8 21995533 21999464 REEP4 brain_putamen_basal_ganglia 1.39e+00 0.000409 0 8:20060856-8:21661737
11020 8 21547915 21669869 GFRA2 yfs.blood.rnaarr 4.67e-01 0.000176 0 8:20060856-8:21661737
11014 8 21964383 21966932 NUDT18 thyroid -6.41e-01 0.000194 0 8:20060856-8:21661737
11009 8 21995533 21999464 REEP4 yfs.blood.rnaarr -8.29e-01 0.000222 0 8:20060856-8:21661737
11026 8 19796283 19824770 LPL ntr.blood.rnaarr 3.33e-01 0.000168 0 8:20060856-8:21661737
13292 8 20513202 20557645 RP11-108E14.1 psychencode 8.68e-02 0.000159 0 8:20060856-8:21661737
10997 8 19796581 19824770 LPL cmc.brain.rnaseq 2.08e+00 0.001290 0 8:20060856-8:21661737
11005 8 19261672 19615540 CSGALNACT1 brain_nucleus_accumbens_basal_ganglia 9.51e-01 0.000246 0 8:20060856-8:21661737
11028 8 22004342 22014344 LGI3 cmc.brain.rnaseq -2.83e-01 0.000166 0 8:20060856-8:21661737
10998 8 20002366 20040717 SLC18A1 brain_putamen_basal_ganglia -1.51e+00 0.000478 0 8:20060856-8:21661737
12422 8 21899909 21906320 FGF17 psychencode -1.46e+00 0.000448 0 8:20060856-8:21661737
11012 8 22132809 22213584 PIWIL2 cmc.brain.rnaseq 6.46e-01 0.000194 0 8:20060856-8:21661737
11036 8 19674917 19709586 INTS10 cmc.brain.rnaseq_splicing -1.27e-01 0.000160 0 8:20060856-8:21661737
11000 8 21906506 21940038 DMTN pituitary -1.35e+00 0.000385 0 8:20060856-8:21661737
11025 8 21906506 21940038 DMTN adrenal_gland -3.52e-01 0.000169 0 8:20060856-8:21661737
12577 8 22102617 22112113 POLR3D psychencode -3.44e-01 0.000168 0 8:20060856-8:21661737
11013 8 22112114 22132675 CTD-2530N21.4 brain_amygdala 6.46e-01 0.000194 0 8:20060856-8:21661737
11063 8 26371791 26515694 DPYSL2 brain_frontal_cortex_ba9 -1.04e-01 0.000161 0 8:25483454-8:26682525
11039 8 25699246 25902913 EBF2 brain_caudate_basal_ganglia 2.78e+00 0.006700 0 8:25483454-8:26682525
13202 8 26362202 26371608 PNMA2 psychencode 1.53e+00 0.000511 0 8:25483454-8:26682525
11041 8 26605667 26724790 ADRA1A brain_caudate_basal_ganglia -2.07e+00 0.001260 0 8:25483454-8:26682525
11873 8 26240414 26363152 BNIP3L psychencode 3.17e-01 0.000169 0 8:25483454-8:26682525
11066 8 26605667 26724790 ADRA1A brain_nucleus_accumbens_basal_ganglia -2.50e-02 0.000159 0 8:25483454-8:26682525
12063 8 26605667 26724790 ADRA1A psychencode -3.24e-01 0.000167 0 8:25483454-8:26682525
11053 8 26236775 26240413 SDAD1P1 pituitary 6.50e-01 0.000196 0 8:25483454-8:26682525
11058 8 26605666 26722922 ADRA1A cmc.brain.rnaseq -5.10e-01 0.000180 0 8:25483454-8:26682525
11043 8 25042238 25273232 DOCK5 whole_blood 1.82e+00 0.000794 0 8:25483454-8:26682525
11062 8 25042238 25275598 DOCK5 yfs.blood.rnaarr 1.68e-01 0.000161 0 8:25483454-8:26682525
11045 8 27092840 27115937 STMN4 brain_amygdala -1.49e+00 0.000470 0 8:25483454-8:26682525
11052 8 26362202 26371608 PNMA2 pituitary -6.71e-01 0.000198 0 8:25483454-8:26682525
11047 8 26371791 26515694 DPYSL2 thyroid -8.50e-01 0.000226 0 8:25483454-8:26682525
11054 8 26236775 26240413 SDAD1P1 brain_caudate_basal_ganglia 6.47e-01 0.000195 0 8:25483454-8:26682525
11042 8 26236775 26240413 SDAD1P1 brain_cerebellar_hemisphere 1.85e+00 0.000845 0 8:25483454-8:26682525
11059 8 26236775 26240413 SDAD1P1 adrenal_gland 3.98e-01 0.000172 0 8:25483454-8:26682525
11616 8 27092840 27115937 STMN4 psychencode 1.56e+00 0.000515 0 8:25483454-8:26682525
11040 8 26362202 26371608 PNMA2 brain_cerebellum 2.25e+00 0.001850 0 8:25483454-8:26682525
11055 8 27092840 27115937 STMN4 brain_putamen_basal_ganglia -5.49e-01 0.000184 0 8:25483454-8:26682525
11060 8 26236775 26240413 SDAD1P1 thyroid 3.40e-01 0.000169 0 8:25483454-8:26682525
11056 8 27093813 27115903 STMN4 cmc.brain.rnaseq_splicing 5.42e-01 0.000184 0 8:25483454-8:26682525
11872 8 25285366 25315992 KCTD9 psychencode -2.15e+00 0.001500 0 8:25483454-8:26682525
11057 8 27093813 27115903 STMN4 cmc.brain.rnaseq_splicing -5.35e-01 0.000183 0 8:25483454-8:26682525
13100 8 26236775 26240469 SDAD1P1 psychencode -2.43e-01 0.000166 0 8:25483454-8:26682525
11044 8 26362202 26371608 PNMA2 brain_cerebellar_hemisphere 1.63e+00 0.000576 0 8:25483454-8:26682525
11051 8 26236775 26240413 SDAD1P1 brain_frontal_cortex_ba9 6.84e-01 0.000200 0 8:25483454-8:26682525
11046 8 26236775 26240413 SDAD1P1 brain_cortex 8.95e-01 0.000235 0 8:25483454-8:26682525
11061 8 27093813 27115903 STMN4 cmc.brain.rnaseq_splicing -2.94e-01 0.000166 0 8:25483454-8:26682525
11064 8 27142404 27168836 TRIM35 thyroid -1.41e-01 0.000161 0 8:25483454-8:26682525
11050 8 27092840 27115937 STMN4 brain_cerebellum -7.57e-01 0.000211 0 8:25483454-8:26682525
11065 8 27142404 27168836 TRIM35 pituitary -7.48e-02 0.000160 0 8:25483454-8:26682525
11865 8 27142404 27168836 TRIM35 psychencode 2.52e-01 0.000164 0 8:25483454-8:26682525
12062 8 27168999 27316903 PTK2B psychencode 5.71e-01 0.000186 0 8:25483454-8:26682525
11048 8 26236775 26240413 SDAD1P1 brain_cerebellum 8.37e-01 0.000224 0 8:25483454-8:26682525
11049 8 26236775 26240413 SDAD1P1 brain_hypothalamus 7.85e-01 0.000215 0 8:25483454-8:26682525
11088 8 39770802 39786251 IDO1 ntr.blood.rnaarr 4.21e-01 0.000218 0 8:38938928-8:40703207
11095 8 38964509 39142430 ADAM32 brain_cerebellar_hemisphere -9.03e-02 0.000203 0 8:38938928-8:40703207
11079 8 38965049 39142436 ADAM32 cmc.brain.rnaseq -3.10e-01 0.000300 0 8:38938928-8:40703207
11082 8 39759794 39785963 IDO1 thyroid 7.36e-01 0.000235 0 8:38938928-8:40703207
12885 8 38964509 39142430 ADAM32 psychencode 3.56e-01 0.000208 0 8:38938928-8:40703207
11092 8 40010986 40012827 C8orf4 cmc.brain.rnaseq -2.01e-01 0.000208 0 8:38938928-8:40703207
11097 8 38854504 38962779 ADAM9 cmc.brain.rnaseq_splicing 3.27e-02 0.000200 0 8:38938928-8:40703207
11072 8 40010989 40012821 C8orf4 brain_frontal_cortex_ba9 1.77e+00 0.000711 0 8:38938928-8:40703207
11068 8 40388110 40755343 ZMAT4 cmc.brain.rnaseq -3.66e+00 0.066000 0 8:38938928-8:40703207
12655 8 40010989 40012821 C8orf4 psychencode 6.63e-01 0.000234 0 8:38938928-8:40703207
11070 8 38964509 39142430 ADAM32 adrenal_gland -1.84e+00 0.001070 0 8:38938928-8:40703207
11067 8 40377084 40377677 RP11-301G7.1 thyroid -3.73e+00 0.083500 0 8:38938928-8:40703207
11093 8 38854504 38962779 ADAM9 cmc.brain.rnaseq 2.71e-01 0.000207 0 8:38938928-8:40703207
11069 8 38965049 39142436 ADAM32 cmc.brain.rnaseq_splicing 2.65e+00 0.004770 0 8:38938928-8:40703207
11071 8 38964509 39142430 ADAM32 pituitary -1.81e+00 0.001000 0 8:38938928-8:40703207
11096 8 38846327 38854343 TM2D2 whole_blood 5.42e-03 0.000201 0 8:38938928-8:40703207
13509 8 40377084 40377677 RP11-301G7.1 psychencode -4.03e+00 0.259000 1 8:38938928-8:40703207
11074 8 41119481 41167016 SFRP1 brain_cortex 1.38e+00 0.000573 0 8:38938928-8:40703207
12588 8 38846327 38854343 TM2D2 psychencode -3.10e-01 0.000209 0 8:38938928-8:40703207
11089 8 41119475 41166990 SFRP1 cmc.brain.rnaseq -1.70e-01 0.000213 0 8:38938928-8:40703207
11869 8 41119481 41167016 SFRP1 psychencode -1.12e-01 0.000239 0 8:38938928-8:40703207
11085 8 38854388 38962663 ADAM9 brain_nucleus_accumbens_basal_ganglia 4.00e-01 0.000221 0 8:38938928-8:40703207
11086 8 38964509 39142430 ADAM32 brain_cerebellum -3.87e-01 0.000219 0 8:38938928-8:40703207
11073 8 40388109 40755352 ZMAT4 thyroid -1.47e+00 0.000633 0 8:38938928-8:40703207
11077 8 39759794 39785963 IDO1 yfs.blood.rnaarr 1.16e+00 0.000443 0 8:38938928-8:40703207
12509 8 40388109 40755352 ZMAT4 psychencode -4.21e-01 0.000268 0 8:38938928-8:40703207
11076 8 38964509 39142430 ADAM32 thyroid -1.32e+00 0.000470 0 8:38938928-8:40703207
11090 8 38854388 38962663 ADAM9 whole_blood 1.70e-01 0.000212 0 8:38938928-8:40703207
11087 8 41119481 41167016 SFRP1 brain_cerebellum -1.39e-01 0.000219 0 8:38938928-8:40703207
11084 8 38846327 38854343 TM2D2 brain_cerebellar_hemisphere 5.25e-01 0.000230 0 8:38938928-8:40703207
12580 8 38854388 38962663 ADAM9 psychencode -1.25e-01 0.000204 0 8:38938928-8:40703207
11078 8 41119481 41167016 SFRP1 thyroid 1.27e+00 0.000427 0 8:38938928-8:40703207
11094 8 38585704 38710546 TACC1 yfs.blood.rnaarr -1.98e-01 0.000206 0 8:38938928-8:40703207
11081 8 38758753 38831428 PLEKHA2 thyroid -5.47e-01 0.000235 0 8:38938928-8:40703207
12589 8 38758753 38831428 PLEKHA2 psychencode -5.48e-01 0.000233 0 8:38938928-8:40703207
11075 8 38846326 38854041 TM2D2 cmc.brain.rnaseq_splicing -1.37e+00 0.000489 0 8:38938928-8:40703207
11083 8 38846326 38854063 TM2D2 ntr.blood.rnaarr -4.76e-01 0.000231 0 8:38938928-8:40703207
11091 8 38846326 38854041 TM2D2 cmc.brain.rnaseq_splicing 3.28e-01 0.000210 0 8:38938928-8:40703207
11080 8 38846327 38854343 TM2D2 brain_caudate_basal_ganglia 6.86e-01 0.000256 0 8:38938928-8:40703207
11107 8 41510743 41754280 ANK1 cmc.brain.rnaseq_splicing -1.37e+00 0.000395 0 8:40703367-8:41720930
11098 8 41386724 41403185 GINS4 ntr.blood.rnaarr 2.59e+00 0.004100 0 8:40703367-8:41720930
11122 8 41510739 41754280 ANK1 brain_cerebellum 7.13e-01 0.000206 0 8:40703367-8:41720930
11114 8 41518509 41523084 RP11-930P14.1 brain_cerebellar_hemisphere -9.66e-01 0.000253 0 8:40703367-8:41720930
11134 8 41518509 41523084 RP11-930P14.1 brain_substantia_nigra 3.11e-02 0.000163 0 8:40703367-8:41720930
11110 8 41434706 41482520 AGPAT6 thyroid -1.24e+00 0.000333 0 8:40703367-8:41720930
11130 8 41518509 41523084 RP11-930P14.1 brain_cerebellum -2.61e-01 0.000169 0 8:40703367-8:41720930
11113 8 41386724 41402565 GINS4 cmc.brain.rnaseq -1.13e+00 0.000296 0 8:40703367-8:41720930
11132 8 41510739 41754280 ANK1 brain_cerebellar_hemisphere -1.92e-01 0.000165 0 8:40703367-8:41720930
11102 8 41347915 41368499 GOLGA7 brain_hippocampus -1.91e+00 0.000939 0 8:40703367-8:41720930
11101 8 41510741 41655140 ANK1 ntr.blood.rnaarr 2.07e+00 0.001260 0 8:40703367-8:41720930
11126 8 41368759 41370040 KRT18P37 brain_anterior_cingulate_cortex_ba24 4.14e-01 0.000178 0 8:40703367-8:41720930
11118 8 41434706 41482520 AGPAT6 whole_blood 8.11e-01 0.000222 0 8:40703367-8:41720930
11119 8 41434706 41482520 AGPAT6 adrenal_gland 8.10e-01 0.000221 0 8:40703367-8:41720930
11105 8 42010464 42029191 AP3M2 brain_putamen_basal_ganglia -1.43e+00 0.000439 0 8:40703367-8:41720930
11133 8 40388110 40755343 ZMAT4 cmc.brain.rnaseq 2.32e-01 0.000165 0 8:40703367-8:41720930
11115 8 41510743 41754280 ANK1 cmc.brain.rnaseq_splicing 9.62e-01 0.000251 0 8:40703367-8:41720930
11127 8 41119481 41167016 SFRP1 brain_cerebellum -4.24e-01 0.000176 0 8:40703367-8:41720930
11111 8 40377084 40377677 RP11-301G7.1 thyroid 1.15e+00 0.000305 0 8:40703367-8:41720930
11112 8 41786997 41909508 KAT6A whole_blood 1.14e+00 0.000298 0 8:40703367-8:41720930
11103 8 41348080 41368499 GOLGA7 cmc.brain.rnaseq -1.79e+00 0.000753 0 8:40703367-8:41720930
11106 8 42010464 42029191 AP3M2 brain_cerebellar_hemisphere 1.39e+00 0.000414 0 8:40703367-8:41720930
11121 8 41119475 41166990 SFRP1 cmc.brain.rnaseq -7.76e-01 0.000217 0 8:40703367-8:41720930
11699 8 42010464 42029191 AP3M2 psychencode -8.19e-01 0.000221 0 8:40703367-8:41720930
11117 8 41510739 41754280 ANK1 pituitary -8.88e-01 0.000234 0 8:40703367-8:41720930
11108 8 41510739 41754280 ANK1 thyroid 1.27e+00 0.000353 0 8:40703367-8:41720930
13510 8 40377084 40377677 RP11-301G7.1 psychencode -1.35e-01 0.000162 0 8:40703367-8:41720930
11636 8 41510739 41754280 ANK1 psychencode 2.98e+00 0.011800 0 8:40703367-8:41720930
11120 8 42010464 42029191 AP3M2 thyroid -7.79e-01 0.000219 0 8:40703367-8:41720930
11099 8 41348134 41368499 GOLGA7 ntr.blood.rnaarr -2.22e+00 0.001710 0 8:40703367-8:41720930
11135 8 41347915 41368499 GOLGA7 brain_substantia_nigra -8.17e-02 0.000163 0 8:40703367-8:41720930
11129 8 42032235 42065194 PLAT cmc.brain.rnaseq -3.39e-01 0.000171 0 8:40703367-8:41720930
11100 8 42010464 42029191 AP3M2 adrenal_gland 2.13e+00 0.001430 0 8:40703367-8:41720930
11124 8 41119481 41167016 SFRP1 thyroid -4.88e-01 0.000180 0 8:40703367-8:41720930
11128 8 41685683 41687452 RP11-930P14.2 brain_caudate_basal_ganglia 3.89e-01 0.000173 0 8:40703367-8:41720930
12419 8 41434706 41482520 AGPAT6 psychencode 2.23e+00 0.001750 0 8:40703367-8:41720930
11123 8 41347915 41368499 GOLGA7 brain_amygdala -6.31e-01 0.000198 0 8:40703367-8:41720930
11116 8 42195972 42229326 POLB ntr.blood.rnaarr -8.74e-01 0.000235 0 8:40703367-8:41720930
12510 8 40388109 40755352 ZMAT4 psychencode -1.12e+00 0.000297 0 8:40703367-8:41720930
11109 8 42199285 42200152 RPL5P23 pituitary -1.25e+00 0.000347 0 8:40703367-8:41720930
11104 8 41510743 41754280 ANK1 cmc.brain.rnaseq_splicing -1.74e+00 0.000688 0 8:40703367-8:41720930
11131 8 41119481 41167016 SFRP1 brain_cortex -1.46e-01 0.000169 0 8:40703367-8:41720930
11870 8 41119481 41167016 SFRP1 psychencode -5.05e-01 0.000187 0 8:40703367-8:41720930
11125 8 42010464 42029191 AP3M2 brain_cerebellum 4.25e-01 0.000179 0 8:40703367-8:41720930
11153 8 52730140 52811735 PCMTD1 brain_cortex -3.93e+00 0.000379 0 8:50082470-8:53302930
13300 8 51293575 51294835 RP11-759A9.1 psychencode -3.01e-01 0.000204 0 8:50082470-8:53302930
11146 8 52730139 52811735 PCMTD1 cmc.brain.rnaseq -3.64e+00 0.000464 0 8:50082470-8:53302930
11136 8 52232136 52722005 PXDNL cmc.brain.rnaseq 5.93e+00 0.998000 1 8:50082470-8:53302930
11157 8 52730140 52811735 PCMTD1 brain_nucleus_accumbens_basal_ganglia -2.56e-01 0.000220 0 8:50082470-8:53302930
12572 8 52730140 52811735 PCMTD1 psychencode -3.01e+00 0.000342 0 8:50082470-8:53302930
11154 8 52730139 52811735 PCMTD1 cmc.brain.rnaseq_splicing -2.73e+00 0.000343 0 8:50082470-8:53302930
11150 8 52232138 52722005 PXDNL thyroid 1.14e+00 0.000427 0 8:50082470-8:53302930
11152 8 52730140 52811735 PCMTD1 whole_blood -3.43e+00 0.000412 0 8:50082470-8:53302930
11142 8 52811885 52859733 RP11-110G21.1 thyroid -3.42e+00 0.000630 0 8:50082470-8:53302930
11140 8 49623348 49647870 EFCAB1 brain_caudate_basal_ganglia 1.81e+00 0.000726 0 8:50082470-8:53302930
11160 8 52811885 52859733 RP11-110G21.1 brain_cortex 7.46e-01 0.000210 0 8:50082470-8:53302930
11151 8 52722670 52723241 RP11-11C20.3 brain_cerebellum -2.36e+00 0.000427 0 8:50082470-8:53302930
11137 8 52730140 52811735 PCMTD1 brain_cerebellum -4.56e+00 0.002190 0 8:50082470-8:53302930
11161 8 53446597 53478067 FAM150A thyroid 9.58e-02 0.000208 0 8:50082470-8:53302930
11138 8 52730140 52811735 PCMTD1 brain_cerebellar_hemisphere -4.21e+00 0.001300 0 8:50082470-8:53302930
11141 8 49623348 49647870 EFCAB1 brain_cortex -1.54e+00 0.000637 0 8:50082470-8:53302930
11148 8 52730140 52811735 PCMTD1 thyroid -2.84e+00 0.000452 0 8:50082470-8:53302930
11143 8 49623348 49647870 EFCAB1 brain_anterior_cingulate_cortex_ba24 -1.97e+00 0.000605 0 8:50082470-8:53302930
13490 8 52722670 52723241 RP11-11C20.3 psychencode 3.91e+00 0.000445 0 8:50082470-8:53302930
11139 8 52730140 52811735 PCMTD1 yfs.blood.rnaarr -3.78e+00 0.000727 0 8:50082470-8:53302930
11145 8 49623348 49647870 EFCAB1 brain_frontal_cortex_ba9 -1.86e+00 0.000541 0 8:50082470-8:53302930
11147 8 49623348 49647870 EFCAB1 brain_nucleus_accumbens_basal_ganglia 1.47e+00 0.000463 0 8:50082470-8:53302930
11155 8 49623348 49647870 EFCAB1 brain_substantia_nigra -1.28e+00 0.000302 0 8:50082470-8:53302930
11639 8 49623348 49647870 EFCAB1 psychencode -2.79e-01 0.000205 0 8:50082470-8:53302930
11618 8 49830249 49834299 SNAI2 psychencode -9.84e-02 0.000208 0 8:50082470-8:53302930
11149 8 49966870 49988649 C8orf22 pituitary 1.34e+00 0.000437 0 8:50082470-8:53302930
13477 8 50819423 50820006 RP11-401N18.1 psychencode -4.69e-01 0.000210 0 8:50082470-8:53302930
11144 8 50822348 51705427 SNTG1 cmc.brain.rnaseq 2.04e+00 0.000548 0 8:50082470-8:53302930
11159 8 50822348 51705427 SNTG1 cmc.brain.rnaseq_splicing -1.07e+00 0.000214 0 8:50082470-8:53302930
11162 8 50822348 51705427 SNTG1 cmc.brain.rnaseq_splicing 3.54e-01 0.000205 0 8:50082470-8:53302930
11156 8 50822349 51706678 SNTG1 brain_cerebellum 1.19e+00 0.000239 0 8:50082470-8:53302930
11158 8 50822349 51706678 SNTG1 brain_cerebellar_hemisphere 1.17e+00 0.000217 0 8:50082470-8:53302930
11199 8 60031768 60033905 RP11-25K19.1 brain_cortex -7.63e-01 0.000302 0 8:59728421-8:62328644
11174 8 61099906 61193971 CA8 whole_blood 3.29e+00 0.002250 0 8:59728421-8:62328644
11171 8 61297147 61429354 RP11-163N6.2 brain_anterior_cingulate_cortex_ba24 -3.94e+00 0.002880 0 8:59728421-8:62328644
11180 8 61429416 61536186 RAB2A thyroid 3.46e+00 0.001130 0 8:59728421-8:62328644
11196 8 61429416 61536186 RAB2A brain_cerebellar_hemisphere 2.60e+00 0.000307 0 8:59728421-8:62328644
11178 8 62413114 62627199 ASPH ntr.blood.rnaarr 2.24e+00 0.001370 0 8:59728421-8:62328644
11871 8 61429416 61536186 RAB2A psychencode 3.53e+00 0.001280 0 8:59728421-8:62328644
12608 8 61591337 61779465 CHD7 psychencode 4.01e+00 0.004540 0 8:59728421-8:62328644
11183 8 62414205 62627155 ASPH adrenal_gland 1.67e+00 0.000923 0 8:59728421-8:62328644
12660 8 61969717 62414204 CLVS1 psychencode -2.47e+00 0.001290 0 8:59728421-8:62328644
11172 8 59402737 59412795 CYP7A1 thyroid -2.17e+00 0.002760 0 8:59728421-8:62328644
11167 8 61591336 61779749 CHD7 ntr.blood.rnaarr -3.66e+00 0.007260 0 8:59728421-8:62328644
11166 8 59496063 59572403 NSMAF brain_cerebellum -2.99e+00 0.008430 0 8:59728421-8:62328644
11170 8 59496063 59572404 NSMAF cmc.brain.rnaseq_splicing -2.58e+00 0.003960 0 8:59728421-8:62328644
11173 8 59496063 59572403 NSMAF whole_blood 2.53e+00 0.002670 0 8:59728421-8:62328644
11195 8 61099906 61193971 CA8 pituitary -1.87e-02 0.000314 0 8:59728421-8:62328644
11192 8 59496063 59572403 NSMAF brain_cerebellar_hemisphere -1.07e+00 0.000420 0 8:59728421-8:62328644
13284 8 61297147 61429354 RP11-163N6.2 psychencode -3.44e+00 0.000723 0 8:59728421-8:62328644
11193 8 59496063 59572404 NSMAF cmc.brain.rnaseq_splicing -8.56e-01 0.000331 0 8:59728421-8:62328644
11194 8 59496063 59572403 NSMAF yfs.blood.rnaarr 9.24e-01 0.000320 0 8:59728421-8:62328644
11202 8 62414205 62627155 ASPH whole_blood -2.72e-01 0.000261 0 8:59728421-8:62328644
12565 8 60031599 60033905 RP11-25K19.1 psychencode -1.45e+00 0.000599 0 8:59728421-8:62328644
11206 8 59323823 59364060 UBXN2B brain_frontal_cortex_ba9 -2.38e-01 0.000228 0 8:59728421-8:62328644
11169 8 61297147 61429354 RP11-163N6.2 pituitary -4.18e+00 0.005650 0 8:59728421-8:62328644
12673 8 61099906 61193971 CA8 psychencode -1.48e+00 0.000412 0 8:59728421-8:62328644
11182 8 61099906 61193971 CA8 yfs.blood.rnaarr -1.48e+00 0.001020 0 8:59728421-8:62328644
11176 8 61969717 62413115 CLVS1 brain_cerebellar_hemisphere 1.85e+00 0.001560 0 8:59728421-8:62328644
11208 8 59717977 60031767 TOX yfs.blood.rnaarr 2.74e-01 0.000225 0 8:59728421-8:62328644
13015 8 59323823 59364060 UBXN2B psychencode -6.24e-01 0.000252 0 8:59728421-8:62328644
11640 8 59496063 59572403 NSMAF psychencode 3.91e-01 0.000253 0 8:59728421-8:62328644
11184 8 59500979 59501323 AC068522.4 adrenal_gland 1.48e+00 0.000918 0 8:59728421-8:62328644
11185 8 59323822 59364060 UBXN2B cmc.brain.rnaseq_splicing -1.49e+00 0.000882 0 8:59728421-8:62328644
11209 8 60031768 60033905 RP11-25K19.1 thyroid -1.45e-02 0.000224 0 8:59728421-8:62328644
11175 8 62413114 62627199 ASPH cmc.brain.rnaseq_splicing 2.10e+00 0.001940 0 8:59728421-8:62328644
11189 8 62114909 62115779 NPM1P6 brain_cerebellar_hemisphere -1.23e+00 0.000551 0 8:59728421-8:62328644
11198 8 61591337 61779465 CHD7 thyroid 2.35e-01 0.000304 0 8:59728421-8:62328644
11205 8 62413114 62627199 ASPH cmc.brain.rnaseq_splicing 3.45e-01 0.000230 0 8:59728421-8:62328644
13216 8 59500979 59501323 AC068522.4 psychencode -2.02e+00 0.001910 0 8:59728421-8:62328644
11181 8 61969717 62413115 CLVS1 brain_cerebellum 1.75e+00 0.001130 0 8:59728421-8:62328644
11186 8 61101422 61193954 CA8 cmc.brain.rnaseq_splicing 1.38e+00 0.000827 0 8:59728421-8:62328644
11179 8 61429468 61536203 RAB2A cmc.brain.rnaseq 2.83e+00 0.001240 0 8:59728421-8:62328644
11190 8 61101422 61193954 CA8 cmc.brain.rnaseq_splicing -1.39e-01 0.000500 0 8:59728421-8:62328644
11187 8 59323822 59364060 UBXN2B cmc.brain.rnaseq 1.64e+00 0.000731 0 8:59728421-8:62328644
11200 8 59323823 59364060 UBXN2B yfs.blood.rnaarr -2.56e-01 0.000285 0 8:59728421-8:62328644
12914 8 62413116 62627155 ASPH psychencode 5.30e-01 0.000306 0 8:59728421-8:62328644
11207 8 61101422 61193954 CA8 cmc.brain.rnaseq -8.25e-01 0.000227 0 8:59728421-8:62328644
11163 8 61297147 61429354 RP11-163N6.2 thyroid -5.32e+00 0.923000 1 8:59728421-8:62328644
11165 8 61429416 61536186 RAB2A adrenal_gland 1.15e+00 0.009840 0 8:59728421-8:62328644
11197 8 59717977 60031598 TOX whole_blood -4.96e-01 0.000305 0 8:59728421-8:62328644
11204 8 59323823 59364060 UBXN2B brain_amygdala 3.15e-02 0.000233 0 8:59728421-8:62328644
11164 8 61297147 61429354 RP11-163N6.2 brain_caudate_basal_ganglia -4.72e+00 0.054900 0 8:59728421-8:62328644
11203 8 59717977 60031598 TOX thyroid -6.21e-01 0.000251 0 8:59728421-8:62328644
11201 8 61544068 61548830 RP11-91I20.3 brain_cerebellum -2.08e+00 0.000264 0 8:59728421-8:62328644
11191 8 61429416 61536186 RAB2A whole_blood 2.25e+00 0.000467 0 8:59728421-8:62328644
11188 8 61591337 61779465 CHD7 yfs.blood.rnaarr -1.92e+00 0.000660 0 8:59728421-8:62328644
12923 8 59717977 60031767 TOX psychencode -1.51e+00 0.000664 0 8:59728421-8:62328644
11168 8 61297147 61429354 RP11-163N6.2 brain_frontal_cortex_ba9 -4.21e+00 0.005770 0 8:59728421-8:62328644
11177 8 61429416 61536186 RAB2A yfs.blood.rnaarr 2.51e+00 0.001450 0 8:59728421-8:62328644
11259 8 90945563 90996899 NBN cmc.brain.rnaseq_splicing -6.07e-02 0.000260 0 8:90638162-8:93554257
11261 8 90621638 90769955 RP11-37B2.1 pituitary 2.80e-01 0.000240 0 8:90638162-8:93554257
11252 8 90621638 90769955 RP11-37B2.1 brain_cerebellar_hemisphere 6.39e-01 0.000302 0 8:90638162-8:93554257
11254 8 92221722 92410378 SLC26A7 adrenal_gland -4.28e-01 0.000298 0 8:90638162-8:93554257
11230 8 90769975 90803291 RIPK2 brain_frontal_cortex_ba9 1.34e+00 0.000747 0 8:90638162-8:93554257
11236 8 90769975 90803291 RIPK2 brain_cerebellum 1.28e+00 0.000571 0 8:90638162-8:93554257
11265 8 90621638 90769955 RP11-37B2.1 whole_blood 7.77e-02 0.000229 0 8:90638162-8:93554257
11243 8 90769975 90803291 RIPK2 yfs.blood.rnaarr -1.20e+00 0.000440 0 8:90638162-8:93554257
11250 8 90769975 90803291 RIPK2 thyroid -1.22e+00 0.000313 0 8:90638162-8:93554257
11256 8 90914087 90940116 OSGIN2 whole_blood 3.97e-01 0.000275 0 8:90638162-8:93554257
11219 8 92114846 92231464 LRRC69 cmc.brain.rnaseq 2.40e+00 0.002480 0 8:90638162-8:93554257
12335 8 92221722 92410378 SLC26A7 psychencode 1.90e+00 0.000549 0 8:90638162-8:93554257
12967 8 93895758 94029901 TRIQK psychencode -1.68e-01 0.000230 0 8:90638162-8:93554257
13245 8 90424850 90427300 KRT8P4 psychencode 4.36e-01 0.000257 0 8:90638162-8:93554257
11227 8 92967194 93115454 RUNX1T1 cmc.brain.rnaseq -1.53e+00 0.000870 0 8:90638162-8:93554257
11866 8 90769975 90803291 RIPK2 psychencode 1.47e+00 0.000615 0 8:90638162-8:93554257
11220 8 90914087 90940116 OSGIN2 brain_anterior_cingulate_cortex_ba24 -2.28e+00 0.002350 0 8:90638162-8:93554257
11263 8 92114060 92231464 LRRC69 brain_hippocampus 3.06e-01 0.000236 0 8:90638162-8:93554257
11255 8 91013633 91064320 DECR1 whole_blood 1.02e+00 0.000297 0 8:90638162-8:93554257
11211 8 92967203 93115514 RUNX1T1 brain_putamen_basal_ganglia -3.44e+00 0.081500 1 8:90638162-8:93554257
11262 8 90621638 90769955 RP11-37B2.1 adrenal_gland 2.91e-01 0.000239 0 8:90638162-8:93554257
11222 8 90914087 90940116 OSGIN2 brain_caudate_basal_ganglia -2.41e+00 0.001510 0 8:90638162-8:93554257
11224 8 90914087 90940116 OSGIN2 brain_hippocampus -2.04e-01 0.001370 0 8:90638162-8:93554257
11247 8 90621638 90769955 RP11-37B2.1 brain_cerebellum 9.06e-01 0.000346 0 8:90638162-8:93554257
11232 8 92072137 92082417 GS1-251I9.4 thyroid -1.70e+00 0.000654 0 8:90638162-8:93554257
11264 8 90621638 90769955 RP11-37B2.1 thyroid 1.30e-01 0.000230 0 8:90638162-8:93554257
11725 8 92967203 93115514 RUNX1T1 psychencode -2.84e+00 0.014000 0 8:90638162-8:93554257
11238 8 93895758 94029901 TRIQK whole_blood 1.40e+00 0.000498 0 8:90638162-8:93554257
11229 8 90914087 90940116 OSGIN2 brain_cortex -1.89e+00 0.000779 0 8:90638162-8:93554257
11235 8 92072137 92082417 GS1-251I9.4 brain_hippocampus 1.39e+00 0.000575 0 8:90638162-8:93554257
11234 8 90914087 90940116 OSGIN2 brain_putamen_basal_ganglia -1.77e+00 0.000589 0 8:90638162-8:93554257
11221 8 92114060 92231464 LRRC69 thyroid 9.81e-01 0.002260 0 8:90638162-8:93554257
11213 8 91634227 91803859 TMEM64 ntr.blood.rnaarr 3.56e+00 0.028700 1 8:90638162-8:93554257
11237 8 90914087 90940116 OSGIN2 brain_amygdala -1.22e+00 0.000545 0 8:90638162-8:93554257
11253 8 90914087 90940116 OSGIN2 yfs.blood.rnaarr 5.36e-01 0.000300 0 8:90638162-8:93554257
11223 8 92114060 92231464 LRRC69 brain_frontal_cortex_ba9 5.14e-01 0.001490 0 8:90638162-8:93554257
11214 8 91634223 91803777 TMEM64 adrenal_gland 3.31e+00 0.014300 0 8:90638162-8:93554257
11231 8 92072137 92082417 GS1-251I9.4 brain_amygdala 1.22e+00 0.000677 0 8:90638162-8:93554257
11210 8 91634223 91803777 TMEM64 whole_blood 4.35e+00 0.545000 1 8:90638162-8:93554257
11240 8 90945755 90996944 NBN ntr.blood.rnaarr -9.41e-01 0.000490 0 8:90638162-8:93554257
11248 8 90945564 91015456 NBN thyroid 8.32e-01 0.000342 0 8:90638162-8:93554257
11225 8 91013579 91064227 DECR1 cmc.brain.rnaseq 2.12e-01 0.001080 0 8:90638162-8:93554257
11249 8 92114060 92231464 LRRC69 yfs.blood.rnaarr 8.58e-01 0.000332 0 8:90638162-8:93554257
11246 8 90914095 90940095 OSGIN2 cmc.brain.rnaseq -9.24e-01 0.000361 0 8:90638162-8:93554257
11258 8 91013579 91064227 DECR1 cmc.brain.rnaseq_splicing 8.46e-02 0.000265 0 8:90638162-8:93554257
11212 8 91803861 91971636 NECAB1 thyroid 3.79e+00 0.068100 1 8:90638162-8:93554257
13014 8 92114060 92231464 LRRC69 psychencode 2.44e+00 0.002800 0 8:90638162-8:93554257
11216 8 91803920 91971630 NECAB1 cmc.brain.rnaseq_splicing 1.45e+00 0.005120 0 8:90638162-8:93554257
13312 8 91818702 91871468 RP11-662G23.1 psychencode -1.24e+00 0.002780 0 8:90638162-8:93554257
13297 8 92072137 92082417 GS1-251I9.4 psychencode 2.97e+00 0.008910 0 8:90638162-8:93554257
11215 8 91634223 91803777 TMEM64 thyroid 3.08e+00 0.007330 0 8:90638162-8:93554257
11239 8 92072137 92082417 GS1-251I9.4 whole_blood -1.63e+00 0.000496 0 8:90638162-8:93554257
13281 8 90621638 90769955 RP11-37B2.1 psychencode 5.15e-01 0.000257 0 8:90638162-8:93554257
11868 8 91013633 91064320 DECR1 psychencode -5.54e-01 0.000409 0 8:90638162-8:93554257
11218 8 91013633 91064320 DECR1 thyroid -2.80e+00 0.003290 0 8:90638162-8:93554257
11867 8 90945564 91015456 NBN psychencode 1.78e+00 0.000889 0 8:90638162-8:93554257
11226 8 92082424 92099323 OTUD6B thyroid -1.79e+00 0.000997 0 8:90638162-8:93554257
11233 8 91970705 91997485 LOC100127983 cmc.brain.rnaseq 1.91e+00 0.000600 0 8:90638162-8:93554257
12700 8 91634223 91803860 TMEM64 psychencode 3.39e+00 0.024600 0 8:90638162-8:93554257
11245 8 90945564 91015456 NBN whole_blood -9.33e-01 0.000416 0 8:90638162-8:93554257
11251 8 91013633 91064320 DECR1 yfs.blood.rnaarr 1.12e+00 0.000307 0 8:90638162-8:93554257
13291 8 91970865 91997485 C8orf88 psychencode 2.04e+00 0.000820 0 8:90638162-8:93554257
11244 8 91070836 91107703 CALB1 pituitary 1.66e+00 0.000438 0 8:90638162-8:93554257
11260 8 90945563 90996899 NBN cmc.brain.rnaseq_splicing -1.69e-01 0.000250 0 8:90638162-8:93554257
11241 8 90945564 91015456 NBN pituitary 9.30e-01 0.000473 0 8:90638162-8:93554257
11257 8 92072137 92082417 GS1-251I9.4 adrenal_gland 9.12e-01 0.000275 0 8:90638162-8:93554257
13308 8 91546839 91632298 AB015752.3 psychencode 2.35e+00 0.001160 0 8:90638162-8:93554257
11228 8 90945563 90996899 NBN cmc.brain.rnaseq_splicing 1.51e+00 0.000794 0 8:90638162-8:93554257
11217 8 91972970 91997485 RP11-122A3.2 thyroid 2.77e+00 0.004990 0 8:90638162-8:93554257
11242 8 90945564 91015456 NBN yfs.blood.rnaarr -1.07e+00 0.000445 0 8:90638162-8:93554257
11266 9 3674546 3691814 RP11-509J21.3 whole_blood 2.29e+00 0.002020 0 9:1917009-9:3190064
11272 9 2015341 2193623 SMARCA2 cmc.brain.rnaseq_splicing 1.48e+00 0.000461 0 9:1917009-9:3190064
11277 9 2015341 2193623 SMARCA2 cmc.brain.rnaseq_splicing -1.03e+00 0.000266 0 9:1917009-9:3190064
11286 9 3224646 3525983 RFX3 cmc.brain.rnaseq_splicing -2.84e-01 0.000166 0 9:1917009-9:3190064
11280 9 3526723 3671646 RP11-509J21.1 thyroid 7.94e-01 0.000216 0 9:1917009-9:3190064
11284 9 2422701 2622373 FLJ35024 cmc.brain.rnaseq -4.97e-01 0.000179 0 9:1917009-9:3190064
11279 9 2422702 2639858 RP11-125B21.2 brain_nucleus_accumbens_basal_ganglia 9.36e-01 0.000243 0 9:1917009-9:3190064
11282 9 2422702 2639858 RP11-125B21.2 pituitary 7.00e-01 0.000201 0 9:1917009-9:3190064
11283 9 2422702 2639858 RP11-125B21.2 brain_cerebellum -6.57e-01 0.000196 0 9:1917009-9:3190064
11287 9 2422702 2639858 RP11-125B21.2 brain_cerebellar_hemisphere 2.43e-01 0.000163 0 9:1917009-9:3190064
11288 9 2422702 2639858 RP11-125B21.2 thyroid 2.32e-01 0.000163 0 9:1917009-9:3190064
11281 9 3526723 3671646 RP11-509J21.1 brain_putamen_basal_ganglia 7.72e-01 0.000212 0 9:1917009-9:3190064
11289 9 2422702 2639858 RP11-125B21.2 adrenal_gland 8.89e-02 0.000159 0 9:1917009-9:3190064
13091 9 2907073 3053408 CARM1P1 psychencode 2.26e+00 0.001900 0 9:1917009-9:3190064
11290 9 2422702 2639858 RP11-125B21.2 brain_caudate_basal_ganglia 7.50e-02 0.000159 0 9:1917009-9:3190064
11271 9 2621792 2654485 VLDLR cmc.brain.rnaseq_splicing -1.50e+00 0.000474 0 9:1917009-9:3190064
11275 9 2621834 2660053 VLDLR whole_blood -1.27e+00 0.000348 0 9:1917009-9:3190064
11276 9 2422702 2639858 RP11-125B21.2 brain_putamen_basal_ganglia 1.06e+00 0.000274 0 9:1917009-9:3190064
11278 9 2621834 2660053 VLDLR adrenal_gland 9.64e-01 0.000250 0 9:1917009-9:3190064
11285 9 2621834 2660053 VLDLR thyroid 3.76e-01 0.000170 0 9:1917009-9:3190064
11291 9 2621834 2654480 VLDLR yfs.blood.rnaarr 2.70e-02 0.000159 0 9:1917009-9:3190064
12336 9 2621834 2660053 VLDLR psychencode 8.63e-01 0.000227 0 9:1917009-9:3190064
11268 9 2717525 2730037 KCNV2 cmc.brain.rnaseq 2.15e+00 0.001490 0 9:1917009-9:3190064
11270 9 2720469 2844241 KIAA0020 yfs.blood.rnaarr -1.54e+00 0.000501 0 9:1917009-9:3190064
11273 9 2804154 2844130 KIAA0020 cmc.brain.rnaseq_splicing -1.45e+00 0.000436 0 9:1917009-9:3190064
13141 9 3526723 3671646 RP11-509J21.1 psychencode -2.14e+00 0.001460 0 9:1917009-9:3190064
11267 9 2907073 3053408 CARM1P1 brain_cerebellum 2.17e+00 0.001560 0 9:1917009-9:3190064
11274 9 2907073 3053408 CARM1P1 pituitary 1.39e+00 0.000413 0 9:1917009-9:3190064
11269 9 3224646 3525983 RFX3 cmc.brain.rnaseq_splicing 1.97e+00 0.001060 0 9:1917009-9:3190064
11294 9 8858130 8862255 RP11-75C9.1 brain_cerebellar_hemisphere -6.99e-01 0.000199 0 9:9166711-9:10879253
13063 9 8858130 8862255 RP11-75C9.1 psychencode -1.41e+00 0.000412 0 9:9166711-9:10879253
11292 9 8314245 10612723 PTPRD cmc.brain.rnaseq_splicing 1.49e+00 0.000459 0 9:9166711-9:10879253
11293 9 8858130 8862255 RP11-75C9.1 brain_putamen_basal_ganglia -8.62e-01 0.000225 0 9:9166711-9:10879253
11298 9 12775020 12822130 LURAP1L brain_substantia_nigra 1.09e+00 0.000279 0 9:10879253-9:12276140
11891 9 12685439 12710290 TYRP1 psychencode -5.43e-01 0.000181 0 9:10879253-9:12276140
11296 9 12775020 12822130 LURAP1L adrenal_gland -1.09e+00 0.000279 0 9:10879253-9:12276140
11295 9 12685439 12710290 TYRP1 brain_caudate_basal_ganglia 1.16e+00 0.000301 0 9:10879253-9:12276140
11299 9 12775020 12822130 LURAP1L brain_amygdala 1.09e+00 0.000279 0 9:10879253-9:12276140
11301 9 12693385 12710266 TYRP1 cmc.brain.rnaseq -3.38e-01 0.000166 0 9:10879253-9:12276140
11300 9 12685439 12710290 TYRP1 brain_frontal_cortex_ba9 5.82e-01 0.000185 0 9:10879253-9:12276140
11297 9 12775020 12822130 LURAP1L brain_frontal_cortex_ba9 1.09e+00 0.000279 0 9:10879253-9:12276140
12338 9 37510889 37588871 FBXO10 psychencode -5.03e-01 0.000335 0 9:36743759-9:38641599
11390 9 37753804 37778969 TRMT10B brain_cerebellum 1.24e-01 0.000173 0 9:36743759-9:38641599
11358 9 37885680 37886387 RP11-3J10.4 thyroid 5.07e-01 0.000189 0 9:36743759-9:38641599
11354 9 37485932 37503694 POLR1E whole_blood 4.34e-01 0.000191 0 9:36743759-9:38641599
11365 9 37915894 38069210 SHB cmc.brain.rnaseq -4.34e-01 0.000185 0 9:36743759-9:38641599
11321 9 37800499 37867663 DCAF10 brain_anterior_cingulate_cortex_ba24 -1.19e+00 0.000330 0 9:36743759-9:38641599
11397 9 37766975 37801434 EXOSC3 adrenal_gland -1.04e-01 0.000171 0 9:36743759-9:38641599
11394 9 37779710 37785089 EXOSC3 cmc.brain.rnaseq_splicing -2.26e-01 0.000172 0 9:36743759-9:38641599
12082 9 37800499 37867663 DCAF10 psychencode -6.88e-01 0.000212 0 9:36743759-9:38641599
11373 9 37879491 37904350 SLC25A51 brain_nucleus_accumbens_basal_ganglia 1.42e-01 0.000180 0 9:36743759-9:38641599
11342 9 37879491 37904350 SLC25A51 pituitary 5.44e-01 0.000204 0 9:36743759-9:38641599
11345 9 37879491 37904350 SLC25A51 brain_hypothalamus -9.92e-02 0.000201 0 9:36743759-9:38641599
11340 9 37919131 38069210 SHB brain_caudate_basal_ganglia -6.69e-01 0.000208 0 9:36743759-9:38641599
11389 9 37919131 38069210 SHB thyroid -2.03e-01 0.000174 0 9:36743759-9:38641599
12514 9 37753804 37778969 TRMT10B psychencode 3.96e-01 0.000190 0 9:36743759-9:38641599
11350 9 37800499 37867663 DCAF10 yfs.blood.rnaarr 5.13e-01 0.000194 0 9:36743759-9:38641599
11396 9 37919131 38069210 SHB whole_blood 3.80e-02 0.000172 0 9:36743759-9:38641599
11319 9 37485944 37503693 POLR1E cmc.brain.rnaseq_splicing 1.36e+00 0.000395 0 9:36743759-9:38641599
11310 9 37582643 37592639 TOMM5 yfs.blood.rnaarr -2.11e+00 0.001400 0 9:36743759-9:38641599
11312 9 37588275 37592639 TOMM5 ntr.blood.rnaarr 1.97e+00 0.001030 0 9:36743759-9:38641599
11368 9 37879491 37904350 SLC25A51 brain_hippocampus 3.31e-01 0.000183 0 9:36743759-9:38641599
11333 9 37510888 37588929 FBXO10 cmc.brain.rnaseq_splicing 1.33e-01 0.000234 0 9:36743759-9:38641599
11364 9 37800499 37867663 DCAF10 adrenal_gland 3.26e-01 0.000185 0 9:36743759-9:38641599
11349 9 37879491 37904350 SLC25A51 brain_putamen_basal_ganglia -2.93e-01 0.000195 0 9:36743759-9:38641599
11366 9 37879491 37904350 SLC25A51 brain_cerebellum 3.71e-01 0.000185 0 9:36743759-9:38641599
11302 9 37510888 37588929 FBXO10 cmc.brain.rnaseq -3.27e+00 0.028500 0 9:36743759-9:38641599
11311 9 37510889 37576346 FBXO10 thyroid -2.03e+00 0.001170 0 9:36743759-9:38641599
11341 9 38540564 38542762 RP11-392E22.12 brain_cerebellar_hemisphere 6.01e-01 0.000205 0 9:36743759-9:38641599
12694 9 38540566 38620657 ANKRD18A psychencode -9.18e-01 0.000258 0 9:36743759-9:38641599
11698 9 37650997 37746901 FRMPD1 psychencode -1.37e+00 0.000399 0 9:36743759-9:38641599
11893 9 37766975 37801434 EXOSC3 psychencode 3.66e-01 0.000179 0 9:36743759-9:38641599
11304 9 38643039 38643765 RP13-198D9.3 brain_nucleus_accumbens_basal_ganglia -2.82e+00 0.008270 0 9:36743759-9:38641599
11386 9 37422663 37436987 GRHPR yfs.blood.rnaarr -2.34e-01 0.000174 0 9:36743759-9:38641599
11309 9 37079892 37090398 LOC100506710 cmc.brain.rnaseq -2.16e+00 0.001530 0 9:36743759-9:38641599
11392 9 37422663 37436987 GRHPR whole_blood -1.78e-01 0.000173 0 9:36743759-9:38641599
11320 9 38620731 38624987 FAM201A brain_substantia_nigra -1.26e+00 0.000370 0 9:36743759-9:38641599
13142 9 37836041 37836391 RP11-3J10.7 psychencode -1.98e-01 0.000176 0 9:36743759-9:38641599
11317 9 36303496 36304921 HMGB3P24 adrenal_gland 1.42e+00 0.000439 0 9:36743759-9:38641599
11395 9 37422663 37436987 GRHPR brain_cerebellar_hemisphere 1.36e-01 0.000172 0 9:36743759-9:38641599
13061 9 38566257 38568208 SNX18P3 psychencode -9.54e-01 0.000263 0 9:36743759-9:38641599
11357 9 37438111 37465396 ZBTB5 brain_amygdala 4.74e-01 0.000189 0 9:36743759-9:38641599
11323 9 37079893 37090398 RP11-220I1.1 adrenal_gland -1.12e+00 0.000302 0 9:36743759-9:38641599
11330 9 38643039 38643765 RP13-198D9.3 brain_caudate_basal_ganglia 9.73e-01 0.000265 0 9:36743759-9:38641599
11325 9 37490418 37490890 RP11-405L18.4 thyroid 1.10e+00 0.000296 0 9:36743759-9:38641599
13146 9 37079893 37090398 RP11-220I1.1 psychencode -8.10e-01 0.000230 0 9:36743759-9:38641599
11892 9 37919131 38069210 SHB psychencode -9.04e-01 0.000249 0 9:36743759-9:38641599
11313 9 37120468 37358145 ZCCHC7 cmc.brain.rnaseq -1.77e+00 0.000753 0 9:36743759-9:38641599
13065 9 37878113 37879490 PAICSP1 psychencode -4.82e-01 0.000196 0 9:36743759-9:38641599
11347 9 38392661 38398658 ALDH1B1 thyroid 5.67e-01 0.000198 0 9:36743759-9:38641599
11352 9 37879491 37904350 SLC25A51 brain_frontal_cortex_ba9 4.78e-01 0.000194 0 9:36743759-9:38641599
12337 9 37120536 37358146 ZCCHC7 psychencode -5.40e-01 0.000197 0 9:36743759-9:38641599
11384 9 38620731 38624987 FAM201A brain_hippocampus 2.57e-01 0.000175 0 9:36743759-9:38641599
11353 9 38571355 38620657 ANKRD18A brain_putamen_basal_ganglia -4.90e-01 0.000192 0 9:36743759-9:38641599
11337 9 38643039 38643765 RP13-198D9.3 brain_hypothalamus 6.35e-01 0.000209 0 9:36743759-9:38641599
12582 9 37438111 37465396 ZBTB5 psychencode -1.93e+00 0.001140 0 9:36743759-9:38641599
11343 9 37422663 37436987 GRHPR brain_anterior_cingulate_cortex_ba24 -6.24e-01 0.000203 0 9:36743759-9:38641599
11344 9 37422663 37436987 GRHPR brain_cortex -6.37e-01 0.000202 0 9:36743759-9:38641599
12996 9 37885680 37886387 RP11-3J10.4 psychencode -5.32e-01 0.000197 0 9:36743759-9:38641599
12243 9 38392661 38398658 ALDH1B1 psychencode -6.30e-01 0.000205 0 9:36743759-9:38641599
11371 9 37422663 37436987 GRHPR pituitary 3.40e-01 0.000181 0 9:36743759-9:38641599
11335 9 37485932 37503694 POLR1E brain_cerebellar_hemisphere -7.68e-01 0.000222 0 9:36743759-9:38641599
11398 9 38643039 38643765 RP13-198D9.3 brain_hippocampus 1.54e-01 0.000171 0 9:36743759-9:38641599
11375 9 37422663 37436987 GRHPR thyroid 3.19e-01 0.000180 0 9:36743759-9:38641599
11322 9 37485932 37503694 POLR1E yfs.blood.rnaarr -1.15e+00 0.000320 0 9:36743759-9:38641599
11393 9 36303496 36304921 HMGB3P24 thyroid -2.25e-01 0.000172 0 9:36743759-9:38641599
12081 9 36190853 36304778 CLTA psychencode 1.33e+00 0.000395 0 9:36743759-9:38641599
11374 9 37879491 37904350 SLC25A51 brain_cerebellar_hemisphere 7.73e-03 0.000180 0 9:36743759-9:38641599
11346 9 36833272 37034103 PAX5 brain_hypothalamus -5.76e-01 0.000200 0 9:36743759-9:38641599
11369 9 38620731 38624987 FAM201A adrenal_gland -4.23e-01 0.000183 0 9:36743759-9:38641599
13531 9 38540566 38577204 ANKRD18A psychencode 7.77e-01 0.000223 0 9:36743759-9:38641599
11376 9 37879491 37904350 SLC25A51 brain_substantia_nigra -1.01e-01 0.000179 0 9:36743759-9:38641599
11328 9 37753804 37778969 TRMT10B brain_caudate_basal_ganglia 9.97e-01 0.000266 0 9:36743759-9:38641599
12241 9 36336393 36487545 RNF38 psychencode 5.35e-01 0.000195 0 9:36743759-9:38641599
11399 9 38571355 38620657 ANKRD18A adrenal_gland 1.52e-01 0.000170 0 9:36743759-9:38641599
11367 9 38571360 38620360 ANKRD18A cmc.brain.rnaseq 4.12e-01 0.000184 0 9:36743759-9:38641599
13523 9 38542386 38543212 RP11-392E22.10 psychencode -2.03e+00 0.001280 0 9:36743759-9:38641599
11318 9 37490418 37490890 RP11-405L18.4 adrenal_gland 1.42e+00 0.000428 0 9:36743759-9:38641599
11355 9 37510889 37576346 FBXO10 whole_blood 3.01e-01 0.000190 0 9:36743759-9:38641599
11336 9 37753804 37778969 TRMT10B thyroid -5.86e-02 0.000210 0 9:36743759-9:38641599
11378 9 37800499 37867663 DCAF10 thyroid 2.06e-01 0.000179 0 9:36743759-9:38641599
11381 9 37422663 37436987 GRHPR brain_cerebellum -2.94e-01 0.000176 0 9:36743759-9:38641599
11385 9 37422663 37436987 GRHPR adrenal_gland -2.57e-01 0.000175 0 9:36743759-9:38641599
11308 9 37766975 37801434 EXOSC3 thyroid -2.20e+00 0.001730 0 9:36743759-9:38641599
11377 9 37879491 37904350 SLC25A51 brain_amygdala -3.83e-02 0.000179 0 9:36743759-9:38641599
11400 9 38620731 38624987 FAM201A thyroid 8.68e-02 0.000169 0 9:36743759-9:38641599
12080 9 37879400 37904350 SLC25A51 psychencode 7.63e-02 0.000176 0 9:36743759-9:38641599
13519 9 38542476 38568419 RP11-392E22.11 psychencode 1.80e+00 0.000820 0 9:36743759-9:38641599
11303 9 37438111 37465396 ZBTB5 adrenal_gland 3.07e+00 0.015200 0 9:36743759-9:38641599
11329 9 38540564 38542762 RP11-392E22.12 brain_hypothalamus 9.77e-01 0.000266 0 9:36743759-9:38641599
11351 9 38620730 38623277 FAM201A cmc.brain.rnaseq -5.35e-01 0.000194 0 9:36743759-9:38641599
11359 9 37879491 37904350 SLC25A51 brain_caudate_basal_ganglia 3.03e-01 0.000187 0 9:36743759-9:38641599
11379 9 37885680 37886387 RP11-3J10.4 brain_anterior_cingulate_cortex_ba24 3.55e-01 0.000178 0 9:36743759-9:38641599
11316 9 38540564 38542762 RP11-392E22.12 brain_hippocampus 1.44e+00 0.000479 0 9:36743759-9:38641599
11305 9 37485944 37503693 POLR1E cmc.brain.rnaseq -2.58e+00 0.003960 0 9:36743759-9:38641599
11388 9 37753804 37778969 TRMT10B whole_blood -1.45e-01 0.000174 0 9:36743759-9:38641599
11362 9 37879491 37904350 SLC25A51 thyroid 1.52e-01 0.000186 0 9:36743759-9:38641599
12242 9 37422663 37436987 GRHPR psychencode -2.81e-01 0.000175 0 9:36743759-9:38641599
11372 9 38571355 38620657 ANKRD18A thyroid 3.78e-01 0.000180 0 9:36743759-9:38641599
11324 9 38571355 38620657 ANKRD18A brain_hypothalamus -1.09e+00 0.000299 0 9:36743759-9:38641599
11363 9 37879491 37904350 SLC25A51 adrenal_gland 3.16e-01 0.000186 0 9:36743759-9:38641599
11307 9 36214438 36277053 GNE cmc.brain.rnaseq 2.25e+00 0.001940 0 9:36743759-9:38641599
11361 9 38543101 38543443 RP11-392E22.5 brain_hippocampus 4.51e-01 0.000186 0 9:36743759-9:38641599
11380 9 37879491 37904350 SLC25A51 brain_cortex 8.65e-02 0.000178 0 9:36743759-9:38641599
11327 9 38540564 38542762 RP11-392E22.12 thyroid 9.65e-01 0.000267 0 9:36743759-9:38641599
11370 9 37879491 37904350 SLC25A51 brain_anterior_cingulate_cortex_ba24 2.95e-01 0.000182 0 9:36743759-9:38641599
11391 9 38543101 38543443 RP11-392E22.5 brain_cerebellar_hemisphere 1.46e-01 0.000173 0 9:36743759-9:38641599
11348 9 37485932 37503694 POLR1E brain_cerebellum -5.55e-01 0.000196 0 9:36743759-9:38641599
11382 9 37800499 37867663 DCAF10 pituitary -1.53e-02 0.000176 0 9:36743759-9:38641599
11306 9 37800499 37867663 DCAF10 brain_substantia_nigra 2.39e+00 0.002520 0 9:36743759-9:38641599
11314 9 37485944 37503693 POLR1E cmc.brain.rnaseq_splicing -1.55e+00 0.000514 0 9:36743759-9:38641599
13279 9 38543101 38543443 RP11-392E22.5 psychencode 6.75e-01 0.000211 0 9:36743759-9:38641599
12240 9 37485932 37503694 POLR1E psychencode -1.43e+00 0.000436 0 9:36743759-9:38641599
11326 9 38571355 38620657 ANKRD18A brain_cerebellar_hemisphere -9.91e-01 0.000281 0 9:36743759-9:38641599
11315 9 37485944 37503693 POLR1E cmc.brain.rnaseq_splicing 1.53e+00 0.000503 0 9:36743759-9:38641599
11360 9 38452779 38454067 RP11-403F21.1 thyroid -4.58e-01 0.000186 0 9:36743759-9:38641599
11383 9 38408991 38424444 IGFBPL1 pituitary 2.80e-01 0.000176 0 9:36743759-9:38641599
11356 9 38543101 38543443 RP11-392E22.5 thyroid 4.86e-01 0.000190 0 9:36743759-9:38641599
11331 9 38566257 38568208 SNX18P3 thyroid -9.24e-01 0.000255 0 9:36743759-9:38641599
11339 9 38504444 38505479 VN1R48P thyroid 6.53e-01 0.000208 0 9:36743759-9:38641599
11338 9 38408991 38424444 IGFBPL1 thyroid 6.52e-01 0.000209 0 9:36743759-9:38641599
12244 9 38408991 38424444 IGFBPL1 psychencode -1.28e+00 0.000372 0 9:36743759-9:38641599
11387 9 38566257 38568208 SNX18P3 brain_cerebellar_hemisphere -1.69e-01 0.000174 0 9:36743759-9:38641599
11332 9 38504444 38505479 VN1R48P brain_caudate_basal_ganglia -8.89e-01 0.000254 0 9:36743759-9:38641599
11334 9 38478468 38479347 RP11-403F21.3 thyroid 7.85e-01 0.000229 0 9:36743759-9:38641599
12512 9 88430881 88464426 RP11-213G2.3 psychencode -5.93e-01 0.000187 0 9:86938196-9:88109333
11420 9 86354336 86444431 GKAP1 thyroid -6.40e-01 0.000193 0 9:86938196-9:88109333
11421 9 86451613 86536342 KIF27 yfs.blood.rnaarr -5.26e-01 0.000180 0 9:86938196-9:88109333
12995 9 88513818 88514631 PHBP7 psychencode 1.11e+00 0.000289 0 9:86938196-9:88109333
11413 9 86595626 86618985 RMI1 brain_amygdala 7.52e-01 0.000208 0 9:86938196-9:88109333
11410 9 86890372 86955672 SLC28A3 whole_blood -1.02e+00 0.000262 0 9:86938196-9:88109333
11422 9 86890372 86955672 SLC28A3 pituitary 3.27e-01 0.000167 0 9:86938196-9:88109333
11417 9 86354336 86444431 GKAP1 brain_cerebellum -6.40e-01 0.000193 0 9:86938196-9:88109333
11407 9 87283465 87638505 NTRK2 cmc.brain.rnaseq_splicing 1.25e+00 0.000339 0 9:86938196-9:88109333
12339 9 87283466 87638505 NTRK2 psychencode 1.14e+00 0.000297 0 9:86938196-9:88109333
13134 9 88549503 88551514 RP11-213G2.5 psychencode -1.56e+00 0.000524 0 9:86938196-9:88109333
11404 9 88161455 88356944 AGTPBP1 brain_caudate_basal_ganglia 1.62e+00 0.000565 0 9:86938196-9:88109333
11402 9 86595626 86618985 RMI1 thyroid 1.84e+00 0.000820 0 9:86938196-9:88109333
11419 9 86354336 86444431 GKAP1 brain_amygdala 6.40e-01 0.000193 0 9:86938196-9:88109333
11411 9 88161455 88356944 AGTPBP1 brain_cerebellum 8.29e-01 0.000220 0 9:86938196-9:88109333
11415 9 86354336 86444431 GKAP1 yfs.blood.rnaarr -6.40e-01 0.000193 0 9:86938196-9:88109333
11412 9 88161455 88356944 AGTPBP1 yfs.blood.rnaarr -7.59e-01 0.000209 0 9:86938196-9:88109333
11423 9 88161455 88356944 AGTPBP1 brain_amygdala -2.22e-01 0.000162 0 9:86938196-9:88109333
11405 9 88368221 88401490 RP11-213G2.1 whole_blood 1.48e+00 0.000456 0 9:86938196-9:88109333
11403 9 86595626 86618985 RMI1 yfs.blood.rnaarr -1.67e+00 0.000616 0 9:86938196-9:88109333
11406 9 88556056 88637217 NAA35 cmc.brain.rnaseq_splicing -1.37e+00 0.000392 0 9:86938196-9:88109333
11416 9 86354336 86444431 GKAP1 brain_substantia_nigra 6.40e-01 0.000193 0 9:86938196-9:88109333
11414 9 86582997 86595569 HNRNPK cmc.brain.rnaseq_splicing -6.55e-01 0.000195 0 9:86938196-9:88109333
12210 9 88556061 88637213 NAA35 psychencode 1.52e+00 0.000489 0 9:86938196-9:88109333
11408 9 86595626 86618985 RMI1 brain_cerebellar_hemisphere 1.23e+00 0.000330 0 9:86938196-9:88109333
11409 9 88400637 88408395 RP11-213G2.2 brain_cerebellar_hemisphere -1.20e+00 0.000320 0 9:86938196-9:88109333
11401 9 86451614 86536380 KIF27 cmc.brain.rnaseq_splicing -1.99e+00 0.001080 0 9:86938196-9:88109333
12511 9 86582998 86595569 HNRNPK psychencode 9.91e-01 0.000254 0 9:86938196-9:88109333
11418 9 86354336 86444431 GKAP1 brain_cerebellar_hemisphere -6.40e-01 0.000193 0 9:86938196-9:88109333
11436 9 117656003 117692697 TNFSF8 whole_blood 9.78e-01 0.000392 0 9:117921960-9:121321537
11435 9 120466452 120479769 TLR4 cmc.brain.rnaseq -1.55e+00 0.000393 0 9:117921960-9:121321537
11424 9 120466459 120479768 TLR4 ntr.blood.rnaarr -4.24e+00 0.412000 1 9:117921960-9:121321537
11425 9 120466610 120479149 TLR4 whole_blood -3.97e+00 0.141000 0 9:117921960-9:121321537
11427 9 120466610 120479149 TLR4 yfs.blood.rnaarr -3.26e+00 0.011700 0 9:117921960-9:121321537
11434 9 120466452 120479769 TLR4 cmc.brain.rnaseq_splicing -1.04e+00 0.000472 0 9:117921960-9:121321537
12239 9 120466610 120479149 TLR4 psychencode -1.74e+00 0.000568 0 9:117921960-9:121321537
11426 9 120545726 120630349 RP11-281A20.2 brain_cerebellum -3.50e+00 0.030300 0 9:117921960-9:121321537
11429 9 120545726 120630349 RP11-281A20.2 whole_blood -3.00e+00 0.006160 0 9:117921960-9:121321537
11437 9 120545726 120630349 RP11-281A20.2 brain_cerebellar_hemisphere -3.33e-01 0.000381 0 9:117921960-9:121321537
13102 9 120545726 120630349 RP11-281A20.2 psychencode -1.55e+00 0.000384 0 9:117921960-9:121321537
11432 9 120602600 120659534 RP11-281A20.1 brain_cerebellum -1.55e+00 0.000643 0 9:117921960-9:121321537
11428 9 119449581 119463579 TRIM32 yfs.blood.rnaarr -2.90e+00 0.008360 0 9:117921960-9:121321537
12021 9 119449581 119463579 TRIM32 psychencode -8.01e-01 0.000291 0 9:117921960-9:121321537
11445 9 120410884 120419305 RP11-500B12.1 pituitary -5.58e-01 0.000236 0 9:117921960-9:121321537
11430 9 120410884 120419305 RP11-500B12.1 brain_frontal_cortex_ba9 2.82e+00 0.003300 0 9:117921960-9:121321537
11446 9 119187504 120177348 ASTN2 brain_cerebellum -5.62e-01 0.000233 0 9:117921960-9:121321537
11442 9 117781853 117880536 TNC cmc.brain.rnaseq 4.64e-01 0.000263 0 9:117921960-9:121321537
11431 9 120410884 120419305 RP11-500B12.1 brain_caudate_basal_ganglia 2.80e+00 0.003240 0 9:117921960-9:121321537
11433 9 120410884 120419305 RP11-500B12.1 brain_cerebellar_hemisphere 1.79e+00 0.000486 0 9:117921960-9:121321537
11447 9 119187503 120177317 ASTN2 cmc.brain.rnaseq_splicing 2.18e-01 0.000218 0 9:117921960-9:121321537
11438 9 120410884 120419305 RP11-500B12.1 brain_cerebellum 8.98e-01 0.000365 0 9:117921960-9:121321537
11444 9 119187504 120177348 ASTN2 brain_cerebellar_hemisphere -6.74e-01 0.000246 0 9:117921960-9:121321537
11647 9 117782806 117880536 TNC psychencode 1.67e+00 0.001210 0 9:117921960-9:121321537
11440 9 120410884 120419305 RP11-500B12.1 brain_nucleus_accumbens_basal_ganglia 9.98e-01 0.000278 0 9:117921960-9:121321537
11443 9 117782806 117880536 TNC whole_blood 6.27e-01 0.000246 0 9:117921960-9:121321537
11441 9 120410884 120419305 RP11-500B12.1 brain_cortex 1.00e+00 0.000269 0 9:117921960-9:121321537
11439 9 118916083 119164601 PAPPA brain_putamen_basal_ganglia -1.12e+00 0.000358 0 9:117921960-9:121321537
11503 9 123714616 123812554 C5 whole_blood 7.13e-01 0.000208 0 9:122260297-9:124871322
11494 9 123664671 123691451 TRAF1 brain_anterior_cingulate_cortex_ba24 8.89e-01 0.000237 0 9:122260297-9:124871322
11506 9 123664671 123691451 TRAF1 whole_blood -6.72e-01 0.000204 0 9:122260297-9:124871322
11510 9 124207269 124262306 GGTA1P whole_blood 6.17e-01 0.000196 0 9:122260297-9:124871322
11521 9 123664671 123691451 TRAF1 yfs.blood.rnaarr 3.48e-01 0.000173 0 9:122260297-9:124871322
11525 9 123837141 123939888 CNTRL adrenal_gland 3.04e-01 0.000171 0 9:122260297-9:124871322
11890 9 123714616 123812554 C5 psychencode 6.71e-01 0.000202 0 9:122260297-9:124871322
11499 9 124030379 124095120 GSN ntr.blood.rnaarr -7.26e-01 0.000219 0 9:122260297-9:124871322
12020 9 123837141 123939888 CNTRL psychencode -1.34e-01 0.000167 0 9:122260297-9:124871322
11497 9 123850573 123939886 CNTRL cmc.brain.rnaseq_splicing 8.28e-01 0.000232 0 9:122260297-9:124871322
11538 9 124329336 124547809 DAB2IP thyroid -3.26e-02 0.000163 0 9:122260297-9:124871322
11526 9 124329398 124547809 DAB2IP cmc.brain.rnaseq_splicing 2.95e-01 0.000170 0 9:122260297-9:124871322
11667 9 123664671 123691451 TRAF1 psychencode 9.00e-01 0.000239 0 9:122260297-9:124871322
11507 9 123714616 123812554 C5 brain_cerebellum -6.37e-01 0.000200 0 9:122260297-9:124871322
11492 9 123970072 124095121 GSN whole_blood -8.50e-01 0.000241 0 9:122260297-9:124871322
11501 9 124577953 124581731 RP11-244O19.1 thyroid -7.38e-01 0.000213 0 9:122260297-9:124871322
11496 9 123664671 123691451 TRAF1 pituitary 8.75e-01 0.000234 0 9:122260297-9:124871322
11530 9 124101265 124132582 STOM cmc.brain.rnaseq 1.65e-01 0.000165 0 9:122260297-9:124871322
11536 9 124577953 124581731 RP11-244O19.1 brain_cortex 4.57e-02 0.000163 0 9:122260297-9:124871322
12340 9 124101355 124132531 STOM psychencode 4.11e-01 0.000177 0 9:122260297-9:124871322
11502 9 123970072 124095121 GSN yfs.blood.rnaarr -6.61e-01 0.000209 0 9:122260297-9:124871322
11517 9 124577953 124581731 RP11-244O19.1 adrenal_gland -3.92e-01 0.000176 0 9:122260297-9:124871322
11534 9 124577953 124581731 RP11-244O19.1 brain_cerebellar_hemisphere 1.32e-01 0.000164 0 9:122260297-9:124871322
11495 9 123837141 123939888 CNTRL whole_blood 8.83e-01 0.000237 0 9:122260297-9:124871322
11520 9 124577953 124581731 RP11-244O19.1 pituitary -3.58e-01 0.000174 0 9:122260297-9:124871322
11515 9 123850573 123939886 CNTRL cmc.brain.rnaseq 3.65e-01 0.000179 0 9:122260297-9:124871322
11527 9 124577953 124581731 RP11-244O19.1 brain_cerebellum -2.54e-01 0.000168 0 9:122260297-9:124871322
12341 9 123970072 124095121 GSN psychencode 3.73e-02 0.000164 0 9:122260297-9:124871322
11478 9 123664671 123691451 TRAF1 brain_hippocampus 1.54e+00 0.000503 0 9:122260297-9:124871322
11480 9 123664671 123691451 TRAF1 brain_substantia_nigra 1.48e+00 0.000462 0 9:122260297-9:124871322
11481 9 123664671 123691451 TRAF1 brain_nucleus_accumbens_basal_ganglia 1.48e+00 0.000459 0 9:122260297-9:124871322
11482 9 123664671 123691451 TRAF1 brain_cerebellar_hemisphere 1.44e+00 0.000436 0 9:122260297-9:124871322
11504 9 123363091 123476748 MEGF9 whole_blood 7.20e-01 0.000208 0 9:122260297-9:124871322
11483 9 123664671 123691451 TRAF1 brain_amygdala 1.39e+00 0.000408 0 9:122260297-9:124871322
11518 9 123363091 123476748 MEGF9 brain_amygdala 3.11e-01 0.000175 0 9:122260297-9:124871322
11537 9 124584207 124855885 TTLL11 brain_cerebellum 1.32e-02 0.000163 0 9:122260297-9:124871322
12646 9 124584207 124855885 TTLL11 psychencode 6.76e-01 0.000203 0 9:122260297-9:124871322
11528 9 123617977 123639606 PHF19 brain_cerebellum 1.65e-01 0.000166 0 9:122260297-9:124871322
12238 9 123151147 123342448 CDK5RAP2 psychencode -3.58e-01 0.000174 0 9:122260297-9:124871322
11468 9 123587106 123616651 PSMD5-AS1 brain_nucleus_accumbens_basal_ganglia -1.72e+00 0.000665 0 9:122260297-9:124871322
11488 9 123664671 123691451 TRAF1 thyroid 1.11e+00 0.000292 0 9:122260297-9:124871322
11514 9 123714616 123812554 C5 yfs.blood.rnaarr 4.97e-01 0.000185 0 9:122260297-9:124871322
13414 9 124577953 124581731 RP11-244O19.1 psychencode 7.16e-02 0.000163 0 9:122260297-9:124871322
11484 9 123664671 123691451 TRAF1 brain_frontal_cortex_ba9 1.39e+00 0.000406 0 9:122260297-9:124871322
11533 9 124101355 124132531 STOM yfs.blood.rnaarr 1.46e-01 0.000165 0 9:122260297-9:124871322
11452 9 123363091 123476748 MEGF9 adrenal_gland 2.09e+00 0.001320 0 9:122260297-9:124871322
11486 9 123664671 123691451 TRAF1 brain_cerebellum 1.23e+00 0.000335 0 9:122260297-9:124871322
11524 9 125132824 125157982 PTGS1 whole_blood 3.38e-01 0.000172 0 9:122260297-9:124871322
11535 9 123151147 123342448 CDK5RAP2 yfs.blood.rnaarr -8.66e-02 0.000164 0 9:122260297-9:124871322
11479 9 123664671 123691451 TRAF1 brain_putamen_basal_ganglia 1.53e+00 0.000493 0 9:122260297-9:124871322
11475 9 123664670 123691451 TRAF1 cmc.brain.rnaseq 1.59e+00 0.000547 0 9:122260297-9:124871322
11513 9 123482951 123484250 AHCYP2 thyroid -5.22e-01 0.000187 0 9:122260297-9:124871322
11463 9 121915736 122131745 BRINP1 brain_anterior_cingulate_cortex_ba24 1.81e+00 0.000806 0 9:122260297-9:124871322
11493 9 124894745 124922098 NDUFA8 yfs.blood.rnaarr 8.89e-01 0.000240 0 9:122260297-9:124871322
11490 9 125086887 125087594 RP11-498E2.7 brain_frontal_cortex_ba9 -9.82e-01 0.000260 0 9:122260297-9:124871322
11782 9 125132824 125157982 PTGS1 psychencode 1.96e-01 0.000166 0 9:122260297-9:124871322
11485 9 123151146 123342448 CDK5RAP2 cmc.brain.rnaseq_splicing -1.34e+00 0.000383 0 9:122260297-9:124871322
12022 9 123514256 123555690 FBXW2 psychencode 1.82e+00 0.000787 0 9:122260297-9:124871322
11512 9 123151146 123342448 CDK5RAP2 cmc.brain.rnaseq -5.68e-01 0.000191 0 9:122260297-9:124871322
11458 9 123587106 123616651 PSMD5-AS1 thyroid -1.94e+00 0.000990 0 9:122260297-9:124871322
11448 9 123577774 123605262 PSMD5 brain_caudate_basal_ganglia -2.46e+00 0.002970 0 9:122260297-9:124871322
11471 9 123714616 123812554 C5 thyroid 1.65e+00 0.000596 0 9:122260297-9:124871322
11449 9 123577774 123605262 PSMD5 thyroid -2.42e+00 0.002720 0 9:122260297-9:124871322
11522 9 125370315 125371079 OR1H1P pituitary -3.41e-01 0.000173 0 9:122260297-9:124871322
11460 9 123577774 123605262 PSMD5 adrenal_gland -1.90e+00 0.000905 0 9:122260297-9:124871322
11498 9 123151147 123342437 CDK5RAP2 brain_cerebellum -8.46e-01 0.000230 0 9:122260297-9:124871322
11491 9 123577774 123605262 PSMD5 whole_blood -9.59e-01 0.000253 0 9:122260297-9:124871322
11523 9 125370315 125371079 OR1H1P brain_frontal_cortex_ba9 -3.32e-01 0.000172 0 9:122260297-9:124871322
11459 9 123151147 123342437 CDK5RAP2 brain_cerebellar_hemisphere -1.90e+00 0.000931 0 9:122260297-9:124871322
11509 9 123577774 123605262 PSMD5 pituitary -5.52e-01 0.000196 0 9:122260297-9:124871322
11781 9 123577774 123605262 PSMD5 psychencode -1.78e+00 0.000731 0 9:122260297-9:124871322
11474 9 123578331 123605299 PSMD5 cmc.brain.rnaseq -1.59e+00 0.000547 0 9:122260297-9:124871322
11516 9 124584207 124855885 TTLL11 thyroid -4.23e-01 0.000178 0 9:122260297-9:124871322
11889 9 123363091 123476748 MEGF9 psychencode 1.74e+00 0.000681 0 9:122260297-9:124871322
11450 9 123587106 123616651 PSMD5-AS1 brain_cortex -2.35e+00 0.002330 0 9:122260297-9:124871322
11451 9 123587106 123616651 PSMD5-AS1 brain_caudate_basal_ganglia -2.10e+00 0.001340 0 9:122260297-9:124871322
11453 9 123587106 123616651 PSMD5-AS1 brain_hypothalamus -2.05e+00 0.001200 0 9:122260297-9:124871322
11472 9 123664671 123691451 TRAF1 brain_caudate_basal_ganglia 1.62e+00 0.000566 0 9:122260297-9:124871322
11454 9 123587106 123616651 PSMD5-AS1 adrenal_gland -1.99e+00 0.001080 0 9:122260297-9:124871322
11489 9 123151147 123342437 CDK5RAP2 brain_cortex -1.08e+00 0.000285 0 9:122260297-9:124871322
11455 9 123587106 123616651 PSMD5-AS1 brain_hippocampus -1.99e+00 0.001080 0 9:122260297-9:124871322
11461 9 123587106 123616651 PSMD5-AS1 whole_blood -1.86e+00 0.000855 0 9:122260297-9:124871322
11456 9 123587106 123616651 PSMD5-AS1 brain_amygdala -1.97e+00 0.001030 0 9:122260297-9:124871322
11466 9 123587106 123616651 PSMD5-AS1 brain_anterior_cingulate_cortex_ba24 -1.74e+00 0.000690 0 9:122260297-9:124871322
11457 9 123587106 123616651 PSMD5-AS1 brain_cerebellum -1.96e+00 0.001030 0 9:122260297-9:124871322
11519 9 124584207 124855885 TTLL11 pituitary -3.62e-01 0.000174 0 9:122260297-9:124871322
11531 9 123714616 123812554 C5 adrenal_gland -1.42e-01 0.000165 0 9:122260297-9:124871322
11500 9 123850573 123939886 CNTRL cmc.brain.rnaseq_splicing -6.78e-01 0.000216 0 9:122260297-9:124871322
11467 9 123363091 123476748 MEGF9 yfs.blood.rnaarr 1.74e+00 0.000682 0 9:122260297-9:124871322
11505 9 123664671 123691451 TRAF1 brain_cortex 7.10e-01 0.000208 0 9:122260297-9:124871322
11511 9 123714613 123812554 C5 cmc.brain.rnaseq 5.69e-01 0.000191 0 9:122260297-9:124871322
11476 9 123664671 123691451 TRAF1 brain_hypothalamus 1.59e+00 0.000545 0 9:122260297-9:124871322
13076 9 123587106 123616651 PSMD5-AS1 psychencode -1.80e+00 0.000764 0 9:122260297-9:124871322
11532 9 124584207 124855885 TTLL11 adrenal_gland -1.40e-01 0.000165 0 9:122260297-9:124871322
11487 9 123940415 123985292 RAB14 thyroid -1.20e+00 0.000325 0 9:122260297-9:124871322
11508 9 123664671 123691451 TRAF1 adrenal_gland -6.29e-01 0.000197 0 9:122260297-9:124871322
11469 9 123587106 123616651 PSMD5-AS1 brain_substantia_nigra -1.70e+00 0.000653 0 9:122260297-9:124871322
11473 9 123587106 123616651 PSMD5-AS1 brain_frontal_cortex_ba9 -1.60e+00 0.000553 0 9:122260297-9:124871322
11477 9 123587106 123616651 PSMD5-AS1 brain_cerebellar_hemisphere -1.53e+00 0.000506 0 9:122260297-9:124871322
12019 9 123940415 123985292 RAB14 psychencode 3.94e-01 0.000176 0 9:122260297-9:124871322
11464 9 123605319 123616651 LOC253039 cmc.brain.rnaseq -1.81e+00 0.000773 0 9:122260297-9:124871322
11470 9 123617977 123639606 PHF19 yfs.blood.rnaarr 1.67e+00 0.000615 0 9:122260297-9:124871322
11465 9 123587106 123616651 PSMD5-AS1 brain_putamen_basal_ganglia -1.78e+00 0.000738 0 9:122260297-9:124871322
12023 9 123617977 123639606 PHF19 psychencode 8.33e-01 0.000226 0 9:122260297-9:124871322
11529 9 123151147 123342437 CDK5RAP2 pituitary 9.99e-02 0.000166 0 9:122260297-9:124871322
11462 9 123587106 123616651 PSMD5-AS1 pituitary -1.86e+00 0.000852 0 9:122260297-9:124871322
11586 9 124577953 124581731 RP11-244O19.1 brain_cerebellum 4.05e-01 0.000244 0 9:124871322-9:126971353
11548 9 125703112 125867145 RABGAP1 adrenal_gland 2.18e+00 0.003290 0 9:124871322-9:126971353
11888 9 126763949 126795580 LHX2 psychencode -3.30e+00 0.021300 1 9:124871322-9:126971353
11588 9 124894745 124922098 NDUFA8 yfs.blood.rnaarr -5.88e-02 0.000239 0 9:124871322-9:126971353
13182 9 125871773 125877756 MIR600HG psychencode -4.62e-01 0.000376 0 9:124871322-9:126971353
11550 9 125703111 125867147 RABGAP1 cmc.brain.rnaseq_splicing 2.01e+00 0.002100 0 9:124871322-9:126971353
11551 9 127019885 127115586 NEK6 thyroid -3.03e+00 0.001670 0 9:124871322-9:126971353
11560 9 127019885 127115586 NEK6 yfs.blood.rnaarr -3.05e+00 0.000624 0 9:124871322-9:126971353
12024 9 127019885 127115586 NEK6 psychencode 1.50e-01 0.000234 0 9:124871322-9:126971353
11587 9 127020193 127115358 NEK6 ntr.blood.rnaarr 7.20e-02 0.000242 0 9:124871322-9:126971353
11579 9 127021529 127023435 RP11-121A14.2 brain_hypothalamus -2.40e+00 0.000305 0 9:124871322-9:126971353
11583 9 127021529 127023435 RP11-121A14.2 thyroid -1.39e+00 0.000263 0 9:124871322-9:126971353
11549 9 125703112 125867145 RABGAP1 brain_anterior_cingulate_cortex_ba24 2.09e+00 0.002340 0 9:124871322-9:126971353
11580 9 127420746 127460910 MIR181A2HG thyroid 1.45e+00 0.000291 0 9:124871322-9:126971353
11542 9 125703112 125867145 RABGAP1 whole_blood 2.88e+00 0.020300 0 9:124871322-9:126971353
11555 9 127115745 127177723 PSMB7 brain_cerebellar_hemisphere -3.30e-01 0.001240 0 9:124871322-9:126971353
11565 9 127115745 127177723 PSMB7 brain_cortex -2.12e+00 0.000537 0 9:124871322-9:126971353
11581 9 125372194 125401964 RP11-64P14.7 pituitary -8.18e-01 0.000273 0 9:124871322-9:126971353
11578 9 127115745 127177723 PSMB7 yfs.blood.rnaarr -2.45e+00 0.000318 0 9:124871322-9:126971353
11582 9 127115745 127177723 PSMB7 brain_cerebellum 4.04e-01 0.000266 0 9:124871322-9:126971353
11561 9 127115748 127177753 PSMB7 ntr.blood.rnaarr -1.72e+00 0.000619 0 9:124871322-9:126971353
11589 9 124577953 124581731 RP11-244O19.1 brain_cortex -1.18e-01 0.000236 0 9:124871322-9:126971353
11554 9 125878043 126030855 STRBP thyroid -1.90e+00 0.001330 0 9:124871322-9:126971353
11568 9 127213423 127239379 GPR144 pituitary -1.57e+00 0.000512 0 9:124871322-9:126971353
11552 9 127420746 127460910 MIR181A2HG pituitary 2.23e+00 0.001480 0 9:124871322-9:126971353
13046 9 127420746 127460910 MIR181A2HG psychencode -1.62e-01 0.000280 0 9:124871322-9:126971353
11556 9 127420746 127460910 MIR181A2HG brain_nucleus_accumbens_basal_ganglia 2.57e+00 0.001100 0 9:124871322-9:126971353
11569 9 127420746 127460910 MIR181A2HG brain_caudate_basal_ganglia 1.95e+00 0.000504 0 9:124871322-9:126971353
12784 9 124922190 124962367 MORN5 psychencode -5.64e-01 0.000248 0 9:124871322-9:126971353
11558 9 126773888 126795442 LHX2 cmc.brain.rnaseq_splicing -2.83e+00 0.000932 0 9:124871322-9:126971353
11571 9 127420746 127460910 MIR181A2HG brain_cerebellar_hemisphere 1.73e+00 0.000447 0 9:124871322-9:126971353
11546 9 125703112 125867145 RABGAP1 brain_cerebellar_hemisphere 2.73e+00 0.005650 0 9:124871322-9:126971353
11541 9 125703111 125867147 RABGAP1 cmc.brain.rnaseq 3.02e+00 0.020600 1 9:124871322-9:126971353
12647 9 124584207 124855885 TTLL11 psychencode 7.03e-02 0.000232 0 9:124871322-9:126971353
11547 9 125703112 125867145 RABGAP1 thyroid 2.61e+00 0.005590 0 9:124871322-9:126971353
11543 9 127019885 127115586 NEK6 pituitary 4.22e+00 0.015800 0 9:124871322-9:126971353
11553 9 124584207 124855885 TTLL11 adrenal_gland -1.89e+00 0.001410 0 9:124871322-9:126971353
11612 9 125703112 125867145 RABGAP1 psychencode 2.81e+00 0.013100 0 9:124871322-9:126971353
13165 9 126605315 126605965 PIGFP2 psychencode -5.18e+00 0.944000 1 9:124871322-9:126971353
11591 9 125370315 125371079 OR1H1P brain_frontal_cortex_ba9 1.17e-02 0.000231 0 9:124871322-9:126971353
13163 9 125372194 125401964 RP11-64P14.7 psychencode 1.91e-02 0.000245 0 9:124871322-9:126971353
11584 9 124999903 125027118 RBM18 yfs.blood.rnaarr 6.02e-01 0.000258 0 9:124871322-9:126971353
11559 9 125132824 125157982 PTGS1 whole_blood 1.65e+00 0.000882 0 9:124871322-9:126971353
11563 9 125871773 125877756 MIR600HG brain_cerebellar_hemisphere 9.63e-01 0.000576 0 9:124871322-9:126971353
11557 9 126118449 126141032 CRB2 thyroid -2.40e+00 0.000978 0 9:124871322-9:126971353
11576 9 124577953 124581731 RP11-244O19.1 brain_cerebellar_hemisphere 8.99e-01 0.000332 0 9:124871322-9:126971353
11562 9 125086887 125087594 RP11-498E2.7 brain_frontal_cortex_ba9 -1.13e+00 0.000586 0 9:124871322-9:126971353
11592 9 124584207 124855885 TTLL11 thyroid -1.72e-02 0.000229 0 9:124871322-9:126971353
11783 9 125132824 125157982 PTGS1 psychencode 1.94e+00 0.002120 0 9:124871322-9:126971353
11575 9 126768556 126771675 RP11-85O21.2 brain_nucleus_accumbens_basal_ganglia -5.76e-01 0.000359 0 9:124871322-9:126971353
11577 9 127420746 127460910 MIR181A2HG adrenal_gland 1.69e+00 0.000329 0 9:124871322-9:126971353
11570 9 125871773 125877756 MIR600HG brain_anterior_cingulate_cortex_ba24 -1.68e-01 0.000465 0 9:124871322-9:126971353
13415 9 124577953 124581731 RP11-244O19.1 psychencode -7.74e-01 0.000317 0 9:124871322-9:126971353
11566 9 124584207 124855885 TTLL11 pituitary -1.09e+00 0.000530 0 9:124871322-9:126971353
11540 9 125703287 125867145 RABGAP1 ntr.blood.rnaarr -3.19e+00 0.025400 1 9:124871322-9:126971353
11544 9 125883907 126030855 STRBP cmc.brain.rnaseq_splicing -2.67e+00 0.014200 0 9:124871322-9:126971353
13103 9 125370315 125371079 OR1H1P psychencode 1.68e-01 0.000255 0 9:124871322-9:126971353
11573 9 125370315 125371079 OR1H1P pituitary -1.05e+00 0.000400 0 9:124871322-9:126971353
11590 9 125372194 125401964 RP11-64P14.7 brain_cortex 1.43e-01 0.000235 0 9:124871322-9:126971353
11545 9 125883907 126030855 STRBP cmc.brain.rnaseq_splicing 2.62e+00 0.007050 0 9:124871322-9:126971353
11539 9 125606835 125667620 RC3H2 yfs.blood.rnaarr 2.86e+00 0.028700 1 9:124871322-9:126971353
13180 9 126768556 126771675 RP11-85O21.2 psychencode -6.92e-01 0.000497 0 9:124871322-9:126971353
11585 9 124584207 124855885 TTLL11 brain_cerebellum -6.27e-01 0.000250 0 9:124871322-9:126971353
12025 9 126141933 126692431 DENND1A psychencode 4.38e+00 0.029500 1 9:124871322-9:126971353
12513 9 125871779 126030855 STRBP psychencode 1.57e+00 0.000990 0 9:124871322-9:126971353
11574 9 126118449 126141032 CRB2 whole_blood -1.62e+00 0.000379 0 9:124871322-9:126971353
11567 9 126118447 126141032 CRB2 cmc.brain.rnaseq_splicing -1.56e+00 0.000523 0 9:124871322-9:126971353
12794 9 125670335 125675609 ZBTB6 psychencode -2.26e+00 0.002910 0 9:124871322-9:126971353
11572 9 126141932 126692417 DENND1A cmc.brain.rnaseq 2.70e+00 0.000407 0 9:124871322-9:126971353
11564 9 126141933 126692431 DENND1A yfs.blood.rnaarr -2.73e+00 0.000566 0 9:124871322-9:126971353
12 10 1568832 1599179 ADARB2-AS1 brain_caudate_basal_ganglia -1.16e+00 0.000302 0 10:1523544-10:2254500
9 10 1068576 1090141 IDI2-AS1 cmc.brain.rnaseq_splicing -1.47e+00 0.000453 0 10:1523544-10:2254500
17 10 1228073 1779670 ADARB2 adrenal_gland 8.79e-01 0.000230 0 10:1523544-10:2254500
20 10 1068576 1090141 IDI2-AS1 cmc.brain.rnaseq 6.21e-01 0.000191 0 10:1523544-10:2254500
21 10 1228073 1779670 ADARB2 thyroid 4.32e-01 0.000174 0 10:1523544-10:2254500
8 10 1068606 1090138 IDI2-AS1 brain_cerebellum -1.51e+00 0.000478 0 10:1523544-10:2254500
10 10 1068606 1090138 IDI2-AS1 brain_amygdala 1.18e+00 0.000311 0 10:1523544-10:2254500
24 10 1068606 1090138 IDI2-AS1 brain_cerebellar_hemisphere 2.02e-01 0.000162 0 10:1523544-10:2254500
11691 10 1085848 1095110 IDI1 psychencode -1.35e+00 0.000382 0 10:1523544-10:2254500
15 10 1095477 1178237 WDR37 cmc.brain.rnaseq -9.97e-01 0.000256 0 10:1523544-10:2254500
13 10 1568832 1599179 ADARB2-AS1 brain_amygdala -1.06e+00 0.000272 0 10:1523544-10:2254500
1 10 1095478 1178237 WDR37 adrenal_gland 2.51e+00 0.003410 0 10:1523544-10:2254500
2 10 1095478 1178237 WDR37 brain_cerebellar_hemisphere 2.08e+00 0.001300 0 10:1523544-10:2254500
18 10 1568832 1599179 ADARB2-AS1 brain_anterior_cingulate_cortex_ba24 -6.87e-01 0.000199 0 10:1523544-10:2254500
25 10 1568832 1599179 ADARB2-AS1 brain_cerebellum -1.46e-01 0.000161 0 10:1523544-10:2254500
6 10 1095478 1178237 WDR37 thyroid -1.69e+00 0.000635 0 10:1523544-10:2254500
16 10 1095478 1178237 WDR37 brain_frontal_cortex_ba9 9.10e-01 0.000236 0 10:1523544-10:2254500
19 10 1102327 1178788 WDR37 ntr.blood.rnaarr -6.54e-01 0.000195 0 10:1523544-10:2254500
14 10 1223252 1779670 ADARB2 cmc.brain.rnaseq_splicing 1.00e+00 0.000258 0 10:1523544-10:2254500
23 10 1223252 1779670 ADARB2 cmc.brain.rnaseq 3.73e-01 0.000169 0 10:1523544-10:2254500
12978 10 1568832 1599179 ADARB2-AS1 psychencode -8.40e-01 0.000222 0 10:1523544-10:2254500
3 10 1228073 1779670 ADARB2 whole_blood -1.84e+00 0.000825 0 10:1523544-10:2254500
12787 10 1228073 1779670 ADARB2 psychencode 4.97e-01 0.000178 0 10:1523544-10:2254500
22 10 1064846 1071799 IDI2 cmc.brain.rnaseq -3.73e-01 0.000171 0 10:1523544-10:2254500
5 10 1568832 1599179 ADARB2-AS1 brain_putamen_basal_ganglia -1.71e+00 0.000648 0 10:1523544-10:2254500
4 10 1568832 1599179 ADARB2-AS1 brain_hypothalamus -1.73e+00 0.000673 0 10:1523544-10:2254500
7 10 1568832 1599179 ADARB2-AS1 brain_cortex -1.60e+00 0.000546 0 10:1523544-10:2254500
11 10 1568832 1599179 ADARB2-AS1 brain_nucleus_accumbens_basal_ganglia -1.17e+00 0.000306 0 10:1523544-10:2254500
12688 10 69990386 69991871 ATOH7 psychencode -2.58e+00 0.003900 0 10:67549774-10:69900148
42 10 70042417 70092806 PBLD brain_hippocampus 7.46e-01 0.000214 0 10:67549774-10:69900148
31 10 69644427 69678147 SIRT1 whole_blood 1.84e+00 0.000811 0 10:67549774-10:69900148
43 10 70042417 70092806 PBLD brain_cerebellar_hemisphere 7.40e-01 0.000212 0 10:67549774-10:69900148
12083 10 70237756 70287231 SLC25A16 psychencode 9.56e-01 0.000250 0 10:67549774-10:69900148
41 10 70091767 70102953 HNRNPH3 cmc.brain.rnaseq_splicing 8.52e-01 0.000232 0 10:67549774-10:69900148
39 10 70242089 70287280 SLC25A16 cmc.brain.rnaseq_splicing 1.32e+00 0.000368 0 10:67549774-10:69900148
35 10 70320116 70454239 TET1 cmc.brain.rnaseq 1.60e+00 0.000548 0 10:67549774-10:69900148
37 10 67330096 67526299 RP11-222A11.1 adrenal_gland 1.45e+00 0.000469 0 10:67549774-10:69900148
33 10 70173821 70231879 DNA2 whole_blood -1.81e+00 0.000763 0 10:67549774-10:69900148
29 10 70100864 70167051 RUFY2 brain_anterior_cingulate_cortex_ba24 -2.20e+00 0.001620 0 10:67549774-10:69900148
38 10 70173821 70231879 DNA2 thyroid -1.44e+00 0.000433 0 10:67549774-10:69900148
12342 10 69681665 69835105 HERC4 psychencode -5.74e-01 0.000193 0 10:67549774-10:69900148
46 10 67330096 67526299 RP11-222A11.1 brain_nucleus_accumbens_basal_ganglia -1.85e-01 0.000165 0 10:67549774-10:69900148
13095 10 67330096 67526299 RP11-222A11.1 psychencode 2.09e-01 0.000166 0 10:67549774-10:69900148
11787 10 69644427 69678147 SIRT1 psychencode 2.32e+00 0.002120 0 10:67549774-10:69900148
26 10 67679724 69455949 CTNNA3 cmc.brain.rnaseq 3.09e+00 0.016200 0 10:67549774-10:69900148
44 10 69681655 69835103 HERC4 cmc.brain.rnaseq -5.79e-01 0.000192 0 10:67549774-10:69900148
28 10 69990386 69991871 ATOH7 adrenal_gland -2.42e+00 0.002660 0 10:67549774-10:69900148
34 10 70237756 70287231 SLC25A16 brain_cortex 1.70e+00 0.000631 0 10:67549774-10:69900148
45 10 69556426 69597937 DNAJC12 cmc.brain.rnaseq_splicing -1.60e-01 0.000166 0 10:67549774-10:69900148
27 10 69990386 69991871 ATOH7 brain_frontal_cortex_ba9 -2.65e+00 0.004630 0 10:67549774-10:69900148
11899 10 69556427 69597924 DNAJC12 psychencode 1.13e+00 0.000297 0 10:67549774-10:69900148
30 10 69644427 69678147 SIRT1 yfs.blood.rnaarr 2.13e+00 0.001400 0 10:67549774-10:69900148
32 10 69644426 69678147 SIRT1 cmc.brain.rnaseq_splicing 1.81e+00 0.000779 0 10:67549774-10:69900148
40 10 70173821 70231879 DNA2 brain_amygdala -1.28e+00 0.000358 0 10:67549774-10:69900148
11901 10 70042417 70092806 PBLD psychencode 2.80e+00 0.006980 0 10:67549774-10:69900148
36 10 69681665 69835105 HERC4 yfs.blood.rnaarr 1.57e+00 0.000528 0 10:67549774-10:69900148
11902 10 70042417 70092806 PBLD psychencode -6.47e-01 0.001150 0 10:69900148-10:70195991
12689 10 69990386 69991871 ATOH7 psychencode 1.54e+00 0.000381 0 10:69900148-10:70195991
63 10 69993008 70002136 RP11-153K11.3 adrenal_gland 6.99e-01 0.001150 0 10:69900148-10:70195991
73 10 70042416 70092684 PBLD cmc.brain.rnaseq -8.12e-01 0.000791 0 10:69900148-10:70195991
84 10 69990386 69991871 ATOH7 brain_frontal_cortex_ba9 7.99e-01 0.000362 0 10:69900148-10:70195991
68 10 70042417 70092806 PBLD brain_frontal_cortex_ba9 -6.79e-01 0.000854 0 10:69900148-10:70195991
90 10 70237756 70287231 SLC25A16 brain_cortex 5.99e-01 0.000242 0 10:69900148-10:70195991
48 10 70242001 70287783 SLC25A16 ntr.blood.rnaarr -4.09e+00 0.150000 1 10:69900148-10:70195991
62 10 70042417 70092806 PBLD brain_cortex -7.40e-01 0.001270 0 10:69900148-10:70195991
76 10 70242089 70287280 SLC25A16 cmc.brain.rnaseq_splicing 7.41e-01 0.000630 0 10:69900148-10:70195991
80 10 70173821 70231879 DNA2 whole_blood 1.35e+00 0.000504 0 10:69900148-10:70195991
79 10 69644426 69678147 SIRT1 cmc.brain.rnaseq_splicing 1.48e+00 0.000593 0 10:69900148-10:70195991
64 10 70042417 70092806 PBLD adrenal_gland -6.55e-01 0.001090 0 10:69900148-10:70195991
81 10 70320116 70454239 TET1 cmc.brain.rnaseq 1.56e+00 0.000452 0 10:69900148-10:70195991
72 10 69990386 69991871 ATOH7 adrenal_gland 8.04e-01 0.000793 0 10:69900148-10:70195991
88 10 70480769 70552134 CCAR1 yfs.blood.rnaarr 4.17e-01 0.000246 0 10:69900148-10:70195991
61 10 70480970 70551309 CCAR1 cmc.brain.rnaseq_splicing -2.59e+00 0.001400 0 10:69900148-10:70195991
49 10 70587293 70655209 STOX1 cmc.brain.rnaseq_splicing 4.04e+00 0.125000 1 10:69900148-10:70195991
66 10 70173820 70231878 DNA2 cmc.brain.rnaseq -1.71e+00 0.001060 0 10:69900148-10:70195991
12520 10 70587298 70655188 STOX1 psychencode 2.94e+00 0.003250 0 10:69900148-10:70195991
51 10 70587298 70655188 STOX1 brain_caudate_basal_ganglia 3.73e+00 0.038900 1 10:69900148-10:70195991
82 10 70091767 70102953 HNRNPH3 cmc.brain.rnaseq_splicing -1.80e+00 0.000451 0 10:69900148-10:70195991
69 10 70042417 70092806 PBLD brain_nucleus_accumbens_basal_ganglia -6.79e-01 0.000853 0 10:69900148-10:70195991
65 10 70042417 70092806 PBLD brain_hippocampus -1.27e+00 0.001070 0 10:69900148-10:70195991
12343 10 69681665 69835105 HERC4 psychencode 1.42e+00 0.000420 0 10:69900148-10:70195991
67 10 70042417 70092806 PBLD brain_amygdala -1.17e+00 0.000889 0 10:69900148-10:70195991
74 10 70042417 70092806 PBLD brain_anterior_cingulate_cortex_ba24 -1.35e+00 0.000699 0 10:69900148-10:70195991
47 10 70100864 70167051 RUFY2 adrenal_gland -4.11e+00 0.161000 1 10:69900148-10:70195991
12084 10 70237756 70287231 SLC25A16 psychencode 2.46e+00 0.001550 0 10:69900148-10:70195991
58 10 69681665 69835105 HERC4 yfs.blood.rnaarr -3.22e+00 0.007760 0 10:69900148-10:70195991
11788 10 69644427 69678147 SIRT1 psychencode 2.69e+00 0.005070 0 10:69900148-10:70195991
57 10 70587298 70655188 STOX1 adrenal_gland -3.47e+00 0.015500 0 10:69900148-10:70195991
87 10 70173821 70231879 DNA2 thyroid 6.82e-02 0.000256 0 10:69900148-10:70195991
70 10 70042417 70092806 PBLD brain_cerebellar_hemisphere -1.88e+00 0.000821 0 10:69900148-10:70195991
85 10 69990351 69991870 ATOH7 cmc.brain.rnaseq 1.27e+00 0.000335 0 10:69900148-10:70195991
86 10 67679724 69455949 CTNNA3 cmc.brain.rnaseq -1.01e+00 0.000315 0 10:69900148-10:70195991
71 10 70042417 70092806 PBLD brain_caudate_basal_ganglia -7.49e-01 0.000820 0 10:69900148-10:70195991
56 10 70237756 70287231 SLC25A16 brain_cerebellar_hemisphere -3.49e+00 0.016600 0 10:69900148-10:70195991
53 10 70100864 70167051 RUFY2 brain_hippocampus -3.65e+00 0.029300 1 10:69900148-10:70195991
89 10 69556426 69597937 DNAJC12 cmc.brain.rnaseq_splicing 5.99e-01 0.000242 0 10:69900148-10:70195991
75 10 70042417 70092806 PBLD thyroid -1.09e+00 0.000664 0 10:69900148-10:70195991
78 10 70042417 70092806 PBLD brain_putamen_basal_ganglia -1.34e+00 0.000607 0 10:69900148-10:70195991
55 10 70100864 70167051 RUFY2 thyroid -3.50e+00 0.017200 0 10:69900148-10:70195991
11900 10 69556427 69597924 DNAJC12 psychencode -2.22e-01 0.000908 0 10:69900148-10:70195991
60 10 70100864 70167051 RUFY2 brain_anterior_cingulate_cortex_ba24 -2.79e+00 0.002270 0 10:69900148-10:70195991
12936 10 70100864 70167051 RUFY2 psychencode 1.03e+00 0.000309 0 10:69900148-10:70195991
54 10 69681655 69835103 HERC4 cmc.brain.rnaseq 3.50e+00 0.021100 0 10:69900148-10:70195991
83 10 70237756 70287231 SLC25A16 thyroid 1.49e+00 0.000446 0 10:69900148-10:70195991
50 10 70173821 70231879 DNA2 brain_substantia_nigra 4.01e+00 0.110000 1 10:69900148-10:70195991
52 10 70173821 70231879 DNA2 brain_amygdala 3.65e+00 0.029900 1 10:69900148-10:70195991
59 10 70173821 70231879 DNA2 brain_nucleus_accumbens_basal_ganglia 2.96e+00 0.003490 0 10:69900148-10:70195991
77 10 70173821 70231879 DNA2 brain_caudate_basal_ganglia -1.72e+00 0.000618 0 10:69900148-10:70195991
13392 10 105637132 105639519 RP11-541N10.3 psychencode -7.57e-01 0.000381 0 10:104380686-10:106695048
246 10 105148808 105156270 USMG5 cmc.brain.rnaseq 1.97e+00 0.000263 0 10:104380686-10:106695048
139 10 104221149 104236802 TMEM180 brain_cerebellum -1.38e+00 0.000636 0 10:104380686-10:106695048
240 10 105156405 105206049 PDCD11 brain_cerebellum 6.03e-04 0.000273 0 10:104380686-10:106695048
166 10 104221149 104236802 TMEM180 thyroid -4.16e-01 0.000418 0 10:104380686-10:106695048
168 10 104221149 104236802 TMEM180 brain_hippocampus 8.71e-01 0.000413 0 10:104380686-10:106695048
104 10 104935311 104935851 MARCKSL1P1 thyroid -4.12e+00 0.003000 0 10:104380686-10:106695048
252 10 104209574 104220863 RP11-18I14.10 thyroid 1.37e+00 0.000254 0 10:104380686-10:106695048
262 10 105156405 105206049 PDCD11 thyroid 1.49e+00 0.000247 0 10:104380686-10:106695048
91 10 104209574 104220863 RP11-18I14.10 brain_frontal_cortex_ba9 5.35e+00 0.664000 1 10:104380686-10:106695048
12398 10 104474295 104503249 SFXN2 psychencode 2.30e+00 0.000277 0 10:104380686-10:106695048
13008 10 104629273 104661656 AS3MT psychencode 2.81e+00 0.000920 0 10:104380686-10:106695048
12344 10 105036920 105050108 INA psychencode -1.12e+00 0.000237 0 10:104380686-10:106695048
137 10 105637132 105639519 RP11-541N10.3 brain_cerebellum -1.21e+00 0.000643 0 10:104380686-10:106695048
238 10 105642300 105677963 OBFC1 whole_blood -6.78e-01 0.000276 0 10:104380686-10:106695048
128 10 104238985 104262509 ACTR1A ntr.blood.rnaarr -3.54e+00 0.000792 0 10:104380686-10:106695048
108 10 104209780 104211155 C10orf95 thyroid -4.07e+00 0.002340 0 10:104380686-10:106695048
228 10 104613980 104624718 C10orf32 brain_putamen_basal_ganglia 8.35e-01 0.000292 0 10:104380686-10:106695048
106 10 104850368 104953056 NT5C2 brain_hippocampus -4.08e+00 0.002870 0 10:104380686-10:106695048
12349 10 105156405 105206049 PDCD11 psychencode -1.02e+00 0.000311 0 10:104380686-10:106695048
222 10 104613980 104624718 C10orf32 brain_cortex 1.32e+00 0.000295 0 10:104380686-10:106695048
112 10 104209574 104220863 RP11-18I14.10 brain_hippocampus 3.94e+00 0.002010 0 10:104380686-10:106695048
172 10 104221149 104236802 TMEM180 brain_caudate_basal_ganglia 1.55e+00 0.000405 0 10:104380686-10:106695048
13522 10 104402549 104403897 RP11-47A8.5 psychencode 9.43e-01 0.000361 0 10:104380686-10:106695048
259 10 105148798 105156223 USMG5 yfs.blood.rnaarr -1.15e+00 0.000249 0 10:104380686-10:106695048
248 10 105206542 105212162 CALHM2 cmc.brain.rnaseq -1.20e+00 0.000260 0 10:104380686-10:106695048
183 10 105206543 105212602 CALHM2 whole_blood -1.70e+00 0.000366 0 10:104380686-10:106695048
174 10 104503681 104576021 C10orf26 ntr.blood.rnaarr -2.96e+00 0.000399 0 10:104380686-10:106695048
189 10 104935311 104935851 MARCKSL1P1 whole_blood 9.33e-02 0.000356 0 10:104380686-10:106695048
161 10 104221149 104236802 TMEM180 brain_frontal_cortex_ba9 -4.95e-01 0.000442 0 10:104380686-10:106695048
12394 10 105062553 105110891 PCGF6 psychencode 3.17e+00 0.000420 0 10:104380686-10:106695048
170 10 104674342 104675161 RP11-724N1.1 brain_cerebellar_hemisphere 2.64e+00 0.000409 0 10:104380686-10:106695048
11895 10 104263744 104393292 SUFU psychencode -4.28e-01 0.000260 0 10:104380686-10:106695048
167 10 104850368 104953056 NT5C2 whole_blood -2.65e+00 0.000414 0 10:104380686-10:106695048
145 10 104403438 104418164 TRIM8 ntr.blood.rnaarr -3.09e-01 0.000532 0 10:104380686-10:106695048
12528 10 104613980 104624718 C10orf32 psychencode 5.91e-01 0.000288 0 10:104380686-10:106695048
123 10 104238986 104262482 ACTR1A pituitary -3.70e+00 0.000961 0 10:104380686-10:106695048
227 10 104629273 104661656 AS3MT brain_amygdala 8.68e-01 0.000292 0 10:104380686-10:106695048
187 10 104221149 104236802 TMEM180 brain_cerebellar_hemisphere 1.69e+00 0.000360 0 10:104380686-10:106695048
217 10 105206543 105212602 CALHM2 thyroid -2.66e+00 0.000300 0 10:104380686-10:106695048
146 10 104238985 104262512 ACTR1A cmc.brain.rnaseq -2.68e+00 0.000515 0 10:104380686-10:106695048
95 10 104503727 104576021 WBP1L thyroid 4.86e+00 0.061200 1 10:104380686-10:106695048
13457 10 104209574 104220863 RP11-18I14.10 psychencode -5.32e-02 0.000226 0 10:104380686-10:106695048
165 10 105637132 105639519 RP11-541N10.3 brain_frontal_cortex_ba9 -6.89e-01 0.000424 0 10:104380686-10:106695048
147 10 104209574 104220863 RP11-18I14.10 brain_cerebellum 2.80e+00 0.000510 0 10:104380686-10:106695048
285 10 105206543 105212660 CALHM2 yfs.blood.rnaarr -2.96e-01 0.000219 0 10:104380686-10:106695048
98 10 104209574 104220863 RP11-18I14.10 brain_cerebellar_hemisphere 4.58e+00 0.020200 0 10:104380686-10:106695048
114 10 104209574 104220863 RP11-18I14.10 brain_amygdala 3.82e+00 0.001780 0 10:104380686-10:106695048
192 10 104209574 104220863 RP11-18I14.10 brain_caudate_basal_ganglia 2.20e+00 0.000339 0 10:104380686-10:106695048
12254 10 105206543 105212660 CALHM2 psychencode -1.39e+00 0.000234 0 10:104380686-10:106695048
234 10 104209573 104216050 LOC100505761 cmc.brain.rnaseq 6.80e-01 0.000282 0 10:104380686-10:106695048
208 10 104850368 104953056 NT5C2 brain_cerebellar_hemisphere 5.26e-01 0.000307 0 10:104380686-10:106695048
105 10 104404253 104418164 TRIM8 thyroid 4.05e+00 0.002870 0 10:104380686-10:106695048
211 10 104474295 104503249 SFXN2 whole_blood 2.58e+00 0.000303 0 10:104380686-10:106695048
157 10 104674342 104675161 RP11-724N1.1 thyroid 2.64e+00 0.000454 0 10:104380686-10:106695048
164 10 104503727 104576021 WBP1L pituitary -6.90e-01 0.000426 0 10:104380686-10:106695048
269 10 105642300 105677963 OBFC1 yfs.blood.rnaarr 4.81e-03 0.000242 0 10:104380686-10:106695048
177 10 105726959 105788991 SLK brain_cerebellar_hemisphere 1.03e+00 0.000387 0 10:104380686-10:106695048
96 10 104221149 104236802 TMEM180 yfs.blood.rnaarr 4.76e+00 0.036600 1 10:104380686-10:106695048
12526 10 103911933 103923627 NOLC1 psychencode -2.35e+00 0.000337 0 10:104380686-10:106695048
12252 10 104238986 104262482 ACTR1A psychencode -4.50e-01 0.000417 0 10:104380686-10:106695048
140 10 105637317 105678045 OBFC1 cmc.brain.rnaseq -1.15e+00 0.000634 0 10:104380686-10:106695048
92 10 104402549 104403897 RP11-47A8.5 thyroid 5.03e+00 0.131000 1 10:104380686-10:106695048
287 10 105637132 105639519 RP11-541N10.3 brain_putamen_basal_ganglia 1.83e-01 0.000218 0 10:104380686-10:106695048
207 10 106028631 106064703 GSTO2 brain_caudate_basal_ganglia 1.01e+00 0.000309 0 10:104380686-10:106695048
232 10 106028631 106064703 GSTO2 brain_frontal_cortex_ba9 7.82e-01 0.000285 0 10:104380686-10:106695048
199 10 104629209 104661655 AS3MT cmc.brain.rnaseq 1.70e+00 0.000322 0 10:104380686-10:106695048
281 10 105726959 105788991 SLK yfs.blood.rnaarr 5.78e-02 0.000227 0 10:104380686-10:106695048
156 10 104404253 104418164 TRIM8 brain_anterior_cingulate_cortex_ba24 2.79e+00 0.000464 0 10:104380686-10:106695048
175 10 104183001 104192423 CUEDC2 cmc.brain.rnaseq_splicing 7.94e-01 0.000395 0 10:104380686-10:106695048
205 10 105062553 105110891 PCGF6 yfs.blood.rnaarr -2.48e+00 0.000311 0 10:104380686-10:106695048
272 10 105213143 105218648 CALHM1 cmc.brain.rnaseq -6.24e-01 0.000239 0 10:104380686-10:106695048
255 10 105148808 105156270 USMG5 cmc.brain.rnaseq_splicing -1.09e+00 0.000252 0 10:104380686-10:106695048
176 10 104162373 104179691 PSD cmc.brain.rnaseq_splicing 1.36e+00 0.000389 0 10:104380686-10:106695048
116 10 104402549 104403897 RP11-47A8.5 brain_caudate_basal_ganglia 3.69e+00 0.001490 0 10:104380686-10:106695048
152 10 104402549 104403897 RP11-47A8.5 brain_cortex 2.33e+00 0.000489 0 10:104380686-10:106695048
261 10 106028631 106064703 GSTO2 thyroid 3.92e-01 0.000248 0 10:104380686-10:106695048
202 10 104629226 104661653 AS3MT ntr.blood.rnaarr 1.00e+00 0.000320 0 10:104380686-10:106695048
236 10 104850368 104953056 NT5C2 brain_cerebellum 2.56e-01 0.000278 0 10:104380686-10:106695048
185 10 104404253 104418075 TRIM8 yfs.blood.rnaarr 1.65e-01 0.000362 0 10:104380686-10:106695048
11683 10 106028631 106064703 GSTO2 psychencode 6.32e-01 0.000254 0 10:104380686-10:106695048
13521 10 104674342 104675161 RP11-724N1.1 psychencode 1.27e+00 0.000354 0 10:104380686-10:106695048
142 10 104263744 104393292 SUFU brain_nucleus_accumbens_basal_ganglia 1.92e+00 0.000564 0 10:104380686-10:106695048
213 10 104613966 104624718 C10orf32 ntr.blood.rnaarr 9.31e-01 0.000302 0 10:104380686-10:106695048
121 10 104647631 104647945 RP11-753C18.8 brain_cerebellar_hemisphere 3.54e+00 0.000973 0 10:104380686-10:106695048
268 10 106071894 106098162 ITPRIP yfs.blood.rnaarr -9.49e-01 0.000245 0 10:104380686-10:106695048
129 10 104629273 104661656 AS3MT brain_hypothalamus 3.40e+00 0.000790 0 10:104380686-10:106695048
283 10 105726959 105788991 SLK pituitary -3.20e-01 0.000221 0 10:104380686-10:106695048
286 10 105726959 105788991 SLK brain_cortex 5.13e-01 0.000218 0 10:104380686-10:106695048
12347 10 106071894 106098162 ITPRIP psychencode -8.69e-01 0.000243 0 10:104380686-10:106695048
200 10 106083127 106086762 RP11-127L20.3 brain_hypothalamus 1.06e+00 0.000320 0 10:104380686-10:106695048
101 10 104209574 104220863 RP11-18I14.10 pituitary 4.19e+00 0.005280 0 10:104380686-10:106695048
209 10 106083127 106086762 RP11-127L20.3 brain_anterior_cingulate_cortex_ba24 8.38e-01 0.000306 0 10:104380686-10:106695048
11681 10 105726959 105788991 SLK psychencode 3.53e-01 0.000254 0 10:104380686-10:106695048
241 10 106028631 106064703 GSTO2 brain_hypothalamus 8.66e-01 0.000272 0 10:104380686-10:106695048
242 10 106028631 106064703 GSTO2 brain_amygdala 4.11e-01 0.000268 0 10:104380686-10:106695048
173 10 104209574 104220863 RP11-18I14.10 brain_nucleus_accumbens_basal_ganglia 2.36e+00 0.000399 0 10:104380686-10:106695048
284 10 105791044 105845760 COL17A1 whole_blood -2.74e-01 0.000220 0 10:104380686-10:106695048
125 10 104183002 104192418 CUEDC2 brain_cerebellum 3.46e+00 0.000903 0 10:104380686-10:106695048
13127 10 106111349 106113333 CCDC147-AS1 psychencode -9.18e-01 0.000243 0 10:104380686-10:106695048
107 10 105637132 105678045 OBFC1 ntr.blood.rnaarr -2.77e+00 0.002730 0 10:104380686-10:106695048
247 10 106028631 106059616 GSTO2 yfs.blood.rnaarr -7.18e-02 0.000261 0 10:104380686-10:106695048
219 10 104402549 104403897 RP11-47A8.5 brain_nucleus_accumbens_basal_ganglia 1.25e+00 0.000296 0 10:104380686-10:106695048
12253 10 104221149 104236802 TMEM180 psychencode -9.36e-01 0.000268 0 10:104380686-10:106695048
210 10 106083127 106086762 RP11-127L20.3 pituitary 1.10e+00 0.000305 0 10:104380686-10:106695048
226 10 106083127 106086762 RP11-127L20.3 brain_caudate_basal_ganglia 8.66e-01 0.000293 0 10:104380686-10:106695048
254 10 106113522 106214848 CCDC147 thyroid 9.40e-01 0.000252 0 10:104380686-10:106695048
11682 10 105791044 105845760 COL17A1 psychencode -7.15e-01 0.000581 0 10:104380686-10:106695048
154 10 104433488 104474164 ARL3 brain_cerebellar_hemisphere -2.85e+00 0.000470 0 10:104380686-10:106695048
12395 10 105881816 105886143 SFR1 psychencode 9.72e-02 0.000254 0 10:104380686-10:106695048
103 10 105889645 105992120 WDR96 cmc.brain.rnaseq_splicing 1.08e+00 0.003900 0 10:104380686-10:106695048
115 10 105889645 105992120 WDR96 cmc.brain.rnaseq 5.89e-01 0.001690 0 10:104380686-10:106695048
237 10 106083127 106086762 RP11-127L20.3 brain_putamen_basal_ganglia 7.65e-01 0.000278 0 10:104380686-10:106695048
277 10 106113522 106214848 CCDC147 pituitary 3.40e-01 0.000232 0 10:104380686-10:106695048
102 10 105889646 105992120 WDR96 brain_frontal_cortex_ba9 1.04e+00 0.004570 0 10:104380686-10:106695048
186 10 104404253 104418164 TRIM8 whole_blood 1.98e+00 0.000362 0 10:104380686-10:106695048
244 10 106083127 106086762 RP11-127L20.3 brain_amygdala 8.99e-01 0.000264 0 10:104380686-10:106695048
150 10 104629273 104661656 AS3MT brain_cerebellar_hemisphere 2.65e+00 0.000500 0 10:104380686-10:106695048
118 10 105889646 105992120 WDR96 pituitary 7.05e-01 0.001150 0 10:104380686-10:106695048
93 10 106400859 107024993 SORCS3 pituitary -3.91e+00 0.110000 1 10:104380686-10:106695048
131 10 104221169 104238858 TMEM180 cmc.brain.rnaseq 3.09e+00 0.000767 0 10:104380686-10:106695048
111 10 104647631 104647945 RP11-753C18.8 brain_cerebellum 3.91e+00 0.002030 0 10:104380686-10:106695048
94 10 106400859 107024993 SORCS3 adrenal_gland 3.77e+00 0.086200 1 10:104380686-10:106695048
253 10 106083127 106086762 RP11-127L20.3 brain_cortex 9.12e-01 0.000252 0 10:104380686-10:106695048
231 10 104613980 104624718 C10orf32 brain_cerebellar_hemisphere 9.34e-01 0.000286 0 10:104380686-10:106695048
122 10 105889646 105992120 WDR96 thyroid 8.04e-01 0.000963 0 10:104380686-10:106695048
134 10 105889646 105992120 WDR96 adrenal_gland 4.96e-01 0.000674 0 10:104380686-10:106695048
12346 10 103892787 103910082 PPRC1 psychencode 6.40e-02 0.000322 0 10:104380686-10:106695048
250 10 106028631 106064703 GSTO2 brain_cerebellum 5.79e-01 0.000258 0 10:104380686-10:106695048
264 10 106083127 106086762 RP11-127L20.3 brain_nucleus_accumbens_basal_ganglia 7.27e-01 0.000246 0 10:104380686-10:106695048
194 10 104221149 104236802 TMEM180 brain_putamen_basal_ganglia 7.18e-01 0.000337 0 10:104380686-10:106695048
12790 10 105213144 105218645 CALHM1 psychencode 7.34e-02 0.000319 0 10:104380686-10:106695048
148 10 105889646 105992120 WDR96 brain_cortex -8.71e-02 0.000509 0 10:104380686-10:106695048
266 10 106083127 106086762 RP11-127L20.3 whole_blood -1.04e+00 0.000245 0 10:104380686-10:106695048
267 10 106083127 106086762 RP11-127L20.3 brain_hippocampus 2.45e-01 0.000245 0 10:104380686-10:106695048
270 10 105036919 105050108 INA cmc.brain.rnaseq -1.49e+00 0.000241 0 10:104380686-10:106695048
229 10 105232561 105238997 CALHM3 pituitary -7.69e-01 0.000288 0 10:104380686-10:106695048
12897 10 105889646 105992120 WDR96 psychencode 7.43e-01 0.003830 0 10:104380686-10:106695048
151 10 104629273 104661656 AS3MT whole_blood 2.99e+00 0.000495 0 10:104380686-10:106695048
251 10 106028631 106064703 GSTO2 brain_substantia_nigra 5.15e-01 0.000255 0 10:104380686-10:106695048
12527 10 104503727 104576021 WBP1L psychencode -2.94e+00 0.000508 0 10:104380686-10:106695048
97 10 104678050 104849978 CNNM2 brain_cerebellar_hemisphere -4.76e+00 0.030500 0 10:104380686-10:106695048
275 10 106083127 106086762 RP11-127L20.3 brain_frontal_cortex_ba9 7.77e-01 0.000234 0 10:104380686-10:106695048
276 10 106083127 106086762 RP11-127L20.3 brain_substantia_nigra 5.43e-02 0.000233 0 10:104380686-10:106695048
282 10 106111349 106113333 CCDC147-AS1 whole_blood -7.56e-02 0.000223 0 10:104380686-10:106695048
117 10 104221149 104236802 TMEM180 brain_substantia_nigra 3.64e+00 0.001210 0 10:104380686-10:106695048
197 10 104629273 104661656 AS3MT brain_hippocampus 1.71e+00 0.000324 0 10:104380686-10:106695048
119 10 104209574 104220863 RP11-18I14.10 brain_anterior_cingulate_cortex_ba24 3.65e+00 0.001140 0 10:104380686-10:106695048
12633 10 105148798 105156223 USMG5 psychencode -1.16e-01 0.000260 0 10:104380686-10:106695048
153 10 104221169 104238858 TMEM180 cmc.brain.rnaseq_splicing -1.03e-01 0.000485 0 10:104380686-10:106695048
12607 10 104404253 104418164 TRIM8 psychencode 3.53e+00 0.001850 0 10:104380686-10:106695048
113 10 104179558 104182893 FBXL15 ntr.blood.rnaarr -3.94e+00 0.001940 0 10:104380686-10:106695048
223 10 104613980 104624718 C10orf32 brain_caudate_basal_ganglia 8.28e-01 0.000295 0 10:104380686-10:106695048
221 10 104613980 104624718 C10orf32 adrenal_gland 7.42e-01 0.000296 0 10:104380686-10:106695048
191 10 104613980 104624718 C10orf32 brain_nucleus_accumbens_basal_ganglia 7.12e-01 0.000348 0 10:104380686-10:106695048
109 10 105127724 105148797 TAF5 brain_frontal_cortex_ba9 4.08e+00 0.002260 0 10:104380686-10:106695048
206 10 104590288 104597290 CYP17A1 thyroid 2.47e+00 0.000310 0 10:104380686-10:106695048
212 10 104005254 104142656 GBF1 cmc.brain.rnaseq_splicing 1.41e+00 0.000303 0 10:104380686-10:106695048
249 10 105889646 105992120 WDR96 brain_anterior_cingulate_cortex_ba24 -2.75e-01 0.000260 0 10:104380686-10:106695048
11894 10 104005289 104142656 GBF1 psychencode -1.40e+00 0.000341 0 10:104380686-10:106695048
235 10 105642300 105677963 OBFC1 brain_hippocampus 5.22e-01 0.000282 0 10:104380686-10:106695048
130 10 104629273 104661656 AS3MT thyroid 3.37e+00 0.000779 0 10:104380686-10:106695048
198 10 104678050 104849978 CNNM2 adrenal_gland -8.44e-01 0.000324 0 10:104380686-10:106695048
135 10 105036920 105050108 INA brain_cerebellar_hemisphere -3.47e+00 0.000653 0 10:104380686-10:106695048
163 10 104629273 104661656 AS3MT brain_putamen_basal_ganglia 2.66e+00 0.000427 0 10:104380686-10:106695048
245 10 105062553 105110891 PCGF6 brain_nucleus_accumbens_basal_ganglia -3.61e-01 0.000263 0 10:104380686-10:106695048
218 10 104613980 104624718 C10orf32 brain_hypothalamus 9.08e-01 0.000300 0 10:104380686-10:106695048
258 10 106028631 106064703 GSTO2 brain_cortex 5.37e-01 0.000249 0 10:104380686-10:106695048
132 10 104162373 104179691 PSD cmc.brain.rnaseq_splicing 3.33e+00 0.000737 0 10:104380686-10:106695048
158 10 104433488 104474164 ARL3 yfs.blood.rnaarr -2.75e+00 0.000452 0 10:104380686-10:106695048
120 10 104263744 104393292 SUFU whole_blood -9.84e-01 0.001040 0 10:104380686-10:106695048
203 10 104629273 104661656 AS3MT brain_anterior_cingulate_cortex_ba24 1.75e+00 0.000317 0 10:104380686-10:106695048
181 10 104674342 104675161 RP11-724N1.1 adrenal_gland 2.09e+00 0.000375 0 10:104380686-10:106695048
138 10 104845940 104953056 NT5C2 yfs.blood.rnaarr -3.09e+00 0.000642 0 10:104380686-10:106695048
11720 10 104845940 104953056 NT5C2 psychencode -1.70e+00 0.000277 0 10:104380686-10:106695048
230 10 105253734 105352309 NEURL cmc.brain.rnaseq -2.39e+00 0.000286 0 10:104380686-10:106695048
193 10 104613980 104624718 C10orf32 brain_amygdala -4.55e-01 0.000338 0 10:104380686-10:106695048
127 10 104221149 104236802 TMEM180 brain_anterior_cingulate_cortex_ba24 -2.11e+00 0.000797 0 10:104380686-10:106695048
99 10 104209574 104220863 RP11-18I14.10 brain_putamen_basal_ganglia 4.65e+00 0.018600 0 10:104380686-10:106695048
12932 10 104592478 104594273 CYP17A1-AS1 psychencode -2.32e+00 0.000328 0 10:104380686-10:106695048
214 10 104613980 104624718 C10orf32 pituitary 1.59e+00 0.000302 0 10:104380686-10:106695048
11896 10 105253736 105352309 NEURL1 psychencode 2.81e-01 0.000356 0 10:104380686-10:106695048
220 10 104613980 104624718 C10orf32 thyroid 9.91e-01 0.000296 0 10:104380686-10:106695048
136 10 104847773 104953063 NT5C2 cmc.brain.rnaseq_splicing 2.78e+00 0.000651 0 10:104380686-10:106695048
155 10 104221169 104238858 TMEM180 cmc.brain.rnaseq_splicing 2.31e+00 0.000470 0 10:104380686-10:106695048
179 10 104433483 104474190 ARL3 cmc.brain.rnaseq 1.30e+00 0.000377 0 10:104380686-10:106695048
141 10 104629273 104661656 AS3MT pituitary 3.22e+00 0.000588 0 10:104380686-10:106695048
243 10 104678050 104849978 CNNM2 brain_caudate_basal_ganglia -2.36e+00 0.000265 0 10:104380686-10:106695048
12348 10 104678050 104849978 CNNM2 psychencode -3.35e+00 0.000544 0 10:104380686-10:106695048
110 10 105995114 106027217 GSTO1 brain_cerebellar_hemisphere -2.13e+00 0.002030 0 10:104380686-10:106695048
12255 10 104433488 104474164 ARL3 psychencode 1.39e+00 0.000362 0 10:104380686-10:106695048
260 10 105148808 105156270 USMG5 cmc.brain.rnaseq_splicing 1.16e+00 0.000248 0 10:104380686-10:106695048
178 10 105995114 106027217 GSTO1 yfs.blood.rnaarr -1.24e+00 0.000379 0 10:104380686-10:106695048
100 10 104474295 104503249 SFXN2 thyroid 4.53e+00 0.013000 0 10:104380686-10:106695048
215 10 104613966 104624718 C10orf32 cmc.brain.rnaseq 6.60e-01 0.000301 0 10:104380686-10:106695048
182 10 104629273 104661656 AS3MT brain_frontal_cortex_ba9 2.29e+00 0.000375 0 10:104380686-10:106695048
274 10 105348285 105615301 SH3PXD2A yfs.blood.rnaarr 7.95e-01 0.000235 0 10:104380686-10:106695048
11898 10 105642300 105677963 OBFC1 psychencode -1.45e+00 0.000669 0 10:104380686-10:106695048
190 10 104847773 104953063 NT5C2 cmc.brain.rnaseq -2.04e+00 0.000348 0 10:104380686-10:106695048
263 10 105995114 106027217 GSTO1 thyroid -1.70e-01 0.000246 0 10:104380686-10:106695048
278 10 105995114 106027217 GSTO1 whole_blood -2.44e-01 0.000230 0 10:104380686-10:106695048
12345 10 105995114 106027217 GSTO1 psychencode -1.53e+00 0.000804 0 10:104380686-10:106695048
169 10 104474295 104498952 SFXN2 yfs.blood.rnaarr 2.96e+00 0.000411 0 10:104380686-10:106695048
144 10 104629273 104661656 AS3MT brain_cerebellum 3.10e+00 0.000537 0 10:104380686-10:106695048
196 10 106013951 106027222 GSTO1 cmc.brain.rnaseq -8.23e-01 0.000327 0 10:104380686-10:106695048
216 10 104613980 104624718 C10orf32 brain_substantia_nigra 7.84e-01 0.000301 0 10:104380686-10:106695048
12396 10 106400859 107024993 SORCS3 psychencode -4.38e+00 0.527000 1 10:104380686-10:106695048
224 10 104613980 104624718 C10orf32 brain_cerebellum 1.06e+00 0.000295 0 10:104380686-10:106695048
239 10 104647631 104647945 RP11-753C18.8 adrenal_gland 8.79e-01 0.000274 0 10:104380686-10:106695048
271 10 106013951 106027222 GSTO1 cmc.brain.rnaseq_splicing -6.65e-01 0.000239 0 10:104380686-10:106695048
11897 10 105348285 105615301 SH3PXD2A psychencode -1.22e+00 0.000298 0 10:104380686-10:106695048
256 10 106028630 106059176 GSTO2 cmc.brain.rnaseq 4.79e-01 0.000250 0 10:104380686-10:106695048
280 10 105368376 105369807 RP11-416N2.4 brain_cortex -1.19e+00 0.000228 0 10:104380686-10:106695048
257 10 106028630 106059176 GSTO2 cmc.brain.rnaseq_splicing -5.17e-01 0.000250 0 10:104380686-10:106695048
279 10 106028630 106059176 GSTO2 cmc.brain.rnaseq_splicing 3.76e-01 0.000229 0 10:104380686-10:106695048
126 10 106028631 106064703 GSTO2 brain_cerebellar_hemisphere 1.75e+00 0.000838 0 10:104380686-10:106695048
204 10 104629273 104661656 AS3MT brain_cortex 1.89e+00 0.000311 0 10:104380686-10:106695048
143 10 106028631 106064703 GSTO2 brain_nucleus_accumbens_basal_ganglia 1.38e+00 0.000541 0 10:104380686-10:106695048
159 10 104613980 104624718 C10orf32 whole_blood -8.92e-01 0.000450 0 10:104380686-10:106695048
180 10 106028631 106064703 GSTO2 brain_putamen_basal_ganglia 9.04e-01 0.000376 0 10:104380686-10:106695048
184 10 106028631 106064703 GSTO2 brain_anterior_cingulate_cortex_ba24 1.15e+00 0.000364 0 10:104380686-10:106695048
160 10 104935311 104935851 MARCKSL1P1 adrenal_gland -2.26e+00 0.000446 0 10:104380686-10:106695048
162 10 104674342 104675161 RP11-724N1.1 brain_hypothalamus 2.85e+00 0.000435 0 10:104380686-10:106695048
195 10 104674342 104675161 RP11-724N1.1 brain_caudate_basal_ganglia 1.54e+00 0.000337 0 10:104380686-10:106695048
124 10 104433488 104474164 ARL3 brain_cerebellum -3.67e+00 0.000931 0 10:104380686-10:106695048
201 10 106028631 106064703 GSTO2 brain_hippocampus 1.00e+00 0.000320 0 10:104380686-10:106695048
188 10 104629273 104661656 AS3MT brain_caudate_basal_ganglia 2.01e+00 0.000359 0 10:104380686-10:106695048
133 10 104674342 104675161 RP11-724N1.1 brain_cerebellum 3.33e+00 0.000679 0 10:104380686-10:106695048
149 10 104605352 104605707 PTGES3P4 adrenal_gland -2.90e+00 0.000508 0 10:104380686-10:106695048
225 10 104613980 104624718 C10orf32 brain_anterior_cingulate_cortex_ba24 7.95e-01 0.000294 0 10:104380686-10:106695048
13528 10 105368376 105369807 RP11-416N2.4 psychencode -3.81e-01 0.000228 0 10:104380686-10:106695048
233 10 104613980 104624718 C10orf32 brain_frontal_cortex_ba9 4.96e-01 0.000283 0 10:104380686-10:106695048
265 10 104605352 104605707 PTGES3P4 pituitary 9.23e-01 0.000245 0 10:104380686-10:106695048
273 10 104209574 104220863 RP11-18I14.10 brain_cortex 7.02e-01 0.000237 0 10:104380686-10:106695048
171 10 104221149 104236802 TMEM180 pituitary 2.67e+00 0.000407 0 10:104380686-10:106695048
12397 10 106400859 107024993 SORCS3 psychencode -2.45e+00 0.002560 0 10:106695048-10:108726491
12990 10 107446080 107446809 YWHAZP5 psychencode 1.67e+00 0.000591 0 10:106695048-10:108726491
290 10 108333421 108924292 SORCS1 brain_cerebellar_hemisphere -9.68e-01 0.000266 0 10:106695048-10:108726491
288 10 106400859 107024993 SORCS3 adrenal_gland 3.79e+00 0.149000 0 10:106695048-10:108726491
291 10 108333421 108924292 SORCS1 brain_cortex 7.25e-01 0.000221 0 10:106695048-10:108726491
289 10 106400859 107024993 SORCS3 pituitary -1.79e+00 0.001030 0 10:106695048-10:108726491
434 11 3360491 3400448 ZNF195 brain_putamen_basal_ganglia 4.91e-01 0.000261 0 11:1213644-11:3665358
334 11 3659733 3663546 ART5 pituitary -1.94e+00 0.001310 0 11:1213644-11:3665358
349 11 3659733 3663546 ART5 brain_caudate_basal_ganglia -1.67e+00 0.000818 0 11:1213644-11:3665358
451 11 1942588 1959934 TNNT3 ntr.blood.rnaarr 4.69e-01 0.000246 0 11:1213644-11:3665358
444 11 3360491 3400448 ZNF195 brain_nucleus_accumbens_basal_ganglia -5.01e-01 0.000251 0 11:1213644-11:3665358
325 11 2921021 2946476 SLC22A18 brain_caudate_basal_ganglia 2.34e+00 0.001740 0 11:1213644-11:3665358
438 11 2004467 2011150 MRPL23-AS1 adrenal_gland 3.71e-01 0.000255 0 11:1213644-11:3665358
344 11 3022152 3078843 CARS brain_cerebellum -2.02e+00 0.000901 0 11:1213644-11:3665358
11598 11 3360491 3400448 ZNF195 psychencode 9.64e-01 0.000345 0 11:1213644-11:3665358
13070 11 2004467 2011150 MRPL23-AS1 psychencode 9.00e-01 0.000320 0 11:1213644-11:3665358
392 11 3379156 3400452 ZNF195 cmc.brain.rnaseq_splicing -1.13e+00 0.000373 0 11:1213644-11:3665358
393 11 2323291 2339372 TSPAN32 thyroid 9.17e-01 0.000371 0 11:1213644-11:3665358
382 11 4115937 4160106 RRM1 brain_cerebellar_hemisphere -8.23e-01 0.000414 0 11:1213644-11:3665358
412 11 3379156 3400452 ZNF195 cmc.brain.rnaseq 7.76e-01 0.000311 0 11:1213644-11:3665358
366 11 1968508 1994023 MRPL23 brain_nucleus_accumbens_basal_ganglia -1.15e+00 0.000531 0 11:1213644-11:3665358
461 11 2016406 2022700 H19 brain_cerebellum 4.68e-01 0.000237 0 11:1213644-11:3665358
417 11 3379156 3400452 ZNF195 cmc.brain.rnaseq_splicing 8.44e-01 0.000301 0 11:1213644-11:3665358
443 11 1968508 2005752 MRPL23 yfs.blood.rnaarr 5.41e-01 0.000252 0 11:1213644-11:3665358
11923 11 3022152 3078843 CARS psychencode -3.64e+00 0.051800 1 11:1213644-11:3665358
13193 11 2349979 2399222 CD81-AS1 psychencode 2.10e+00 0.001300 0 11:1213644-11:3665358
13177 11 2356362 2357006 RPL26P30 psychencode -6.59e-01 0.000257 0 11:1213644-11:3665358
294 11 3022158 3078843 CARS ntr.blood.rnaarr -3.50e+00 0.034400 1 11:1213644-11:3665358
387 11 3402191 3430208 TSSC2 brain_putamen_basal_ganglia 1.05e+00 0.000396 0 11:1213644-11:3665358
12351 11 3818954 3847601 PGAP2 psychencode -6.77e-01 0.000251 0 11:1213644-11:3665358
426 11 3402191 3430208 TSSC2 brain_caudate_basal_ganglia 3.27e-01 0.000277 0 11:1213644-11:3665358
386 11 2004467 2011150 MRPL23-AS1 brain_frontal_cortex_ba9 1.05e+00 0.000401 0 11:1213644-11:3665358
448 11 2289725 2292182 ASCL2 yfs.blood.rnaarr -3.97e-01 0.000248 0 11:1213644-11:3665358
336 11 2921021 2946476 SLC22A18 thyroid 2.14e+00 0.001190 0 11:1213644-11:3665358
467 11 1592583 1620414 KRTAP5-AS1 brain_cortex 2.90e-01 0.000233 0 11:1213644-11:3665358
482 11 1592583 1620414 KRTAP5-AS1 brain_putamen_basal_ganglia 2.42e-01 0.000228 0 11:1213644-11:3665358
479 11 3819049 3847601 PGAP2 thyroid -1.77e-01 0.000228 0 11:1213644-11:3665358
351 11 2909010 2924970 SLC22A18AS brain_frontal_cortex_ba9 1.80e+00 0.000745 0 11:1213644-11:3665358
500 11 2289725 2292182 ASCL2 whole_blood -8.46e-02 0.000221 0 11:1213644-11:3665358
329 11 2316875 2324279 C11orf21 pituitary -1.93e+00 0.001450 0 11:1213644-11:3665358
357 11 2316875 2324279 C11orf21 whole_blood -1.40e+00 0.000628 0 11:1213644-11:3665358
337 11 2397407 2418649 CD81 yfs.blood.rnaarr -1.72e+00 0.001080 0 11:1213644-11:3665358
473 11 4115937 4160106 RRM1 whole_blood -4.01e-01 0.000230 0 11:1213644-11:3665358
457 11 1651033 1652160 KRTAP5-5 brain_cerebellum -3.00e-01 0.000241 0 11:1213644-11:3665358
480 11 3848208 3862213 RHOG yfs.blood.rnaarr -2.93e-01 0.000228 0 11:1213644-11:3665358
363 11 2397407 2418649 CD81 whole_blood -1.54e+00 0.000590 0 11:1213644-11:3665358
422 11 3412010 3412982 OR7E12P thyroid 7.24e-01 0.000295 0 11:1213644-11:3665358
385 11 4115937 4160106 RRM1 brain_cerebellum -1.26e+00 0.000409 0 11:1213644-11:3665358
348 11 3105623 3106673 AC108448.2 brain_caudate_basal_ganglia 5.77e-01 0.000819 0 11:1213644-11:3665358
439 11 3402191 3430208 TSSC2 brain_cerebellar_hemisphere -4.31e-01 0.000254 0 11:1213644-11:3665358
446 11 2316875 2324279 C11orf21 brain_hippocampus -6.05e-01 0.000250 0 11:1213644-11:3665358
378 11 3105623 3106673 AC108448.2 pituitary 5.86e-01 0.000439 0 11:1213644-11:3665358
492 11 1592583 1620414 KRTAP5-AS1 brain_nucleus_accumbens_basal_ganglia 1.21e-01 0.000225 0 11:1213644-11:3665358
388 11 2004467 2011150 MRPL23-AS1 brain_putamen_basal_ganglia 1.05e+00 0.000391 0 11:1213644-11:3665358
477 11 4115937 4160106 RRM1 brain_amygdala -8.01e-02 0.000229 0 11:1213644-11:3665358
468 11 1592583 1620414 KRTAP5-AS1 whole_blood 3.09e-01 0.000233 0 11:1213644-11:3665358
13000 11 1968508 2005752 MRPL23 psychencode -1.26e+00 0.000579 0 11:1213644-11:3665358
320 11 2004467 2011150 MRPL23-AS1 brain_hippocampus 2.09e+00 0.002590 0 11:1213644-11:3665358
376 11 2397407 2418649 CD81 brain_cerebellum -1.35e+00 0.000467 0 11:1213644-11:3665358
390 11 3105623 3106673 AC108448.2 brain_nucleus_accumbens_basal_ganglia 5.31e-01 0.000383 0 11:1213644-11:3665358
427 11 3105623 3106673 AC108448.2 brain_cerebellar_hemisphere -8.29e-02 0.000273 0 11:1213644-11:3665358
494 11 1244296 1283406 MUC5B brain_cerebellum 8.49e-02 0.000224 0 11:1213644-11:3665358
458 11 1753639 1771824 IFITM10 cmc.brain.rnaseq 3.34e-01 0.000240 0 11:1213644-11:3665358
453 11 3402191 3430208 TSSC2 thyroid 4.24e-01 0.000246 0 11:1213644-11:3665358
450 11 2316875 2324279 C11orf21 thyroid -6.14e-01 0.000247 0 11:1213644-11:3665358
425 11 1411129 1483919 BRSK2 pituitary -7.54e-01 0.000285 0 11:1213644-11:3665358
12561 11 4115937 4160106 RRM1 psychencode 1.73e-01 0.000252 0 11:1213644-11:3665358
368 11 2004467 2011150 MRPL23-AS1 thyroid 1.17e+00 0.000525 0 11:1213644-11:3665358
441 11 3412010 3412982 OR7E12P pituitary -3.60e-01 0.000254 0 11:1213644-11:3665358
447 11 2397407 2418649 CD81 brain_cerebellar_hemisphere -5.96e-01 0.000249 0 11:1213644-11:3665358
455 11 2316875 2324279 C11orf21 brain_cerebellar_hemisphere -5.94e-01 0.000242 0 11:1213644-11:3665358
13323 11 2909010 2924970 SLC22A18AS psychencode 1.26e+00 0.000375 0 11:1213644-11:3665358
486 11 2397407 2418649 CD81 thyroid 2.95e-01 0.000227 0 11:1213644-11:3665358
389 11 2004467 2011150 MRPL23-AS1 brain_cortex 9.64e-01 0.000386 0 11:1213644-11:3665358
460 11 3402191 3430208 TSSC2 adrenal_gland 4.53e-02 0.000238 0 11:1213644-11:3665358
413 11 3431582 3443726 FAM86GP thyroid 7.51e-01 0.000310 0 11:1213644-11:3665358
375 11 3659733 3663546 ART5 adrenal_gland -1.05e+00 0.000483 0 11:1213644-11:3665358
11925 11 2397407 2418649 CD81 psychencode -1.82e+00 0.000834 0 11:1213644-11:3665358
488 11 1592583 1620414 KRTAP5-AS1 brain_caudate_basal_ganglia 1.75e-01 0.000226 0 11:1213644-11:3665358
440 11 1753640 1771821 IFITM10 brain_hypothalamus 4.73e-01 0.000254 0 11:1213644-11:3665358
493 11 2316875 2324279 C11orf21 brain_cerebellum -1.65e-01 0.000224 0 11:1213644-11:3665358
13224 11 1753640 1771821 IFITM10 psychencode 3.94e-01 0.000255 0 11:1213644-11:3665358
374 11 2004467 2011150 MRPL23-AS1 brain_caudate_basal_ganglia 1.14e+00 0.000484 0 11:1213644-11:3665358
495 11 2316875 2324279 C11orf21 adrenal_gland -1.50e-01 0.000223 0 11:1213644-11:3665358
476 11 3402191 3430208 TSSC2 brain_hypothalamus -1.12e-01 0.000229 0 11:1213644-11:3665358
469 11 1592583 1620414 KRTAP5-AS1 brain_substantia_nigra -2.94e-01 0.000232 0 11:1213644-11:3665358
361 11 1049880 1055284 RP13-870H17.3 pituitary -1.46e+00 0.000613 0 11:1213644-11:3665358
13274 11 1768897 1780281 RP11-295K3.1 psychencode 3.08e-01 0.000234 0 11:1213644-11:3665358
339 11 2921021 2946476 SLC22A18 whole_blood 2.11e+00 0.001000 0 11:1213644-11:3665358
353 11 1295601 1330884 TOLLIP yfs.blood.rnaarr -1.69e+00 0.000687 0 11:1213644-11:3665358
12717 11 1490687 1522477 MOB2 psychencode 1.87e-01 0.000224 0 11:1213644-11:3665358
405 11 4115937 4160106 RRM1 brain_nucleus_accumbens_basal_ganglia -8.44e-01 0.000336 0 11:1213644-11:3665358
11926 11 2316875 2324279 C11orf21 psychencode 9.55e-02 0.000237 0 11:1213644-11:3665358
321 11 2317379 2323290 C11orf21 ntr.blood.rnaarr -2.37e+00 0.002400 0 11:1213644-11:3665358
419 11 2426064 2444275 TRPM5 thyroid -6.60e-01 0.000298 0 11:1213644-11:3665358
414 11 818902 825573 PNPLA2 brain_putamen_basal_ganglia -7.35e-01 0.000310 0 11:1213644-11:3665358
11724 11 1295601 1330884 TOLLIP psychencode -3.77e-01 0.000236 0 11:1213644-11:3665358
391 11 2004467 2011150 MRPL23-AS1 pituitary 9.02e-01 0.000382 0 11:1213644-11:3665358
471 11 1592583 1620414 KRTAP5-AS1 thyroid 3.11e-01 0.000232 0 11:1213644-11:3665358
395 11 2004467 2011150 MRPL23-AS1 brain_cerebellar_hemisphere 9.64e-01 0.000362 0 11:1213644-11:3665358
377 11 2004467 2011150 MRPL23-AS1 brain_nucleus_accumbens_basal_ganglia 9.87e-01 0.000467 0 11:1213644-11:3665358
352 11 2323227 2339430 TSPAN32 yfs.blood.rnaarr -1.58e+00 0.000718 0 11:1213644-11:3665358
401 11 2004467 2011150 MRPL23-AS1 brain_anterior_cingulate_cortex_ba24 8.65e-01 0.000343 0 11:1213644-11:3665358
12659 11 3848208 3862213 RHOG psychencode -6.61e-01 0.000247 0 11:1213644-11:3665358
489 11 3108346 3187000 OSBPL5 brain_cerebellum -2.13e-01 0.000226 0 11:1213644-11:3665358
478 11 1773982 1785222 CTSD yfs.blood.rnaarr 3.38e-01 0.000228 0 11:1213644-11:3665358
409 11 4115937 4160106 RRM1 brain_hypothalamus 9.52e-01 0.000321 0 11:1213644-11:3665358
474 11 2904443 2907111 CDKN1C yfs.blood.rnaarr -1.73e-01 0.000230 0 11:1213644-11:3665358
346 11 3692313 3819022 NUP98 thyroid 1.51e+00 0.000890 0 11:1213644-11:3665358
331 11 1012821 1036706 MUC6 brain_cerebellum -1.66e+00 0.001420 0 11:1213644-11:3665358
463 11 818902 825573 PNPLA2 brain_cortex -2.25e-01 0.000235 0 11:1213644-11:3665358
295 11 2949503 2950685 PHLDA2 whole_blood 3.28e+00 0.016600 1 11:1213644-11:3665358
354 11 1244296 1283406 MUC5B brain_frontal_cortex_ba9 -1.64e+00 0.000671 0 11:1213644-11:3665358
491 11 3108346 3187000 OSBPL5 brain_cerebellar_hemisphere -1.05e-01 0.000225 0 11:1213644-11:3665358
371 11 1244296 1283406 MUC5B brain_cortex -1.41e+00 0.000492 0 11:1213644-11:3665358
483 11 1860219 1862910 TNNI2 yfs.blood.rnaarr -3.70e-01 0.000228 0 11:1213644-11:3665358
13330 11 1330999 1331937 TOLLIP-AS1 psychencode -1.31e+00 0.000604 0 11:1213644-11:3665358
442 11 3105623 3106673 AC108448.2 thyroid -7.13e-01 0.000253 0 11:1213644-11:3665358
421 11 1330999 1331937 TOLLIP-AS1 thyroid -4.37e-01 0.000296 0 11:1213644-11:3665358
435 11 1575274 1593150 DUSP8 brain_frontal_cortex_ba9 5.27e-01 0.000257 0 11:1213644-11:3665358
347 11 826144 831991 EFCAB4A yfs.blood.rnaarr 1.79e+00 0.000870 0 11:1213644-11:3665358
490 11 3402191 3430208 TSSC2 brain_cerebellum -7.29e-02 0.000225 0 11:1213644-11:3665358
472 11 3502750 3602441 RP13-726E6.2 thyroid -4.07e-01 0.000230 0 11:1213644-11:3665358
11674 11 2323227 2339430 TSPAN32 psychencode 1.69e+00 0.000809 0 11:1213644-11:3665358
12556 11 2150342 2170833 IGF2 psychencode 1.24e+00 0.000448 0 11:1213644-11:3665358
12770 11 1575274 1593150 DUSP8 psychencode 3.48e-01 0.000235 0 11:1213644-11:3665358
299 11 3875548 3876739 AC090587.5 adrenal_gland 2.48e+00 0.007180 1 11:1213644-11:3665358
342 11 925808 1012245 AP2A2 cmc.brain.rnaseq 1.65e+00 0.000929 0 11:1213644-11:3665358
13161 11 1592583 1620414 KRTAP5-AS1 psychencode 9.30e-02 0.000223 0 11:1213644-11:3665358
11621 11 3108346 3187969 OSBPL5 psychencode 1.18e+00 0.000314 0 11:1213644-11:3665358
13043 11 3402191 3430208 TSSC2 psychencode 8.26e-01 0.000300 0 11:1213644-11:3665358
416 11 2004467 2011150 MRPL23-AS1 brain_cerebellum 6.99e-01 0.000302 0 11:1213644-11:3665358
452 11 3686817 3691171 CHRNA10 brain_caudate_basal_ganglia 3.96e-01 0.000246 0 11:1213644-11:3665358
498 11 1874199 1913493 LSP1 cmc.brain.rnaseq -3.11e-02 0.000222 0 11:1213644-11:3665358
12165 11 1874200 1913497 LSP1 psychencode 4.03e-01 0.000231 0 11:1213644-11:3665358
456 11 1592583 1620414 KRTAP5-AS1 brain_cerebellar_hemisphere 4.08e-01 0.000241 0 11:1213644-11:3665358
372 11 1411128 1483919 BRSK2 cmc.brain.rnaseq_splicing 1.34e+00 0.000488 0 11:1213644-11:3665358
332 11 2909010 2924970 SLC22A18AS whole_blood 2.30e+00 0.001390 0 11:1213644-11:3665358
459 11 826144 831991 EFCAB4A brain_anterior_cingulate_cortex_ba24 5.08e-01 0.000240 0 11:1213644-11:3665358
381 11 2004467 2011150 MRPL23-AS1 whole_blood 1.01e+00 0.000415 0 11:1213644-11:3665358
424 11 3248928 3253616 MRGPRE whole_blood 7.88e-01 0.000288 0 11:1213644-11:3665358
431 11 3659733 3663546 ART5 thyroid 5.37e-01 0.000270 0 11:1213644-11:3665358
12664 11 826144 831991 EFCAB4A psychencode -1.64e+00 0.000665 0 11:1213644-11:3665358
411 11 1651033 1652160 KRTAP5-5 brain_cerebellar_hemisphere -7.30e-01 0.000312 0 11:1213644-11:3665358
466 11 1592583 1620414 KRTAP5-AS1 brain_cerebellum 3.13e-01 0.000233 0 11:1213644-11:3665358
499 11 1605572 1606513 KRTAP5-1 whole_blood -7.80e-02 0.000222 0 11:1213644-11:3665358
370 11 1940792 1959936 TNNT3 yfs.blood.rnaarr 1.39e+00 0.000520 0 11:1213644-11:3665358
12665 11 832843 839831 CD151 psychencode -2.36e+00 0.003870 1 11:1213644-11:3665358
333 11 2909010 2924970 SLC22A18AS yfs.blood.rnaarr 2.28e+00 0.001340 0 11:1213644-11:3665358
310 11 832884 839720 CD151 brain_putamen_basal_ganglia -2.53e+00 0.003900 1 11:1213644-11:3665358
313 11 1411129 1483919 BRSK2 thyroid 2.46e+00 0.003540 1 11:1213644-11:3665358
356 11 2920950 2946476 SLC22A18 cmc.brain.rnaseq 1.65e+00 0.000645 0 11:1213644-11:3665358
12711 11 2949503 2950685 PHLDA2 psychencode 2.21e+00 0.001260 0 11:1213644-11:3665358
327 11 832884 839720 CD151 brain_cerebellar_hemisphere 2.15e+00 0.001580 0 11:1213644-11:3665358
497 11 1592583 1620414 KRTAP5-AS1 brain_amygdala -7.05e-04 0.000223 0 11:1213644-11:3665358
445 11 3248928 3253616 MRGPRE thyroid 3.98e-01 0.000250 0 11:1213644-11:3665358
454 11 1330999 1331937 TOLLIP-AS1 whole_blood -2.69e-01 0.000242 0 11:1213644-11:3665358
12984 11 1618409 1619524 KRTAP5-2 psychencode -1.02e-01 0.000224 0 11:1213644-11:3665358
341 11 832884 839720 CD151 brain_substantia_nigra 1.66e+00 0.000951 0 11:1213644-11:3665358
367 11 832884 839720 CD151 brain_hippocampus 1.30e+00 0.000527 0 11:1213644-11:3665358
429 11 3875889 4114439 STIM1 whole_blood 6.00e-01 0.000272 0 11:1213644-11:3665358
359 11 1012821 1036706 MUC6 whole_blood 1.35e+00 0.000625 0 11:1213644-11:3665358
481 11 3876932 4114440 STIM1 cmc.brain.rnaseq 3.49e-01 0.000228 0 11:1213644-11:3665358
11924 11 2920951 2946476 SLC22A18 psychencode 1.36e+00 0.000446 0 11:1213644-11:3665358
328 11 2965659 3013607 NAP1L4 cmc.brain.rnaseq_splicing 2.26e+00 0.001510 0 11:1213644-11:3665358
360 11 2965667 3013607 NAP1L4 whole_blood 6.68e-01 0.000616 0 11:1213644-11:3665358
432 11 832884 839720 CD151 brain_anterior_cingulate_cortex_ba24 5.71e-01 0.000267 0 11:1213644-11:3665358
369 11 832951 838835 CD151 cmc.brain.rnaseq_splicing 1.39e+00 0.000523 0 11:1213644-11:3665358
298 11 781645 782105 AP006621.6 brain_substantia_nigra 2.82e+00 0.008050 1 11:1213644-11:3665358
302 11 781645 782105 AP006621.6 brain_frontal_cortex_ba9 2.62e+00 0.004630 1 11:1213644-11:3665358
396 11 924894 1012239 AP2A2 brain_cerebellum -8.64e-01 0.000358 0 11:1213644-11:3665358
296 11 837356 842545 POLR2L yfs.blood.rnaarr -2.89e+00 0.009740 1 11:1213644-11:3665358
355 11 2185159 2193107 TH thyroid 1.60e+00 0.000668 0 11:1213644-11:3665358
485 11 1642188 1643368 KRTAP5-4 brain_cerebellum 2.43e-01 0.000227 0 11:1213644-11:3665358
433 11 2965667 3013607 NAP1L4 yfs.blood.rnaarr -1.41e-01 0.000265 0 11:1213644-11:3665358
436 11 1049880 1055284 RP13-870H17.3 brain_cerebellum 5.23e-01 0.000256 0 11:1213644-11:3665358
309 11 781645 782105 AP006621.6 brain_cerebellum 2.54e+00 0.003900 1 11:1213644-11:3665358
300 11 2921021 2946476 SLC22A18 brain_hypothalamus 2.88e+00 0.005320 1 11:1213644-11:3665358
470 11 3248928 3253616 MRGPRE brain_cerebellar_hemisphere -1.72e-01 0.000232 0 11:1213644-11:3665358
318 11 2921021 2946476 SLC22A18 brain_cortex 2.50e+00 0.002740 0 11:1213644-11:3665358
362 11 842808 867116 TSPAN4 brain_cerebellum 1.57e+00 0.000599 0 11:1213644-11:3665358
364 11 842808 867116 TSPAN4 yfs.blood.rnaarr 1.41e+00 0.000588 0 11:1213644-11:3665358
311 11 781645 782105 AP006621.6 brain_cortex 2.49e+00 0.003630 1 11:1213644-11:3665358
314 11 781645 782105 AP006621.6 pituitary 2.40e+00 0.003200 1 11:1213644-11:3665358
12970 11 2965667 3013607 NAP1L4 psychencode -7.77e-01 0.000291 0 11:1213644-11:3665358
404 11 924894 1012239 AP2A2 yfs.blood.rnaarr 1.09e+00 0.000337 0 11:1213644-11:3665358
319 11 2921021 2946476 SLC22A18 pituitary 2.57e+00 0.002690 0 11:1213644-11:3665358
423 11 3631131 3658789 TRPC2 brain_nucleus_accumbens_basal_ganglia 8.32e-01 0.000291 0 11:1213644-11:3665358
484 11 781645 782105 AP006621.6 whole_blood 1.78e-02 0.000227 0 11:1213644-11:3665358
358 11 3108345 3186582 OSBPL5 cmc.brain.rnaseq 1.54e+00 0.000627 0 11:1213644-11:3665358
373 11 842808 867116 TSPAN4 adrenal_gland -1.09e+00 0.000486 0 11:1213644-11:3665358
12166 11 1940792 1959936 TNNT3 psychencode -2.03e+00 0.001570 0 11:1213644-11:3665358
326 11 790475 798316 SLC25A22 yfs.blood.rnaarr 2.15e+00 0.001580 0 11:1213644-11:3665358
301 11 799179 809646 PIDD brain_frontal_cortex_ba9 -2.69e+00 0.005210 1 11:1213644-11:3665358
383 11 3360491 3400448 ZNF195 adrenal_gland 7.62e-01 0.000414 0 11:1213644-11:3665358
340 11 3011093 3012563 AC131971.1 thyroid 2.04e+00 0.000967 0 11:1213644-11:3665358
308 11 799179 809646 PIDD brain_cerebellum 2.55e+00 0.004020 1 11:1213644-11:3665358
317 11 799179 809646 PIDD pituitary 2.43e+00 0.002860 0 11:1213644-11:3665358
323 11 799179 809646 PIDD adrenal_gland -2.27e+00 0.002060 0 11:1213644-11:3665358
428 11 809935 812876 RPLP2 cmc.brain.rnaseq_splicing 7.17e-01 0.000272 0 11:1213644-11:3665358
394 11 818900 825571 PNPLA2 cmc.brain.rnaseq 1.10e+00 0.000367 0 11:1213644-11:3665358
297 11 818902 825573 PNPLA2 whole_blood 2.82e+00 0.008520 1 11:1213644-11:3665358
464 11 867357 915058 CHID1 pituitary 2.25e-01 0.000235 0 11:1213644-11:3665358
380 11 867357 915058 CHID1 thyroid -1.28e+00 0.000438 0 11:1213644-11:3665358
437 11 924894 1012239 AP2A2 brain_cerebellar_hemisphere 1.65e-01 0.000256 0 11:1213644-11:3665358
324 11 818902 825573 PNPLA2 brain_cerebellum 2.23e+00 0.001840 0 11:1213644-11:3665358
305 11 777578 784297 AP006621.5 brain_hypothalamus 2.58e+00 0.004390 1 11:1213644-11:3665358
330 11 2323291 2339372 TSPAN32 whole_blood -2.00e+00 0.001420 0 11:1213644-11:3665358
343 11 3011093 3012563 AC131971.1 brain_caudate_basal_ganglia 2.01e+00 0.000913 0 11:1213644-11:3665358
335 11 4115937 4160106 RRM1 brain_anterior_cingulate_cortex_ba24 -1.94e+00 0.001310 0 11:1213644-11:3665358
496 11 1592583 1620414 KRTAP5-AS1 brain_anterior_cingulate_cortex_ba24 7.96e-02 0.000223 0 11:1213644-11:3665358
306 11 777578 784297 AP006621.5 brain_cerebellar_hemisphere 2.59e+00 0.004390 1 11:1213644-11:3665358
12695 11 2185159 2193107 TH psychencode -1.13e-01 0.000221 0 11:1213644-11:3665358
345 11 3011093 3012563 AC131971.1 pituitary 1.99e+00 0.000891 0 11:1213644-11:3665358
350 11 4115937 4160106 RRM1 adrenal_gland 1.71e+00 0.000794 0 11:1213644-11:3665358
303 11 780117 780755 AP006621.1 brain_substantia_nigra 2.61e+00 0.004470 1 11:1213644-11:3665358
397 11 3360491 3400448 ZNF195 brain_hippocampus 9.84e-01 0.000355 0 11:1213644-11:3665358
365 11 3011093 3012563 AC131971.1 brain_substantia_nigra 1.60e+00 0.000556 0 11:1213644-11:3665358
398 11 3360491 3400448 ZNF195 thyroid 9.25e-01 0.000353 0 11:1213644-11:3665358
384 11 3011093 3012563 AC131971.1 brain_cerebellar_hemisphere -5.00e-01 0.000413 0 11:1213644-11:3665358
400 11 3360491 3400448 ZNF195 brain_cerebellar_hemisphere 8.17e-01 0.000343 0 11:1213644-11:3665358
304 11 780117 780755 AP006621.1 brain_frontal_cortex_ba9 2.58e+00 0.004390 1 11:1213644-11:3665358
379 11 818902 825573 PNPLA2 brain_anterior_cingulate_cortex_ba24 1.34e+00 0.000439 0 11:1213644-11:3665358
465 11 1592583 1620414 KRTAP5-AS1 brain_hypothalamus 3.08e-01 0.000234 0 11:1213644-11:3665358
399 11 3011093 3012563 AC131971.1 brain_cerebellum 1.20e+00 0.000345 0 11:1213644-11:3665358
338 11 3108346 3187000 OSBPL5 whole_blood 1.98e+00 0.001030 0 11:1213644-11:3665358
449 11 3108346 3187000 OSBPL5 thyroid -5.20e-02 0.000248 0 11:1213644-11:3665358
403 11 3360491 3400448 ZNF195 brain_hypothalamus 8.64e-01 0.000338 0 11:1213644-11:3665358
307 11 780117 780755 AP006621.1 brain_anterior_cingulate_cortex_ba24 2.58e+00 0.004140 1 11:1213644-11:3665358
406 11 3360491 3400448 ZNF195 brain_cerebellum 8.53e-01 0.000331 0 11:1213644-11:3665358
407 11 3360491 3400448 ZNF195 yfs.blood.rnaarr 9.04e-01 0.000328 0 11:1213644-11:3665358
475 11 1592583 1620414 KRTAP5-AS1 brain_hippocampus 2.46e-01 0.000230 0 11:1213644-11:3665358
408 11 3360491 3400448 ZNF195 brain_caudate_basal_ganglia 8.32e-01 0.000326 0 11:1213644-11:3665358
410 11 3360491 3400448 ZNF195 brain_cortex 7.63e-01 0.000313 0 11:1213644-11:3665358
420 11 3108346 3187969 OSBPL5 yfs.blood.rnaarr 5.30e-01 0.000297 0 11:1213644-11:3665358
315 11 780117 780755 AP006621.1 pituitary 2.40e+00 0.003200 1 11:1213644-11:3665358
415 11 3360491 3400448 ZNF195 whole_blood 7.64e-01 0.000307 0 11:1213644-11:3665358
316 11 780117 780755 AP006621.1 brain_cortex 2.38e+00 0.002940 1 11:1213644-11:3665358
402 11 3011093 3012563 AC131971.1 brain_cortex -1.18e+00 0.000340 0 11:1213644-11:3665358
12752 11 3011093 3012563 AC131971.1 psychencode 1.68e+00 0.000552 0 11:1213644-11:3665358
418 11 3360491 3400448 ZNF195 pituitary 6.15e-01 0.000300 0 11:1213644-11:3665358
430 11 1012821 1036706 MUC6 brain_anterior_cingulate_cortex_ba24 4.05e-01 0.000271 0 11:1213644-11:3665358
487 11 1592583 1620414 KRTAP5-AS1 pituitary 1.74e-01 0.000226 0 11:1213644-11:3665358
293 11 3022151 3078681 CARS cmc.brain.rnaseq_splicing -3.70e+00 0.064200 1 11:1213644-11:3665358
312 11 2949503 2950685 PHLDA2 adrenal_gland 2.70e+00 0.003590 1 11:1213644-11:3665358
322 11 3022151 3078681 CARS cmc.brain.rnaseq_splicing 2.48e+00 0.002100 0 11:1213644-11:3665358
292 11 3022152 3078843 CARS yfs.blood.rnaarr -4.13e+00 0.334000 1 11:1213644-11:3665358
462 11 1592583 1620414 KRTAP5-AS1 brain_frontal_cortex_ba9 3.52e-01 0.000236 0 11:1213644-11:3665358
542 11 17414432 17498449 ABCC8 brain_amygdala 4.09e-01 0.000182 0 11:15743663-11:17577238
508 11 17414432 17498449 ABCC8 brain_frontal_cortex_ba9 1.98e+00 0.001080 0 11:15743663-11:17577238
506 11 17809595 18034709 SERGEF brain_anterior_cingulate_cortex_ba24 2.17e+00 0.001590 0 11:15743663-11:17577238
504 11 17809596 18034637 SERGEF cmc.brain.rnaseq_splicing -2.37e+00 0.002510 0 11:15743663-11:17577238
547 11 17373273 17398888 NCR3LG1 adrenal_gland -7.28e-02 0.000176 0 11:15743663-11:17577238
543 11 18042083 18062335 TPH1 cmc.brain.rnaseq -6.58e-02 0.000181 0 11:15743663-11:17577238
552 11 17095936 17099276 RPS13 whole_blood 2.57e-01 0.000171 0 11:15743663-11:17577238
513 11 17809596 18034637 SERGEF cmc.brain.rnaseq_splicing 1.37e+00 0.000423 0 11:15743663-11:17577238
544 11 17298285 17353070 NUCB2 cmc.brain.rnaseq_splicing -3.79e-01 0.000180 0 11:15743663-11:17577238
11928 11 17095936 17099334 RPS13 psychencode -1.99e+00 0.001220 0 11:15743663-11:17577238
515 11 17809596 18034637 SERGEF cmc.brain.rnaseq -1.26e+00 0.000369 0 11:15743663-11:17577238
554 11 17298285 17353070 NUCB2 cmc.brain.rnaseq_splicing 9.72e-02 0.000166 0 11:15743663-11:17577238
550 11 17414432 17498449 ABCC8 brain_anterior_cingulate_cortex_ba24 5.17e-02 0.000172 0 11:15743663-11:17577238
541 11 17515442 17565963 USH1C thyroid -4.20e-01 0.000183 0 11:15743663-11:17577238
12819 11 17407406 17410878 KCNJ11 psychencode -1.27e+00 0.000357 0 11:15743663-11:17577238
521 11 17809595 18034709 SERGEF brain_cortex -1.11e+00 0.000300 0 11:15743663-11:17577238
530 11 16505631 16506218 RP11-449L13.2 pituitary -7.58e-01 0.000217 0 11:15743663-11:17577238
11927 11 16634679 16778428 C11orf58 psychencode 1.24e+00 0.000343 0 11:15743663-11:17577238
514 11 17281886 17371512 NUCB2 ntr.blood.rnaarr 1.32e+00 0.000393 0 11:15743663-11:17577238
537 11 16760147 16779901 C11orf58 cmc.brain.rnaseq 5.69e-01 0.000192 0 11:15743663-11:17577238
501 11 16799842 17035990 PLEKHA7 whole_blood 2.73e+00 0.005930 0 11:15743663-11:17577238
509 11 17414432 17498449 ABCC8 brain_hippocampus 1.81e+00 0.000844 0 11:15743663-11:17577238
507 11 16799842 17035990 PLEKHA7 pituitary 2.07e+00 0.001280 0 11:15743663-11:17577238
553 11 16799842 17035990 PLEKHA7 thyroid 1.56e-01 0.000166 0 11:15743663-11:17577238
12537 11 16799842 17035990 PLEKHA7 psychencode 1.40e+00 0.000433 0 11:15743663-11:17577238
12771 11 17035545 17074583 OR7E14P psychencode 4.93e-02 0.000166 0 11:15743663-11:17577238
502 11 17035594 17074583 OR7E14P whole_blood 2.73e+00 0.005890 0 11:15743663-11:17577238
505 11 17035594 17074583 OR7E14P thyroid 2.29e+00 0.002060 0 11:15743663-11:17577238
532 11 17096201 17096291 SNORD14A thyroid -6.33e-01 0.000201 0 11:15743663-11:17577238
528 11 17373273 17398888 NCR3LG1 thyroid 7.38e-01 0.000221 0 11:15743663-11:17577238
519 11 17414432 17498449 ABCC8 brain_cerebellum 1.23e+00 0.000339 0 11:15743663-11:17577238
529 11 17402196 17405078 RP1-239B22.5 thyroid 7.18e-01 0.000217 0 11:15743663-11:17577238
534 11 17809595 18034709 SERGEF yfs.blood.rnaarr 5.53e-01 0.000195 0 11:15743663-11:17577238
549 11 17249817 17250698 RP11-452G18.2 thyroid -8.28e-02 0.000175 0 11:15743663-11:17577238
546 11 17809595 18034709 SERGEF brain_caudate_basal_ganglia 4.02e-01 0.000178 0 11:15743663-11:17577238
548 11 17096201 17096291 SNORD14A adrenal_gland -3.72e-01 0.000176 0 11:15743663-11:17577238
518 11 17035594 17074583 OR7E14P brain_cortex -1.20e+00 0.000344 0 11:15743663-11:17577238
12831 11 17373273 17398888 NCR3LG1 psychencode 8.06e-01 0.000227 0 11:15743663-11:17577238
12159 11 18039111 18063973 TPH1 psychencode 2.08e+00 0.001340 0 11:15743663-11:17577238
555 11 17096201 17096291 SNORD14A brain_cerebellar_hemisphere -1.04e-01 0.000166 0 11:15743663-11:17577238
512 11 17568920 17668697 OTOG pituitary -1.43e+00 0.000441 0 11:15743663-11:17577238
11611 11 17099277 17229530 PIK3C2A psychencode 3.06e+00 0.015300 0 11:15743663-11:17577238
540 11 17095936 17099276 RPS13 thyroid 4.88e-01 0.000185 0 11:15743663-11:17577238
517 11 17414431 17498449 ABCC8 cmc.brain.rnaseq 1.26e+00 0.000351 0 11:15743663-11:17577238
551 11 17099335 17229530 PIK3C2A brain_hypothalamus 1.30e-02 0.000171 0 11:15743663-11:17577238
12158 11 17809595 18034709 SERGEF psychencode -1.49e+00 0.000474 0 11:15743663-11:17577238
522 11 17229700 17371521 NUCB2 brain_cerebellum 1.12e+00 0.000296 0 11:15743663-11:17577238
510 11 17515442 17565963 USH1C pituitary -1.80e+00 0.000781 0 11:15743663-11:17577238
523 11 17414432 17498449 ABCC8 brain_cerebellar_hemisphere 1.06e+00 0.000281 0 11:15743663-11:17577238
535 11 17229700 17371521 NUCB2 whole_blood 5.86e-01 0.000194 0 11:15743663-11:17577238
526 11 17414432 17498449 ABCC8 thyroid -7.77e-01 0.000222 0 11:15743663-11:17577238
538 11 17414432 17498449 ABCC8 brain_caudate_basal_ganglia -3.81e-01 0.000190 0 11:15743663-11:17577238
536 11 17229700 17371521 NUCB2 thyroid 5.69e-01 0.000192 0 11:15743663-11:17577238
545 11 17229700 17371521 NUCB2 yfs.blood.rnaarr 4.27e-01 0.000180 0 11:15743663-11:17577238
531 11 18041956 18063975 TPH1 ntr.blood.rnaarr -6.62e-01 0.000206 0 11:15743663-11:17577238
520 11 17414432 17498449 ABCC8 brain_cortex 1.14e+00 0.000306 0 11:15743663-11:17577238
503 11 17402196 17405078 RP1-239B22.5 brain_amygdala -2.71e+00 0.005710 0 11:15743663-11:17577238
539 11 17716569 17719018 RP11-358H18.3 pituitary -5.02e-01 0.000185 0 11:15743663-11:17577238
11599 11 17414432 17498449 ABCC8 psychencode 4.73e-01 0.000186 0 11:15743663-11:17577238
527 11 18039111 18063973 TPH1 thyroid -7.24e-01 0.000221 0 11:15743663-11:17577238
511 11 17406795 17410878 KCNJ11 cmc.brain.rnaseq -1.71e+00 0.000672 0 11:15743663-11:17577238
11696 11 17229700 17371521 NUCB2 psychencode -1.16e+00 0.000312 0 11:15743663-11:17577238
533 11 17407406 17410878 KCNJ11 thyroid -5.66e-01 0.000195 0 11:15743663-11:17577238
11601 11 17515442 17565963 USH1C psychencode 2.49e+00 0.003560 0 11:15743663-11:17577238
525 11 17249817 17250698 RP11-452G18.2 brain_putamen_basal_ganglia 7.40e-01 0.000226 0 11:15743663-11:17577238
516 11 17414432 17498449 ABCC8 brain_putamen_basal_ganglia -1.24e+00 0.000360 0 11:15743663-11:17577238
13389 11 17402196 17405078 RP1-239B22.5 psychencode 1.17e+00 0.000318 0 11:15743663-11:17577238
524 11 17407406 17410878 KCNJ11 brain_nucleus_accumbens_basal_ganglia -8.73e-01 0.000236 0 11:15743663-11:17577238
556 11 20385231 20405329 HTATIP2 brain_substantia_nigra 2.46e+00 0.002970 0 11:19569535-11:21017138
13472 11 19732480 19734165 RP11-359E10.1 psychencode 1.02e+00 0.000262 0 11:19569535-11:21017138
562 11 20385231 20405329 HTATIP2 brain_amygdala 1.46e+00 0.000445 0 11:19569535-11:21017138
12544 11 19372271 20143144 NAV2 psychencode -1.36e-01 0.000160 0 11:19569535-11:21017138
557 11 20385231 20405329 HTATIP2 brain_cortex 2.41e+00 0.002700 0 11:19569535-11:21017138
567 11 20385231 20405329 HTATIP2 brain_nucleus_accumbens_basal_ganglia 6.72e-01 0.000200 0 11:19569535-11:21017138
566 11 20000245 20002883 NAV2-AS3 thyroid -7.56e-01 0.000211 0 11:19569535-11:21017138
13318 11 20000245 20002883 NAV2-AS3 psychencode 4.27e-01 0.000173 0 11:19569535-11:21017138
560 11 20385231 20405329 HTATIP2 whole_blood 1.91e+00 0.000917 0 11:19569535-11:21017138
11911 11 20385231 20405329 HTATIP2 psychencode 1.02e+00 0.000265 0 11:19569535-11:21017138
558 11 20385246 20405414 HTATIP2 ntr.blood.rnaarr 2.21e+00 0.001680 0 11:19569535-11:21017138
568 11 19138646 19197969 ZDHHC13 yfs.blood.rnaarr 5.22e-01 0.000181 0 11:19569535-11:21017138
559 11 20177701 20182159 DBX1 pituitary -2.19e+00 0.001640 0 11:19569535-11:21017138
564 11 20385230 20405329 HTATIP2 cmc.brain.rnaseq 1.12e+00 0.000300 0 11:19569535-11:21017138
12780 11 20409076 20530840 PRMT3 psychencode 7.21e-01 0.000203 0 11:19569535-11:21017138
563 11 20385231 20405329 HTATIP2 yfs.blood.rnaarr 1.30e+00 0.000363 0 11:19569535-11:21017138
565 11 20385231 20405329 HTATIP2 brain_caudate_basal_ganglia 7.78e-01 0.000234 0 11:19569535-11:21017138
561 11 20620946 20680831 SLC6A5 brain_cerebellum 1.59e+00 0.000546 0 11:19569535-11:21017138
569 11 20691116 21597229 NELL1 cmc.brain.rnaseq -2.28e-01 0.000162 0 11:19569535-11:21017138
579 11 28129856 28355054 METTL15 brain_amygdala -2.01e+00 0.001340 0 11:28481593-11:30141357
13409 11 30001660 30003939 RP11-215H22.1 psychencode -9.75e-01 0.000274 0 11:28481593-11:30141357
571 11 30031288 30038570 KCNA4 brain_caudate_basal_ganglia -3.49e+00 0.053100 0 11:28481593-11:30141357
583 11 30001660 30003939 RP11-215H22.1 pituitary -1.25e+00 0.000355 0 11:28481593-11:30141357
585 11 30389695 30390193 RP4-710M3.1 brain_cortex 1.10e+00 0.000296 0 11:28481593-11:30141357
582 11 30406040 30608419 MPPED2 thyroid -1.19e+00 0.000476 0 11:28481593-11:30141357
591 11 30389695 30390193 RP4-710M3.1 brain_anterior_cingulate_cortex_ba24 2.24e-01 0.000185 0 11:28481593-11:30141357
581 11 28129856 28355054 METTL15 brain_frontal_cortex_ba9 -1.84e+00 0.000992 0 11:28481593-11:30141357
586 11 28129856 28355054 METTL15 pituitary 8.10e-01 0.000267 0 11:28481593-11:30141357
588 11 28129856 28355054 METTL15 thyroid 7.38e-01 0.000235 0 11:28481593-11:30141357
574 11 30001660 30003939 RP11-215H22.1 adrenal_gland -2.87e+00 0.007920 0 11:28481593-11:30141357
590 11 30344597 30359768 C11orf46 ntr.blood.rnaarr 1.39e-01 0.000204 0 11:28481593-11:30141357
13316 11 30605677 30652055 RP5-1024C24.1 psychencode -6.18e-01 0.000283 0 11:28481593-11:30141357
570 11 30344598 30359774 ARL14EP brain_cortex 3.63e+00 0.080600 1 11:28481593-11:30141357
572 11 30344598 30359774 ARL14EP brain_hippocampus -3.14e+00 0.026400 0 11:28481593-11:30141357
575 11 30344598 30359774 ARL14EP adrenal_gland 2.78e+00 0.005780 0 11:28481593-11:30141357
11686 11 30406040 30608419 MPPED2 psychencode -5.18e-01 0.000257 0 11:28481593-11:30141357
576 11 30344598 30359774 ARL14EP brain_cerebellar_hemisphere -2.61e+00 0.004230 0 11:28481593-11:30141357
580 11 30344598 30359774 ARL14EP brain_nucleus_accumbens_basal_ganglia -1.03e+00 0.001080 0 11:28481593-11:30141357
578 11 30001660 30003939 RP11-215H22.1 brain_caudate_basal_ganglia -2.30e+00 0.004180 0 11:28481593-11:30141357
587 11 30344598 30359774 ARL14EP brain_frontal_cortex_ba9 9.08e-02 0.000241 0 11:28481593-11:30141357
577 11 30389695 30390193 RP4-710M3.1 brain_frontal_cortex_ba9 -2.66e+00 0.004210 0 11:28481593-11:30141357
584 11 30389695 30390193 RP4-710M3.1 brain_nucleus_accumbens_basal_ganglia -9.23e-01 0.000309 0 11:28481593-11:30141357
12718 11 30031288 30038570 KCNA4 psychencode -3.08e+00 0.020200 0 11:28481593-11:30141357
589 11 28129856 28355054 METTL15 brain_cerebellum -7.58e-01 0.000234 0 11:28481593-11:30141357
573 11 28129856 28355054 METTL15 brain_caudate_basal_ganglia -2.88e+00 0.010500 0 11:28481593-11:30141357
618 11 31833939 32127301 RCN1 whole_blood 2.51e+00 0.000370 0 11:30141357-11:32276901
593 11 30851916 31391357 DCDC1 adrenal_gland -1.33e+00 0.066500 0 11:30141357-11:32276901
642 11 30001660 30003939 RP11-215H22.1 brain_caudate_basal_ganglia -1.89e-02 0.000223 0 11:30141357-11:32276901
621 11 30344598 30359774 ARL14EP brain_cortex -1.43e+00 0.000312 0 11:30141357-11:32276901
592 11 31391376 31454382 DNAJC24 cmc.brain.rnaseq 4.48e+00 0.750000 1 11:30141357-11:32276901
629 11 30344598 30359774 ARL14EP pituitary 1.43e-01 0.000246 0 11:30141357-11:32276901
630 11 30344598 30359774 ARL14EP brain_frontal_cortex_ba9 -1.09e+00 0.000239 0 11:30141357-11:32276901
622 11 30065605 30105890 RP11-624D11.2 pituitary 5.87e-01 0.000310 0 11:30141357-11:32276901
596 11 30851916 31391357 DCDC1 brain_nucleus_accumbens_basal_ganglia 1.25e+00 0.008120 0 11:30141357-11:32276901
616 11 32613339 32614317 HNRNPA3P9 brain_anterior_cingulate_cortex_ba24 -7.82e-01 0.000420 0 11:30141357-11:32276901
644 11 30389695 30390193 RP4-710M3.1 brain_hypothalamus 2.99e-02 0.000222 0 11:30141357-11:32276901
609 11 30031288 30038570 KCNA4 brain_caudate_basal_ganglia -1.28e+00 0.000968 0 11:30141357-11:32276901
606 11 30900090 31128507 DCDC5 cmc.brain.rnaseq -3.18e-01 0.001380 0 11:30141357-11:32276901
12605 11 30851916 31391357 DCDC1 psychencode 8.06e-01 0.002360 0 11:30141357-11:32276901
598 11 31391376 31454382 DNAJC24 cmc.brain.rnaseq_splicing 2.55e-01 0.004860 0 11:30141357-11:32276901
623 11 32613339 32614317 HNRNPA3P9 brain_cerebellum -2.92e-01 0.000286 0 11:30141357-11:32276901
634 11 30344598 30359774 ARL14EP brain_caudate_basal_ganglia -1.61e-02 0.000231 0 11:30141357-11:32276901
626 11 31833939 32127301 RCN1 thyroid 1.54e+00 0.000269 0 11:30141357-11:32276901
610 11 30001660 30003939 RP11-215H22.1 adrenal_gland 1.55e+00 0.000798 0 11:30141357-11:32276901
635 11 31833939 32127301 RCN1 adrenal_gland -1.96e-01 0.000230 0 11:30141357-11:32276901
636 11 30344598 30359774 ARL14EP brain_cerebellar_hemisphere -4.89e-01 0.000228 0 11:30141357-11:32276901
13410 11 30001660 30003939 RP11-215H22.1 psychencode 8.06e-01 0.000361 0 11:30141357-11:32276901
595 11 30406040 30608419 MPPED2 thyroid -3.07e+00 0.014200 0 11:30141357-11:32276901
604 11 31391376 31454382 DNAJC24 cmc.brain.rnaseq_splicing -2.36e+00 0.001960 0 11:30141357-11:32276901
620 11 30031288 30038570 KCNA4 brain_cerebellum 7.55e-01 0.000329 0 11:30141357-11:32276901
611 11 32623625 32816204 CCDC73 cmc.brain.rnaseq -1.82e+00 0.000673 0 11:30141357-11:32276901
608 11 30389695 30390193 RP4-710M3.1 brain_frontal_cortex_ba9 -1.12e+00 0.001070 0 11:30141357-11:32276901
594 11 30964748 31391357 DCDC1 cmc.brain.rnaseq -1.73e+00 0.022600 0 11:30141357-11:32276901
633 11 30252563 30256808 FSHB brain_hypothalamus -4.90e-01 0.000237 0 11:30141357-11:32276901
627 11 30389695 30390193 RP4-710M3.1 brain_anterior_cingulate_cortex_ba24 -1.95e-01 0.000251 0 11:30141357-11:32276901
625 11 30065605 30105890 RP11-624D11.2 brain_nucleus_accumbens_basal_ganglia 4.35e-01 0.000278 0 11:30141357-11:32276901
602 11 30406040 30608419 MPPED2 adrenal_gland -2.08e+00 0.002070 0 11:30141357-11:32276901
617 11 30344597 30359768 C11orf46 ntr.blood.rnaarr 8.79e-01 0.000373 0 11:30141357-11:32276901
12719 11 30031288 30038570 KCNA4 psychencode 8.19e-01 0.000284 0 11:30141357-11:32276901
638 11 31833939 32127301 RCN1 yfs.blood.rnaarr -6.96e-01 0.000227 0 11:30141357-11:32276901
619 11 30065605 30105890 RP11-624D11.2 brain_caudate_basal_ganglia 7.39e-01 0.000359 0 11:30141357-11:32276901
605 11 30406040 30608419 MPPED2 yfs.blood.rnaarr 2.31e+00 0.001720 0 11:30141357-11:32276901
628 11 30389695 30390193 RP4-710M3.1 brain_caudate_basal_ganglia -2.95e-01 0.000248 0 11:30141357-11:32276901
640 11 30344598 30359774 ARL14EP whole_blood 4.00e-01 0.000225 0 11:30141357-11:32276901
624 11 30001660 30003939 RP11-215H22.1 pituitary 5.17e-01 0.000280 0 11:30141357-11:32276901
13317 11 30605677 30652055 RP5-1024C24.1 psychencode -9.66e-01 0.000511 0 11:30141357-11:32276901
632 11 30389695 30390193 RP4-710M3.1 brain_cortex -2.18e-01 0.000238 0 11:30141357-11:32276901
641 11 30344598 30359774 ARL14EP brain_cerebellum -2.20e-01 0.000224 0 11:30141357-11:32276901
643 11 30344598 30359774 ARL14EP thyroid -8.58e-02 0.000223 0 11:30141357-11:32276901
612 11 30344598 30359774 ARL14EP adrenal_gland 1.56e+00 0.000636 0 11:30141357-11:32276901
11656 11 31833939 32127301 RCN1 psychencode -9.85e-01 0.000376 0 11:30141357-11:32276901
613 11 30344598 30359774 ARL14EP brain_nucleus_accumbens_basal_ganglia -1.82e+00 0.000495 0 11:30141357-11:32276901
12604 11 31391387 31453396 DNAJC24 psychencode 4.41e+00 0.028400 0 11:30141357-11:32276901
614 11 30344598 30359774 ARL14EP brain_hippocampus 5.95e-01 0.000437 0 11:30141357-11:32276901
637 11 30389695 30390193 RP4-710M3.1 thyroid -9.35e-02 0.000228 0 11:30141357-11:32276901
601 11 32409321 32457063 WT1 brain_frontal_cortex_ba9 3.08e+00 0.002290 0 11:30141357-11:32276901
12352 11 32605344 32627808 EIF3M psychencode -1.32e+00 0.000477 0 11:30141357-11:32276901
615 11 31838113 32127272 RCN1 cmc.brain.rnaseq -1.03e+00 0.000425 0 11:30141357-11:32276901
631 11 32133595 32364955 RP1-65P5.1 thyroid 4.93e-01 0.000239 0 11:30141357-11:32276901
600 11 31453948 31531169 IMMP1L cmc.brain.rnaseq_splicing 3.89e+00 0.003370 0 11:30141357-11:32276901
639 11 30389695 30390193 RP4-710M3.1 brain_nucleus_accumbens_basal_ganglia -2.93e-01 0.000226 0 11:30141357-11:32276901
603 11 31453948 31531169 IMMP1L cmc.brain.rnaseq_splicing 3.43e+00 0.002010 0 11:30141357-11:32276901
607 11 31453948 31531169 IMMP1L cmc.brain.rnaseq_splicing -3.24e+00 0.001290 0 11:30141357-11:32276901
11687 11 30406040 30608419 MPPED2 psychencode -6.40e-01 0.000226 0 11:30141357-11:32276901
13476 11 32613339 32614317 HNRNPA3P9 psychencode -1.35e+00 0.000284 0 11:30141357-11:32276901
12350 11 31453948 31531192 IMMP1L psychencode -2.09e+00 0.004370 0 11:30141357-11:32276901
13094 11 31658875 31789501 Z83001.1 psychencode -3.84e+00 0.003570 0 11:30141357-11:32276901
597 11 30851916 31391357 DCDC1 thyroid -3.97e+00 0.006090 0 11:30141357-11:32276901
599 11 31806339 31839509 PAX6 cmc.brain.rnaseq 1.63e+00 0.003540 0 11:30141357-11:32276901
11603 11 31806340 31839509 PAX6 psychencode 4.75e+00 0.912000 1 11:30141357-11:32276901
12804 11 58346584 58388515 ZFP91 psychencode 5.88e-01 0.000240 0 11:55082693-11:58457495
12404 11 58601542 58671688 GLYATL2 psychencode -2.36e-01 0.000244 0 11:55082693-11:58457495
695 11 57295936 57298276 TIMM10 brain_frontal_cortex_ba9 -1.89e+00 0.000363 0 11:55082693-11:58457495
662 11 57471181 57479673 MED19 cmc.brain.rnaseq_splicing -3.22e+00 0.000890 0 11:55082693-11:58457495
726 11 57471182 57479795 MED19 ntr.blood.rnaarr -7.79e-01 0.000269 0 11:55082693-11:58457495
11913 11 58294344 58345693 LPXN psychencode 6.56e-01 0.000300 0 11:55082693-11:58457495
693 11 57471186 57479681 MED19 thyroid -2.53e+00 0.000395 0 11:55082693-11:58457495
696 11 57471186 57479681 MED19 brain_cerebellar_hemisphere -2.00e+00 0.000362 0 11:55082693-11:58457495
12545 11 58672871 58811000 GLYATL1 psychencode -1.92e-01 0.000250 0 11:55082693-11:58457495
13231 11 58897606 58910488 AP001258.4 psychencode -1.50e+00 0.000617 0 11:55082693-11:58457495
698 11 57471186 57479693 MED19 yfs.blood.rnaarr -3.46e-01 0.000353 0 11:55082693-11:58457495
711 11 57471186 57479681 MED19 adrenal_gland -2.06e+00 0.000308 0 11:55082693-11:58457495
715 11 57471186 57479681 MED19 brain_cerebellum -1.77e+00 0.000302 0 11:55082693-11:58457495
728 11 57471186 57479681 MED19 whole_blood -1.37e+00 0.000262 0 11:55082693-11:58457495
721 11 58910245 58922512 FAM111A brain_caudate_basal_ganglia -1.14e+00 0.000288 0 11:55082693-11:58457495
666 11 57001051 57004709 APLNR thyroid -1.26e+00 0.000715 0 11:55082693-11:58457495
12403 11 57471186 57479693 MED19 psychencode -2.64e-03 0.000338 0 11:55082693-11:58457495
670 11 57174427 57195053 SLC43A3 thyroid -5.63e-01 0.000605 0 11:55082693-11:58457495
12994 11 57480072 57508445 TMX2 psychencode -4.12e-01 0.000235 0 11:55082693-11:58457495
12208 11 57001051 57004709 APLNR psychencode -4.31e-01 0.000269 0 11:55082693-11:58457495
702 11 57295936 57298276 TIMM10 whole_blood -1.03e+00 0.000330 0 11:55082693-11:58457495
713 11 57308979 57318108 SMTNL1 brain_cerebellar_hemisphere -7.03e-01 0.000306 0 11:55082693-11:58457495
12355 11 57252007 57283259 SLC43A1 psychencode 7.77e-02 0.000610 0 11:55082693-11:58457495
661 11 56949220 56959188 LRRC55 cmc.brain.rnaseq 2.05e+00 0.000923 0 11:55082693-11:58457495
12207 11 57295936 57298276 TIMM10 psychencode -1.70e+00 0.000269 0 11:55082693-11:58457495
12993 11 57485516 57486002 AP000662.9 psychencode 1.66e+00 0.000715 0 11:55082693-11:58457495
664 11 57295935 57298232 TIMM10 cmc.brain.rnaseq 1.99e-01 0.000787 0 11:55082693-11:58457495
674 11 57174427 57195053 SLC43A3 brain_cerebellar_hemisphere 5.09e-02 0.000560 0 11:55082693-11:58457495
680 11 57295937 57298225 TIMM10 ntr.blood.rnaarr -2.38e-01 0.000514 0 11:55082693-11:58457495
724 11 57308979 57318108 SMTNL1 pituitary -1.61e-01 0.000273 0 11:55082693-11:58457495
13013 11 57308979 57318108 SMTNL1 psychencode -8.10e-01 0.000326 0 11:55082693-11:58457495
732 11 55635045 55642013 RP11-738O11.13 adrenal_gland -5.45e-01 0.000247 0 11:55082693-11:58457495
12401 11 57319129 57335757 UBE2L6 psychencode -1.19e+00 0.000286 0 11:55082693-11:58457495
649 11 57364860 57382326 SERPING1 thyroid -4.29e+00 0.016300 0 11:55082693-11:58457495
714 11 57308979 57318108 SMTNL1 brain_substantia_nigra -1.68e-01 0.000303 0 11:55082693-11:58457495
729 11 57001051 57004927 APLNR cmc.brain.rnaseq -3.18e-02 0.000256 0 11:55082693-11:58457495
658 11 57295936 57298276 TIMM10 brain_hypothalamus 5.66e-01 0.001260 0 11:55082693-11:58457495
720 11 57308979 57318108 SMTNL1 brain_cerebellum -6.12e-01 0.000290 0 11:55082693-11:58457495
679 11 57174427 57195053 SLC43A3 brain_cerebellum 1.63e-01 0.000530 0 11:55082693-11:58457495
682 11 57508825 57510510 C11orf31 thyroid -1.62e+00 0.000487 0 11:55082693-11:58457495
673 11 57252007 57283259 SLC43A1 brain_nucleus_accumbens_basal_ganglia -3.25e-02 0.000578 0 11:55082693-11:58457495
654 11 57364860 57382326 SERPING1 yfs.blood.rnaarr 3.72e+00 0.002220 0 11:55082693-11:58457495
659 11 57308979 57318108 SMTNL1 brain_frontal_cortex_ba9 -1.53e+00 0.001140 0 11:55082693-11:58457495
668 11 57295936 57298276 TIMM10 brain_anterior_cingulate_cortex_ba24 -5.84e-02 0.000636 0 11:55082693-11:58457495
686 11 57308979 57318108 SMTNL1 brain_hypothalamus -1.15e+00 0.000424 0 11:55082693-11:58457495
675 11 57228022 57244469 RTN4RL2 brain_cerebellum 1.13e-01 0.000558 0 11:55082693-11:58457495
689 11 57308979 57318108 SMTNL1 brain_amygdala 8.16e-01 0.000402 0 11:55082693-11:58457495
11914 11 58938903 58976060 DTX4 psychencode -6.42e-01 0.000342 0 11:55082693-11:58457495
646 11 57067112 57092426 TNKS1BP1 adrenal_gland 4.88e+00 0.214000 1 11:55082693-11:58457495
730 11 58938903 58975982 DTX4 pituitary 5.32e-01 0.000254 0 11:55082693-11:58457495
12354 11 57364860 57382326 SERPING1 psychencode -4.84e-01 0.000342 0 11:55082693-11:58457495
669 11 57295936 57298276 TIMM10 brain_amygdala -1.26e-01 0.000617 0 11:55082693-11:58457495
655 11 57365157 57382321 SERPING1 ntr.blood.rnaarr 3.54e+00 0.001500 0 11:55082693-11:58457495
697 11 57308979 57318108 SMTNL1 brain_hippocampus -2.60e-01 0.000359 0 11:55082693-11:58457495
699 11 57308979 57318108 SMTNL1 brain_cortex -7.53e-01 0.000353 0 11:55082693-11:58457495
701 11 58390146 58393198 CNTF thyroid 4.10e-01 0.000332 0 11:55082693-11:58457495
705 11 58601539 58611997 GLYATL2 cmc.brain.rnaseq -1.84e+00 0.000313 0 11:55082693-11:58457495
647 11 57405497 57420263 AP000662.4 thyroid -4.87e+00 0.205000 1 11:55082693-11:58457495
687 11 58601542 58671688 GLYATL2 thyroid 1.95e+00 0.000411 0 11:55082693-11:58457495
12353 11 57067112 57092426 TNKS1BP1 psychencode -1.11e+00 0.000692 0 11:55082693-11:58457495
703 11 55635045 55642013 RP11-738O11.13 pituitary -1.11e+00 0.000319 0 11:55082693-11:58457495
704 11 58601542 58671688 GLYATL2 brain_cortex -1.57e+00 0.000316 0 11:55082693-11:58457495
671 11 57295936 57298276 TIMM10 adrenal_gland -5.64e-01 0.000594 0 11:55082693-11:58457495
651 11 57093459 57103351 SSRP1 thyroid -2.76e+00 0.004220 0 11:55082693-11:58457495
676 11 57295936 57298276 TIMM10 thyroid -3.51e-01 0.000556 0 11:55082693-11:58457495
677 11 57295936 57298276 TIMM10 brain_putamen_basal_ganglia -2.00e-01 0.000552 0 11:55082693-11:58457495
656 11 57405497 57420263 AP000662.4 brain_frontal_cortex_ba9 -2.07e+00 0.001370 0 11:55082693-11:58457495
700 11 58346584 58388515 ZFP91 brain_cerebellum 1.82e+00 0.000346 0 11:55082693-11:58457495
690 11 57252007 57283259 SLC43A1 brain_cortex -5.81e-01 0.000400 0 11:55082693-11:58457495
683 11 57228022 57244469 RTN4RL2 brain_cerebellar_hemisphere -3.33e-01 0.000443 0 11:55082693-11:58457495
706 11 57308979 57318108 SMTNL1 adrenal_gland -3.76e-01 0.000312 0 11:55082693-11:58457495
678 11 57295936 57298276 TIMM10 pituitary 9.36e-03 0.000550 0 11:55082693-11:58457495
12918 11 57520715 57587018 CTNND1 psychencode -2.19e+00 0.001020 0 11:55082693-11:58457495
722 11 58601542 58671688 GLYATL2 brain_amygdala 9.96e-01 0.000282 0 11:55082693-11:58457495
13321 11 57405497 57420263 AP000662.4 psychencode -3.65e+00 0.002620 0 11:55082693-11:58457495
719 11 58294343 58345693 LPXN cmc.brain.rnaseq_splicing -4.59e-01 0.000297 0 11:55082693-11:58457495
725 11 58601542 58671688 GLYATL2 brain_anterior_cingulate_cortex_ba24 -9.16e-01 0.000272 0 11:55082693-11:58457495
727 11 57228022 57244469 RTN4RL2 brain_cortex -5.00e-02 0.000262 0 11:55082693-11:58457495
663 11 57252007 57283259 SLC43A1 adrenal_gland 2.16e-01 0.000816 0 11:55082693-11:58457495
645 11 57424488 57429340 CLP1 whole_blood 5.04e+00 0.449000 1 11:55082693-11:58457495
718 11 57252007 57283259 SLC43A1 brain_hypothalamus -1.95e+00 0.000299 0 11:55082693-11:58457495
685 11 57295936 57298276 TIMM10 brain_caudate_basal_ganglia -5.64e-01 0.000427 0 11:55082693-11:58457495
681 11 57093459 57103351 SSRP1 brain_cerebellum -1.67e+00 0.000499 0 11:55082693-11:58457495
12759 11 56949221 56959191 LRRC55 psychencode 1.72e+00 0.000745 0 11:55082693-11:58457495
735 11 58601542 58671688 GLYATL2 brain_hippocampus 4.20e-01 0.000237 0 11:55082693-11:58457495
712 11 55635045 55642013 RP11-738O11.13 brain_cortex -1.14e+00 0.000308 0 11:55082693-11:58457495
707 11 57308979 57318108 SMTNL1 brain_nucleus_accumbens_basal_ganglia -7.84e-01 0.000312 0 11:55082693-11:58457495
716 11 55635045 55642013 RP11-738O11.13 brain_anterior_cingulate_cortex_ba24 -1.05e+00 0.000301 0 11:55082693-11:58457495
688 11 57295936 57298276 TIMM10 brain_nucleus_accumbens_basal_ganglia -2.78e-01 0.000406 0 11:55082693-11:58457495
734 11 58294344 58345693 LPXN yfs.blood.rnaarr -4.00e-01 0.000242 0 11:55082693-11:58457495
652 11 57105848 57138073 P2RX3 adrenal_gland 3.14e+00 0.002720 0 11:55082693-11:58457495
692 11 55635045 55642013 RP11-738O11.13 brain_caudate_basal_ganglia -1.50e+00 0.000396 0 11:55082693-11:58457495
660 11 57154267 57158130 PRG2 thyroid -2.56e+00 0.000985 0 11:55082693-11:58457495
733 11 55635045 55642013 RP11-738O11.13 brain_frontal_cortex_ba9 -4.33e-01 0.000243 0 11:55082693-11:58457495
684 11 55635045 55642013 RP11-738O11.13 brain_hypothalamus -1.21e+00 0.000430 0 11:55082693-11:58457495
648 11 57435219 57468659 ZDHHC5 yfs.blood.rnaarr 4.74e+00 0.109000 0 11:55082693-11:58457495
708 11 57308979 57318108 SMTNL1 whole_blood -8.94e-01 0.000310 0 11:55082693-11:58457495
665 11 57295936 57298276 TIMM10 brain_hippocampus 2.77e-01 0.000760 0 11:55082693-11:58457495
723 11 57252007 57283259 SLC43A1 brain_cerebellum -1.77e+00 0.000281 0 11:55082693-11:58457495
657 11 57435219 57468659 ZDHHC5 whole_blood 3.48e+00 0.001360 0 11:55082693-11:58457495
694 11 57295936 57298276 TIMM10 brain_cerebellum -9.10e-01 0.000370 0 11:55082693-11:58457495
13319 11 55635045 55642013 RP11-738O11.13 psychencode -1.34e+00 0.000541 0 11:55082693-11:58457495
709 11 57308979 57318108 SMTNL1 brain_putamen_basal_ganglia -7.58e-01 0.000310 0 11:55082693-11:58457495
650 11 57252007 57283259 SLC43A1 brain_anterior_cingulate_cortex_ba24 2.22e+00 0.005080 0 11:55082693-11:58457495
667 11 57295936 57298276 TIMM10 brain_cortex 1.20e-01 0.000658 0 11:55082693-11:58457495
691 11 55635045 55642013 RP11-738O11.13 brain_nucleus_accumbens_basal_ganglia -1.23e+00 0.000397 0 11:55082693-11:58457495
672 11 57252007 57283259 SLC43A1 brain_cerebellar_hemisphere -4.46e-01 0.000579 0 11:55082693-11:58457495
717 11 57308979 57318108 SMTNL1 brain_caudate_basal_ganglia -2.25e-01 0.000301 0 11:55082693-11:58457495
12402 11 57435219 57468659 ZDHHC5 psychencode -3.25e+00 0.001150 0 11:55082693-11:58457495
653 11 57252007 57283259 SLC43A1 brain_frontal_cortex_ba9 -3.54e+00 0.002490 0 11:55082693-11:58457495
710 11 57308979 57318108 SMTNL1 thyroid -7.18e-01 0.000310 0 11:55082693-11:58457495
731 11 58346586 58389023 ZFP91 cmc.brain.rnaseq_splicing 3.57e-01 0.000247 0 11:55082693-11:58457495
762 11 61159159 61166335 TMEM216 brain_hippocampus -2.12e+00 0.002350 0 11:58780549-11:62223771
780 11 60618555 60623444 PTGDR2 thyroid 1.95e+00 0.000977 0 11:58780549-11:62223771
12810 11 61159159 61166335 TMEM216 psychencode -1.95e+00 0.002540 0 11:58780549-11:62223771
935 11 60869867 60895324 CD5 brain_cerebellar_hemisphere -2.25e-01 0.000249 0 11:58780549-11:62223771
749 11 60635035 60643166 ZP1 pituitary -2.72e+00 0.006980 1 11:58780549-11:62223771
792 11 61727190 61735132 FTH1 yfs.blood.rnaarr -1.02e+00 0.000658 0 11:58780549-11:62223771
11922 11 60869867 60895324 CD5 psychencode 6.26e-02 0.000278 0 11:58780549-11:62223771
765 11 60897728 60929089 VPS37C brain_substantia_nigra 2.23e+00 0.002170 0 11:58780549-11:62223771
13110 11 60970779 60980570 PGA3 psychencode -5.44e-02 0.000266 0 11:58780549-11:62223771
785 11 61159831 61166335 TMEM216 cmc.brain.rnaseq -1.34e+00 0.000799 0 11:58780549-11:62223771
767 11 61583728 61634826 FADS2 pituitary 3.23e+00 0.002110 0 11:58780549-11:62223771
900 11 62138618 62140640 RCC2P6 brain_cerebellar_hemisphere -2.10e-01 0.000261 0 11:58780549-11:62223771
869 11 61170121 61197503 CPSF7 whole_blood 4.69e-01 0.000290 0 11:58780549-11:62223771
11917 11 60048014 60076445 MS4A4A psychencode -4.27e-01 0.000338 0 11:58780549-11:62223771
831 11 60145955 60163424 MS4A7 yfs.blood.rnaarr 1.16e+00 0.000393 0 11:58780549-11:62223771
771 11 61282785 61348620 SYT7 brain_cerebellum -1.56e+00 0.001840 0 11:58780549-11:62223771
832 11 61306988 61308769 RP11-794G24.1 brain_cerebellum 1.59e+00 0.000386 0 11:58780549-11:62223771
11921 11 60704556 60720002 SLC15A3 psychencode 1.97e+00 0.001260 0 11:58780549-11:62223771
826 11 61025762 61062896 VWCE thyroid 9.95e-01 0.000416 0 11:58780549-11:62223771
835 11 61891445 61920635 INCENP brain_cortex 1.08e+00 0.000371 0 11:58780549-11:62223771
12405 11 58601542 58671688 GLYATL2 psychencode -6.42e-01 0.000311 0 11:58780549-11:62223771
798 11 61447904 61514474 DAGLA cmc.brain.rnaseq_splicing -1.92e+00 0.000589 0 11:58780549-11:62223771
863 11 60145955 60163424 MS4A7 thyroid -7.22e-01 0.000304 0 11:58780549-11:62223771
12363 11 61170121 61197503 CPSF7 psychencode 2.77e-01 0.000248 0 11:58780549-11:62223771
823 11 61447905 61513964 DAGLA brain_cerebellum 1.20e+00 0.000426 0 11:58780549-11:62223771
824 11 61447905 61513964 DAGLA brain_cerebellar_hemisphere 1.22e+00 0.000426 0 11:58780549-11:62223771
854 11 61891445 61920635 INCENP whole_blood -7.90e-01 0.000322 0 11:58780549-11:62223771
933 11 60145955 60163424 MS4A7 brain_caudate_basal_ganglia 4.50e-01 0.000249 0 11:58780549-11:62223771
11600 11 60691935 60704631 TMEM132A psychencode 2.42e+00 0.003100 1 11:58780549-11:62223771
866 11 61891445 61920635 INCENP thyroid -5.11e-01 0.000297 0 11:58780549-11:62223771
788 11 60635035 60643166 ZP1 brain_cerebellar_hemisphere 1.67e+00 0.000725 0 11:58780549-11:62223771
738 11 61560108 61564714 FEN1 cmc.brain.rnaseq 4.22e+00 0.054000 1 11:58780549-11:62223771
12446 11 62104920 62160882 ASRGL1 psychencode 6.76e-01 0.000304 0 11:58780549-11:62223771
12578 11 61560109 61564716 FEN1 psychencode 1.19e+00 0.000885 0 11:58780549-11:62223771
12546 11 58672871 58811000 GLYATL1 psychencode 1.20e+00 0.000514 0 11:58780549-11:62223771
12206 11 61447905 61514473 DAGLA psychencode -2.57e+00 0.001480 0 11:58780549-11:62223771
754 11 61567099 61596790 FADS1 brain_hippocampus -3.53e+00 0.004960 1 11:58780549-11:62223771
763 11 61159159 61166335 TMEM216 brain_cortex -1.89e+00 0.002220 0 11:58780549-11:62223771
13232 11 58897606 58910488 AP001258.4 psychencode 1.40e+00 0.000471 0 11:58780549-11:62223771
776 11 60704632 60720002 SLC15A3 whole_blood -2.06e+00 0.001390 0 11:58780549-11:62223771
12362 11 61891445 61920635 INCENP psychencode 2.17e-01 0.000248 0 11:58780549-11:62223771
781 11 61066923 61110045 DDB1 brain_substantia_nigra -2.52e+00 0.000876 0 11:58780549-11:62223771
759 11 61197514 61215001 SDHAF2 brain_cerebellar_hemisphere -1.31e+00 0.002710 1 11:58780549-11:62223771
778 11 61560275 61564716 FEN1 adrenal_gland -2.87e+00 0.001080 0 11:58780549-11:62223771
871 11 62369690 62380185 EML3 brain_putamen_basal_ganglia -3.08e-01 0.000288 0 11:58780549-11:62223771
12542 11 58910221 58922512 FAM111A psychencode -8.07e-01 0.000339 0 11:58780549-11:62223771
13329 11 59383902 59407334 AP000442.1 psychencode 2.80e-01 0.000248 0 11:58780549-11:62223771
12566 11 61197514 61215001 SDHAF2 psychencode -1.25e+00 0.000619 0 11:58780549-11:62223771
737 11 61640991 61659523 FADS3 brain_cerebellum -4.36e+00 0.100000 1 11:58780549-11:62223771
849 11 58910245 58922512 FAM111A pituitary 9.51e-01 0.000328 0 11:58780549-11:62223771
913 11 60739112 60787848 CD6 cmc.brain.rnaseq -7.20e-02 0.000255 0 11:58780549-11:62223771
757 11 61583727 61634825 FADS2 cmc.brain.rnaseq_splicing 2.27e+00 0.003650 1 11:58780549-11:62223771
13010 11 62480102 62494821 HNRNPUL2 psychencode 7.97e-01 0.000315 0 11:58780549-11:62223771
809 11 60635035 60643166 ZP1 brain_cerebellum 1.40e+00 0.000496 0 11:58780549-11:62223771
820 11 60658202 60674060 PRPF19 brain_substantia_nigra 1.25e+00 0.000433 0 11:58780549-11:62223771
12359 11 61100682 61120767 DAK psychencode -4.14e-01 0.000277 0 11:58780549-11:62223771
885 11 60163775 60185161 MS4A14 brain_amygdala 1.87e-01 0.000273 0 11:58780549-11:62223771
764 11 61159159 61166335 TMEM216 brain_anterior_cingulate_cortex_ba24 -1.89e+00 0.002220 0 11:58780549-11:62223771
911 11 62495541 62507765 TTC9C yfs.blood.rnaarr 1.90e-01 0.000257 0 11:58780549-11:62223771
853 11 59383902 59407334 AP000442.1 brain_hypothalamus -4.40e-01 0.000324 0 11:58780549-11:62223771
12549 11 60145955 60163424 MS4A7 psychencode 1.56e-02 0.000257 0 11:58780549-11:62223771
838 11 61640991 61659523 FADS3 brain_cerebellar_hemisphere -2.34e-01 0.000359 0 11:58780549-11:62223771
13037 11 61640991 61659523 FADS3 psychencode 2.16e+00 0.000411 0 11:58780549-11:62223771
912 11 60163775 60185161 MS4A14 brain_cerebellar_hemisphere -4.78e-01 0.000255 0 11:58780549-11:62223771
12128 11 61513965 61525127 RP11-467L20.10 psychencode -6.44e-01 0.000626 0 11:58780549-11:62223771
790 11 61520121 61555990 MYRF whole_blood 2.37e+00 0.000698 0 11:58780549-11:62223771
810 11 62104773 62160887 ASRGL1 cmc.brain.rnaseq_splicing -1.46e+00 0.000495 0 11:58780549-11:62223771
901 11 62369690 62380185 EML3 thyroid -3.53e-02 0.000261 0 11:58780549-11:62223771
783 11 61248592 61258403 PPP1R32 thyroid 1.38e+00 0.000852 0 11:58780549-11:62223771
768 11 61159159 61166335 TMEM216 brain_substantia_nigra -2.19e+00 0.002010 0 11:58780549-11:62223771
856 11 62104773 62160885 ASRGL1 ntr.blood.rnaarr 8.23e-01 0.000319 0 11:58780549-11:62223771
741 11 61535973 61560108 TMEM258 whole_blood 4.12e+00 0.038600 1 11:58780549-11:62223771
844 11 59480929 59573354 STX3 yfs.blood.rnaarr 4.95e-01 0.000341 0 11:58780549-11:62223771
803 11 61129472 61136975 TMEM138 cmc.brain.rnaseq_splicing 1.74e+00 0.000562 0 11:58780549-11:62223771
808 11 61248592 61258403 PPP1R32 brain_cerebellum 2.42e+00 0.000497 0 11:58780549-11:62223771
819 11 62495541 62507756 TTC9C brain_anterior_cingulate_cortex_ba24 -1.43e+00 0.000438 0 11:58780549-11:62223771
894 11 60658202 60674060 PRPF19 whole_blood 5.34e-01 0.000267 0 11:58780549-11:62223771
13315 11 62138618 62140640 RCC2P6 psychencode 7.67e-01 0.000306 0 11:58780549-11:62223771
804 11 61640997 61659006 FADS3 cmc.brain.rnaseq_splicing 2.49e+00 0.000530 0 11:58780549-11:62223771
739 11 61567096 61584529 FADS1 cmc.brain.rnaseq -4.17e+00 0.045900 1 11:58780549-11:62223771
858 11 62104773 62160887 ASRGL1 cmc.brain.rnaseq_splicing -1.32e+00 0.000314 0 11:58780549-11:62223771
830 11 60739115 60787849 CD6 brain_hypothalamus -8.64e-01 0.000401 0 11:58780549-11:62223771
916 11 60739115 60787849 CD6 brain_frontal_cortex_ba9 -6.88e-02 0.000253 0 11:58780549-11:62223771
807 11 62037627 62040628 SCGB2A2 pituitary -1.45e+00 0.000497 0 11:58780549-11:62223771
892 11 61640997 61659006 FADS3 cmc.brain.rnaseq_splicing 1.17e+00 0.000268 0 11:58780549-11:62223771
12550 11 60146003 60185161 MS4A14 psychencode -1.22e-01 0.000250 0 11:58780549-11:62223771
12209 11 61535973 61560274 TMEM258 psychencode 4.58e+00 0.251000 1 11:58780549-11:62223771
756 11 61664773 61687741 RAB3IL1 whole_blood 2.53e+00 0.004040 1 11:58780549-11:62223771
760 11 61556410 61560069 C11orf10 ntr.blood.rnaarr 3.35e+00 0.002600 0 11:58780549-11:62223771
736 11 61567099 61596790 FADS1 brain_cerebellum -4.49e+00 0.173000 1 11:58780549-11:62223771
921 11 58910245 58922512 FAM111A brain_caudate_basal_ganglia 2.70e-01 0.000251 0 11:58780549-11:62223771
924 11 60739115 60787849 CD6 brain_cerebellum 2.96e-01 0.000251 0 11:58780549-11:62223771
834 11 62360686 62369312 MTA2 adrenal_gland 1.09e+00 0.000384 0 11:58780549-11:62223771
11919 11 60658202 60674060 PRPF19 psychencode 1.52e+00 0.000585 0 11:58780549-11:62223771
923 11 60163775 60185161 MS4A14 brain_cerebellum -6.76e-02 0.000251 0 11:58780549-11:62223771
882 11 60145957 60163426 MS4A7 cmc.brain.rnaseq_splicing -3.58e-01 0.000279 0 11:58780549-11:62223771
942 11 62104920 62160882 ASRGL1 brain_nucleus_accumbens_basal_ganglia 8.45e-02 0.000248 0 11:58780549-11:62223771
12548 11 59480929 59573354 STX3 psychencode -5.01e-01 0.000270 0 11:58780549-11:62223771
821 11 58346586 58389023 ZFP91 cmc.brain.rnaseq_splicing -1.26e+00 0.000431 0 11:58780549-11:62223771
793 11 59620274 59634048 TCN1 ntr.blood.rnaarr -1.14e+00 0.000649 0 11:58780549-11:62223771
881 11 60869867 60895324 CD5 pituitary 4.28e-01 0.000282 0 11:58780549-11:62223771
917 11 60869867 60895324 CD5 thyroid -1.86e-01 0.000252 0 11:58780549-11:62223771
753 11 61583728 61634826 FADS2 thyroid 3.54e+00 0.005090 1 11:58780549-11:62223771
939 11 60674261 60677214 RP11-881M11.2 adrenal_gland -3.84e-03 0.000249 0 11:58780549-11:62223771
870 11 58975984 58980494 MPEG1 ntr.blood.rnaarr 7.20e-01 0.000289 0 11:58780549-11:62223771
876 11 60163775 60185161 MS4A14 brain_frontal_cortex_ba9 -7.74e-01 0.000285 0 11:58780549-11:62223771
930 11 60163775 60185161 MS4A14 brain_nucleus_accumbens_basal_ganglia -3.72e-01 0.000250 0 11:58780549-11:62223771
800 11 61567099 61596790 FADS1 brain_cerebellar_hemisphere -1.15e+00 0.000575 0 11:58780549-11:62223771
851 11 62515791 62521660 ZBTB3 yfs.blood.rnaarr -9.13e-01 0.000326 0 11:58780549-11:62223771
795 11 62619460 62623386 SNHG1 brain_cerebellum 1.39e+00 0.000625 0 11:58780549-11:62223771
13354 11 60674261 60677214 RP11-881M11.2 psychencode -4.72e-01 0.000287 0 11:58780549-11:62223771
855 11 61664773 61687741 RAB3IL1 yfs.blood.rnaarr 1.27e+00 0.000320 0 11:58780549-11:62223771
888 11 60163775 60185161 MS4A14 thyroid 1.80e-01 0.000270 0 11:58780549-11:62223771
843 11 60681345 60690915 TMEM109 ntr.blood.rnaarr 9.66e-01 0.000342 0 11:58780549-11:62223771
12361 11 62379194 62382592 ROM1 psychencode 2.19e+00 0.001230 0 11:58780549-11:62223771
743 11 61583728 61634826 FADS2 whole_blood 3.94e+00 0.019400 1 11:58780549-11:62223771
928 11 60739115 60787849 CD6 brain_cerebellar_hemisphere 2.69e-01 0.000250 0 11:58780549-11:62223771
12567 11 61664773 61687741 RAB3IL1 psychencode 2.12e+00 0.001440 0 11:58780549-11:62223771
929 11 60739115 60787849 CD6 brain_anterior_cingulate_cortex_ba24 2.32e-01 0.000250 0 11:58780549-11:62223771
934 11 60163775 60185161 MS4A14 pituitary -3.18e-01 0.000249 0 11:58780549-11:62223771
860 11 59495987 59573354 STX3 brain_cortex 3.70e-01 0.000308 0 11:58780549-11:62223771
784 11 59939077 59952139 MS4A6A ntr.blood.rnaarr -1.46e+00 0.000800 0 11:58780549-11:62223771
827 11 60681346 60690915 TMEM109 yfs.blood.rnaarr 1.15e+00 0.000409 0 11:58780549-11:62223771
829 11 62619460 62623386 SNHG1 brain_cortex -1.10e+00 0.000402 0 11:58780549-11:62223771
744 11 61159159 61166335 TMEM216 brain_caudate_basal_ganglia -3.89e+00 0.018700 1 11:58780549-11:62223771
740 11 61567099 61596790 FADS1 brain_frontal_cortex_ba9 -4.14e+00 0.040600 1 11:58780549-11:62223771
12360 11 61567099 61596790 FADS1 psychencode -4.44e+00 0.142000 1 11:58780549-11:62223771
878 11 62382768 62389647 B3GAT3 brain_amygdala 6.17e-01 0.000283 0 11:58780549-11:62223771
927 11 60145957 60163426 MS4A7 cmc.brain.rnaseq_splicing -9.55e-02 0.000250 0 11:58780549-11:62223771
910 11 58601539 58611997 GLYATL2 cmc.brain.rnaseq 3.54e-01 0.000257 0 11:58780549-11:62223771
770 11 61159159 61166335 TMEM216 brain_frontal_cortex_ba9 -2.99e+00 0.001860 0 11:58780549-11:62223771
884 11 58938903 58975982 DTX4 brain_cerebellum 4.79e-01 0.000277 0 11:58780549-11:62223771
941 11 60739115 60787849 CD6 brain_cortex 1.29e-01 0.000248 0 11:58780549-11:62223771
874 11 62104773 62160887 ASRGL1 cmc.brain.rnaseq 6.16e-01 0.000287 0 11:58780549-11:62223771
801 11 60704556 60720002 SLC15A3 yfs.blood.rnaarr -1.47e+00 0.000573 0 11:58780549-11:62223771
747 11 61159159 61166335 TMEM216 brain_putamen_basal_ganglia -3.72e+00 0.010500 1 11:58780549-11:62223771
872 11 58976061 58980424 MPEG1 thyroid -7.40e-01 0.000288 0 11:58780549-11:62223771
11920 11 60681346 60690915 TMEM109 psychencode -1.80e-01 0.000264 0 11:58780549-11:62223771
813 11 60681370 60690915 TMEM109 cmc.brain.rnaseq_splicing 1.31e+00 0.000483 0 11:58780549-11:62223771
815 11 61248592 61258403 PPP1R32 brain_cortex 6.17e-01 0.000460 0 11:58780549-11:62223771
908 11 62457747 62477317 BSCL2 whole_blood -4.83e-01 0.000258 0 11:58780549-11:62223771
782 11 62495541 62507756 TTC9C brain_nucleus_accumbens_basal_ganglia 1.49e+00 0.000858 0 11:58780549-11:62223771
950 11 62495541 62507756 TTC9C brain_caudate_basal_ganglia -2.97e-02 0.000247 0 11:58780549-11:62223771
951 11 62529010 62534187 POLR2G cmc.brain.rnaseq_splicing -2.89e-02 0.000247 0 11:58780549-11:62223771
812 11 62539101 62559493 TMEM223 brain_anterior_cingulate_cortex_ba24 1.18e+00 0.000488 0 11:58780549-11:62223771
859 11 62554887 62557442 TMEM179B brain_cerebellum -6.42e-01 0.000308 0 11:58780549-11:62223771
805 11 62575154 62575535 RP11-727F15.13 whole_blood 1.20e+00 0.000499 0 11:58780549-11:62223771
13456 11 62575154 62575535 RP11-727F15.13 psychencode -8.20e-01 0.000310 0 11:58780549-11:62223771
936 11 62584302 62584561 RN7SL119P thyroid 7.14e-02 0.000249 0 11:58780549-11:62223771
774 11 62599814 62609090 WDR74 brain_anterior_cingulate_cortex_ba24 1.94e+00 0.001500 0 11:58780549-11:62223771
833 11 62623483 62656355 SLC3A2 cmc.brain.rnaseq_splicing 8.13e-01 0.000385 0 11:58780549-11:62223771
12902 11 62703857 62752455 SLC22A6 psychencode -1.27e+00 0.000524 0 11:58780549-11:62223771
11614 11 60739115 60787849 CD6 psychencode -6.15e-02 0.000254 0 11:58780549-11:62223771
890 11 62623518 62656352 SLC3A2 whole_blood 1.68e-01 0.000269 0 11:58780549-11:62223771
915 11 62619460 62623386 SNHG1 brain_nucleus_accumbens_basal_ganglia 3.55e-01 0.000253 0 11:58780549-11:62223771
925 11 59495987 59573354 STX3 brain_nucleus_accumbens_basal_ganglia -3.45e-01 0.000250 0 11:58780549-11:62223771
940 11 60145957 60163424 MS4A7 ntr.blood.rnaarr 3.26e-01 0.000249 0 11:58780549-11:62223771
889 11 58938903 58975982 DTX4 thyroid -5.82e-01 0.000270 0 11:58780549-11:62223771
839 11 62369690 62380185 EML3 adrenal_gland -9.94e-01 0.000353 0 11:58780549-11:62223771
896 11 60163775 60185161 MS4A14 brain_substantia_nigra 6.92e-02 0.000262 0 11:58780549-11:62223771
914 11 60163775 60185161 MS4A14 whole_blood -5.55e-02 0.000254 0 11:58780549-11:62223771
947 11 62619460 62623386 SNHG1 adrenal_gland -1.50e-01 0.000247 0 11:58780549-11:62223771
802 11 62392298 62414104 GANAB whole_blood 1.09e+00 0.000569 0 11:58780549-11:62223771
758 11 61276272 61278482 LRRC10B brain_cerebellar_hemisphere -1.91e+00 0.003120 1 11:58780549-11:62223771
865 11 59383902 59407334 AP000442.1 pituitary -4.67e-01 0.000302 0 11:58780549-11:62223771
841 11 62104920 62160882 ASRGL1 thyroid 9.65e-01 0.000345 0 11:58780549-11:62223771
875 11 62327073 62342401 EEF1G yfs.blood.rnaarr -6.54e-01 0.000286 0 11:58780549-11:62223771
938 11 60163775 60185161 MS4A14 brain_hypothalamus -3.36e-01 0.000249 0 11:58780549-11:62223771
848 11 61717293 61732987 BEST1 yfs.blood.rnaarr 1.46e+00 0.000330 0 11:58780549-11:62223771
862 11 62382768 62389647 B3GAT3 brain_hippocampus 7.12e-01 0.000304 0 11:58780549-11:62223771
12568 11 61717293 61732987 BEST1 psychencode -2.87e+00 0.010900 1 11:58780549-11:62223771
926 11 60163874 60185137 MS4A14 ntr.blood.rnaarr -3.56e-01 0.000250 0 11:58780549-11:62223771
742 11 61567099 61596790 FADS1 thyroid -4.05e+00 0.028200 1 11:58780549-11:62223771
845 11 62104920 62160882 ASRGL1 brain_cerebellum 8.87e-01 0.000335 0 11:58780549-11:62223771
857 11 62104920 62160882 ASRGL1 whole_blood 7.50e-01 0.000315 0 11:58780549-11:62223771
769 11 59939081 59952139 MS4A6A whole_blood -1.85e+00 0.001990 0 11:58780549-11:62223771
773 11 61159159 61166335 TMEM216 brain_hypothalamus -1.73e+00 0.001810 0 11:58780549-11:62223771
847 11 60223225 60238233 MS4A1 yfs.blood.rnaarr 2.10e-01 0.000330 0 11:58780549-11:62223771
811 11 62201016 62323707 AHNAK yfs.blood.rnaarr -9.53e-01 0.000490 0 11:58780549-11:62223771
864 11 62554887 62557442 TMEM179B pituitary -8.95e-01 0.000303 0 11:58780549-11:62223771
902 11 58938903 58976060 DTX4 yfs.blood.rnaarr 3.34e-01 0.000260 0 11:58780549-11:62223771
746 11 61717355 61731935 BEST1 cmc.brain.rnaseq -2.98e+00 0.011500 1 11:58780549-11:62223771
898 11 62382768 62389647 B3GAT3 brain_frontal_cortex_ba9 -4.99e-01 0.000262 0 11:58780549-11:62223771
777 11 61159159 61166335 TMEM216 thyroid -1.66e+00 0.001240 0 11:58780549-11:62223771
12960 11 61276272 61278482 LRRC10B psychencode -2.66e+00 0.015200 1 11:58780549-11:62223771
818 11 60260251 60274903 MS4A12 thyroid 1.11e+00 0.000443 0 11:58780549-11:62223771
814 11 60609544 60618238 CCDC86 brain_putamen_basal_ganglia -1.26e+00 0.000479 0 11:58780549-11:62223771
11915 11 58938903 58976060 DTX4 psychencode -2.83e-01 0.000252 0 11:58780549-11:62223771
789 11 59939081 59952139 MS4A6A yfs.blood.rnaarr -1.45e+00 0.000723 0 11:58780549-11:62223771
750 11 61159159 61166335 TMEM216 adrenal_gland -2.39e+00 0.006660 1 11:58780549-11:62223771
791 11 58294344 58345693 LPXN yfs.blood.rnaarr -1.66e+00 0.000683 0 11:58780549-11:62223771
944 11 60145957 60185228 MS4A14 cmc.brain.rnaseq -1.53e-01 0.000248 0 11:58780549-11:62223771
846 11 58294343 58345693 LPXN cmc.brain.rnaseq_splicing -9.83e-01 0.000335 0 11:58780549-11:62223771
755 11 60869867 60895324 CD5 yfs.blood.rnaarr 2.94e+00 0.004570 1 11:58780549-11:62223771
766 11 60691912 60704631 TMEM132A cmc.brain.rnaseq 2.28e+00 0.002160 0 11:58780549-11:62223771
891 11 60163775 60185161 MS4A14 brain_hippocampus 9.33e-02 0.000268 0 11:58780549-11:62223771
867 11 62104920 62160882 ASRGL1 brain_hippocampus 6.65e-01 0.000292 0 11:58780549-11:62223771
946 11 62557786 62559486 TMEM223 cmc.brain.rnaseq 1.34e-01 0.000247 0 11:58780549-11:62223771
886 11 59383902 59407334 AP000442.1 brain_cortex -1.40e-01 0.000272 0 11:58780549-11:62223771
897 11 58975983 58980424 MPEG1 yfs.blood.rnaarr -3.69e-01 0.000262 0 11:58780549-11:62223771
12447 11 62430287 62439727 C11orf48 psychencode -1.01e+00 0.000392 0 11:58780549-11:62223771
828 11 62574369 62599560 STX5 brain_amygdala 1.10e+00 0.000402 0 11:58780549-11:62223771
905 11 62104920 62160882 ASRGL1 brain_cerebellar_hemisphere 2.60e-01 0.000259 0 11:58780549-11:62223771
13337 11 62619460 62623386 SNHG1 psychencode -6.90e-01 0.000306 0 11:58780549-11:62223771
822 11 58601542 58671688 GLYATL2 brain_anterior_cingulate_cortex_ba24 -1.22e+00 0.000428 0 11:58780549-11:62223771
775 11 61717355 61731935 BEST1 cmc.brain.rnaseq_splicing 2.21e+00 0.001430 0 11:58780549-11:62223771
909 11 60869867 60895324 CD5 brain_amygdala -2.78e-02 0.000258 0 11:58780549-11:62223771
794 11 60869867 60895324 CD5 brain_putamen_basal_ganglia 1.38e+00 0.000629 0 11:58780549-11:62223771
825 11 58601542 58671688 GLYATL2 brain_amygdala 1.22e+00 0.000421 0 11:58780549-11:62223771
796 11 60048014 60076445 MS4A4A brain_anterior_cingulate_cortex_ba24 -1.03e+00 0.000609 0 11:58780549-11:62223771
868 11 58601542 58671688 GLYATL2 brain_cortex -5.14e-01 0.000291 0 11:58780549-11:62223771
816 11 60609544 60618238 CCDC86 brain_caudate_basal_ganglia -1.44e+00 0.000459 0 11:58780549-11:62223771
861 11 62369690 62380185 EML3 brain_caudate_basal_ganglia -6.91e-01 0.000305 0 11:58780549-11:62223771
751 11 61282785 61348620 SYT7 brain_cerebellar_hemisphere -2.70e+00 0.006110 1 11:58780549-11:62223771
11916 11 59341871 59383617 OSBP psychencode -4.33e-01 0.000279 0 11:58780549-11:62223771
932 11 62382768 62389647 B3GAT3 brain_nucleus_accumbens_basal_ganglia -1.29e-01 0.000249 0 11:58780549-11:62223771
931 11 62392297 62414198 GANAB cmc.brain.rnaseq 5.03e-02 0.000249 0 11:58780549-11:62223771
850 11 59520488 59522448 AP000640.10 whole_blood -1.06e+00 0.000327 0 11:58780549-11:62223771
797 11 60048014 60076445 MS4A4A whole_blood -1.49e+00 0.000600 0 11:58780549-11:62223771
752 11 61159159 61166335 TMEM216 brain_amygdala -2.46e+00 0.005410 1 11:58780549-11:62223771
787 11 62172575 62190667 SCGB1A1 brain_cortex 1.64e+00 0.000725 0 11:58780549-11:62223771
920 11 60609544 60618554 CCDC86 yfs.blood.rnaarr 8.36e-02 0.000251 0 11:58780549-11:62223771
842 11 60691912 60704631 TMEM132A cmc.brain.rnaseq_splicing 1.06e+00 0.000345 0 11:58780549-11:62223771
949 11 62430287 62438755 C11orf48 thyroid 1.36e-01 0.000247 0 11:58780549-11:62223771
919 11 58938903 58975982 DTX4 pituitary 2.52e-01 0.000252 0 11:58780549-11:62223771
907 11 62104920 62160882 ASRGL1 brain_anterior_cingulate_cortex_ba24 3.30e-01 0.000259 0 11:58780549-11:62223771
899 11 60163775 60185161 MS4A14 brain_cortex 9.36e-02 0.000261 0 11:58780549-11:62223771
817 11 60691935 60704555 TMEM132A thyroid -1.28e+00 0.000451 0 11:58780549-11:62223771
786 11 62392298 62414104 GANAB brain_hypothalamus -1.85e+00 0.000747 0 11:58780549-11:62223771
922 11 62104920 62160882 ASRGL1 brain_cortex -1.38e-01 0.000251 0 11:58780549-11:62223771
836 11 60048014 60076445 MS4A4A thyroid -6.96e-01 0.000367 0 11:58780549-11:62223771
779 11 62623483 62656355 SLC3A2 cmc.brain.rnaseq_splicing 2.06e+00 0.001010 0 11:58780549-11:62223771
879 11 58601542 58671688 GLYATL2 brain_hippocampus 5.78e-01 0.000282 0 11:58780549-11:62223771
761 11 61159159 61166335 TMEM216 pituitary -1.87e+00 0.002460 0 11:58780549-11:62223771
880 11 58601542 58671688 GLYATL2 brain_frontal_cortex_ba9 -7.50e-01 0.000282 0 11:58780549-11:62223771
748 11 61567099 61596790 FADS1 yfs.blood.rnaarr 3.68e+00 0.007640 1 11:58780549-11:62223771
895 11 61976140 61981408 SCGB2A1 thyroid -4.83e-01 0.000266 0 11:58780549-11:62223771
903 11 58601542 58671688 GLYATL2 thyroid 3.56e-01 0.000260 0 11:58780549-11:62223771
877 11 62104920 62160882 ASRGL1 brain_frontal_cortex_ba9 4.17e-01 0.000284 0 11:58780549-11:62223771
937 11 60146003 60185161 MS4A14 yfs.blood.rnaarr -2.01e-01 0.000249 0 11:58780549-11:62223771
948 11 62172575 62190667 SCGB1A1 brain_cerebellar_hemisphere 5.43e-02 0.000247 0 11:58780549-11:62223771
852 11 62009682 62012280 SCGB1D2 brain_anterior_cingulate_cortex_ba24 -1.56e+00 0.000325 0 11:58780549-11:62223771
904 11 60691935 60704555 TMEM132A brain_anterior_cingulate_cortex_ba24 2.39e-01 0.000260 0 11:58780549-11:62223771
918 11 60163775 60185161 MS4A14 brain_caudate_basal_ganglia -1.70e-01 0.000252 0 11:58780549-11:62223771
873 11 62457752 62458572 BSCL2 ntr.blood.rnaarr 6.82e-01 0.000288 0 11:58780549-11:62223771
906 11 60163775 60185161 MS4A14 adrenal_gland 4.86e-02 0.000259 0 11:58780549-11:62223771
943 11 62201016 62323707 AHNAK whole_blood 1.67e-01 0.000248 0 11:58780549-11:62223771
745 11 61583697 61634820 FADS2 ntr.blood.rnaarr 3.80e+00 0.012200 1 11:58780549-11:62223771
799 11 62623483 62656355 SLC3A2 cmc.brain.rnaseq_splicing 1.49e+00 0.000586 0 11:58780549-11:62223771
837 11 59383902 59407334 AP000442.1 thyroid 1.13e+00 0.000366 0 11:58780549-11:62223771
12129 11 62009682 62012280 SCGB1D2 psychencode 2.52e-01 0.000275 0 11:58780549-11:62223771
840 11 62495541 62507756 TTC9C pituitary 6.79e-01 0.000350 0 11:58780549-11:62223771
11918 11 60609544 60618554 CCDC86 psychencode -1.67e+00 0.000784 0 11:58780549-11:62223771
806 11 62457747 62477317 BSCL2 yfs.blood.rnaarr -1.09e+00 0.000498 0 11:58780549-11:62223771
772 11 60618555 60623444 PTGDR2 brain_cerebellar_hemisphere 2.20e+00 0.001830 0 11:58780549-11:62223771
887 11 60048014 60076445 MS4A4A brain_cortex 3.75e-01 0.000271 0 11:58780549-11:62223771
945 11 58346584 58388515 ZFP91 brain_cerebellum 1.14e-02 0.000248 0 11:58780549-11:62223771
13011 11 62432781 62435968 METTL12 psychencode 1.17e+00 0.000499 0 11:58780549-11:62223771
883 11 62104920 62160882 ASRGL1 brain_hypothalamus 5.63e-01 0.000277 0 11:58780549-11:62223771
893 11 62104920 62160882 ASRGL1 yfs.blood.rnaarr 4.57e-01 0.000268 0 11:58780549-11:62223771
13331 11 89519113 89521006 RP11-358N4.3 psychencode -1.97e+00 0.001020 0 11:87430571-11:89208936
964 11 87846410 87908635 RAB38 whole_blood 3.58e-01 0.000175 0 11:87430571-11:89208936
12535 11 86748886 87034800 TMEM135 psychencode -9.96e-01 0.000262 0 11:87430571-11:89208936
12093 11 87846410 87908635 RAB38 psychencode 1.50e+00 0.000496 0 11:87430571-11:89208936
966 11 88026760 88070955 CTSC brain_cerebellar_hemisphere -2.35e-01 0.000167 0 11:87430571-11:89208936
962 11 86748885 87039876 TMEM135 cmc.brain.rnaseq 5.61e-01 0.000189 0 11:87430571-11:89208936
13320 11 87040449 87041094 PSMA2P1 psychencode -6.59e-01 0.000200 0 11:87430571-11:89208936
959 11 87846410 87908635 RAB38 yfs.blood.rnaarr -1.23e+00 0.000339 0 11:87430571-11:89208936
960 11 88026759 88070941 CTSC cmc.brain.rnaseq -9.41e-01 0.000246 0 11:87430571-11:89208936
963 11 88026759 88070941 CTSC ntr.blood.rnaarr -4.61e-01 0.000181 0 11:87430571-11:89208936
965 11 88026760 88070955 CTSC thyroid 1.52e-01 0.000170 0 11:87430571-11:89208936
967 11 88026760 88070955 CTSC whole_blood -2.03e-01 0.000166 0 11:87430571-11:89208936
968 11 88026760 88070955 CTSC yfs.blood.rnaarr 6.06e-02 0.000163 0 11:87430571-11:89208936
11912 11 88026760 88070955 CTSC psychencode -1.16e+00 0.000309 0 11:87430571-11:89208936
952 11 88237743 88796816 GRM5 cmc.brain.rnaseq_splicing -3.15e+00 0.019400 0 11:87430571-11:89208936
953 11 89057521 89322779 NOX4 cmc.brain.rnaseq_splicing -3.14e+00 0.018600 0 11:87430571-11:89208936
957 11 89057521 89322779 NOX4 cmc.brain.rnaseq_splicing 2.11e+00 0.001360 0 11:87430571-11:89208936
958 11 89057521 89322779 NOX4 cmc.brain.rnaseq 1.90e+00 0.000923 0 11:87430571-11:89208936
11750 11 89057524 89322779 NOX4 psychencode 1.94e-02 0.000166 0 11:87430571-11:89208936
954 11 89519113 89521006 RP11-358N4.3 pituitary -2.68e+00 0.005040 0 11:87430571-11:89208936
955 11 89519113 89521006 RP11-358N4.3 brain_hypothalamus -2.16e+00 0.001490 0 11:87430571-11:89208936
956 11 89519113 89521006 RP11-358N4.3 brain_nucleus_accumbens_basal_ganglia -2.16e+00 0.001470 0 11:87430571-11:89208936
969 11 87034801 87035401 RP11-777F6.3 brain_frontal_cortex_ba9 8.40e-02 0.000163 0 11:87430571-11:89208936
961 11 87846414 87908635 RAB38 ntr.blood.rnaarr -6.97e-01 0.000206 0 11:87430571-11:89208936
987 11 104864962 104893895 CASP5 whole_blood -7.84e-02 0.000333 0 11:103959760-11:104873284
972 11 103777913 104035027 PDGFD cmc.brain.rnaseq 3.68e+00 0.067800 0 11:103959760-11:104873284
973 11 104896170 104972158 CASP1 yfs.blood.rnaarr -3.06e+00 0.011300 0 11:103959760-11:104873284
974 11 104896234 104905977 CASP1 ntr.blood.rnaarr 3.11e+00 0.010700 0 11:103959760-11:104873284
981 11 103777914 104035107 PDGFD brain_hippocampus -4.80e-01 0.001640 0 11:103959760-11:104873284
979 11 104912052 104942241 CARD16 ntr.blood.rnaarr 2.31e+00 0.002300 0 11:103959760-11:104873284
978 11 104912053 104916103 CARD16 brain_cerebellum -2.71e+00 0.003490 0 11:103959760-11:104873284
985 11 103777914 104035107 PDGFD thyroid -1.47e+00 0.000436 0 11:103959760-11:104873284
12950 11 104912053 104972158 CARD16 psychencode 2.27e+00 0.001400 0 11:103959760-11:104873284
984 11 105008448 105010453 CARD18 brain_nucleus_accumbens_basal_ganglia -1.43e+00 0.000577 0 11:103959760-11:104873284
988 11 103777914 104035107 PDGFD yfs.blood.rnaarr 3.67e-01 0.000260 0 11:103959760-11:104873284
12606 11 103777914 104035107 PDGFD psychencode 3.05e+00 0.008850 0 11:103959760-11:104873284
982 11 104316596 104480049 RP11-886D15.1 brain_cerebellum -2.04e+00 0.000938 0 11:103959760-11:104873284
983 11 104316596 104480049 RP11-886D15.1 brain_substantia_nigra -1.94e+00 0.000816 0 11:103959760-11:104873284
986 11 104316596 104480049 RP11-886D15.1 brain_cerebellar_hemisphere -5.62e-01 0.000414 0 11:103959760-11:104873284
13349 11 104316596 104480049 RP11-886D15.1 psychencode 2.32e+00 0.003220 0 11:103959760-11:104873284
975 11 104756445 104769397 CASP12 brain_anterior_cingulate_cortex_ba24 3.09e+00 0.009720 0 11:103959760-11:104873284
980 11 104772276 104789800 RP11-693N9.2 thyroid 2.50e+00 0.002240 0 11:103959760-11:104873284
13171 11 104772276 104789800 RP11-693N9.2 psychencode 1.93e+00 0.000716 0 11:103959760-11:104873284
976 11 104813592 104840163 CASP4 ntr.blood.rnaarr 2.92e+00 0.006200 0 11:103959760-11:104873284
12877 11 104813593 104840163 CASP4 psychencode -8.49e-01 0.000331 0 11:103959760-11:104873284
12951 11 104756445 104769397 CASP12 psychencode -1.53e+00 0.000572 0 11:103959760-11:104873284
970 11 104772276 104789800 RP11-693N9.2 brain_hypothalamus 4.02e+00 0.228000 1 11:103959760-11:104873284
971 11 104772276 104789800 RP11-693N9.2 brain_cerebellar_hemisphere 3.86e+00 0.126000 1 11:103959760-11:104873284
977 11 104772276 104789800 RP11-693N9.2 whole_blood 2.76e+00 0.004000 0 11:103959760-11:104873284
994 11 113258513 113271140 ANKK1 brain_cortex -3.71e+00 0.022500 0 11:112459488-11:114256749
1001 11 113185251 113254266 TTC12 brain_frontal_cortex_ba9 2.24e+00 0.001420 0 11:112459488-11:114256749
1002 11 113185251 113254266 TTC12 brain_substantia_nigra 2.38e+00 0.001140 0 11:112459488-11:114256749
1019 11 113659953 113662088 ATF4P4 brain_cortex 1.33e+00 0.000350 0 11:112459488-11:114256749
1003 11 113185251 113254266 TTC12 brain_amygdala 2.24e+00 0.001060 0 11:112459488-11:114256749
11650 11 113668596 113746292 USP28 psychencode -2.22e+00 0.000364 0 11:112459488-11:114256749
1007 11 113185251 113254266 TTC12 brain_anterior_cingulate_cortex_ba24 2.13e+00 0.000557 0 11:112459488-11:114256749
995 11 113258513 113271140 ANKK1 yfs.blood.rnaarr -3.50e+00 0.017900 0 11:112459488-11:114256749
1051 11 113185251 113254266 TTC12 whole_blood 3.06e-01 0.000207 0 11:112459488-11:114256749
1012 11 113185251 113254266 TTC12 brain_cerebellar_hemisphere 1.79e+00 0.000465 0 11:112459488-11:114256749
1009 11 113239299 113239839 RP11-159N11.4 brain_hypothalamus 2.90e+00 0.000542 0 11:112459488-11:114256749
1010 11 113239299 113239839 RP11-159N11.4 whole_blood 1.11e+00 0.000523 0 11:112459488-11:114256749
1005 11 113239299 113239839 RP11-159N11.4 brain_frontal_cortex_ba9 1.87e+00 0.000739 0 11:112459488-11:114256749
12948 11 111957497 111990353 SDHD psychencode -3.27e+00 0.005500 0 11:112459488-11:114256749
992 11 112046190 112095422 BCO2 adrenal_gland -3.90e+00 0.084800 0 11:112459488-11:114256749
1014 11 113185251 113254266 TTC12 brain_caudate_basal_ganglia 1.84e+00 0.000400 0 11:112459488-11:114256749
1016 11 113185251 113254266 TTC12 brain_nucleus_accumbens_basal_ganglia 1.33e+00 0.000369 0 11:112459488-11:114256749
1048 11 113558267 113577068 TMPRSS5 cmc.brain.rnaseq -1.62e+00 0.000209 0 11:112459488-11:114256749
1004 11 112046190 112095422 BCO2 brain_hippocampus 2.24e+00 0.000860 0 11:112459488-11:114256749
1052 11 113775399 113817287 HTR3B brain_frontal_cortex_ba9 1.30e+00 0.000196 0 11:112459488-11:114256749
1013 11 112046190 112095422 BCO2 brain_anterior_cingulate_cortex_ba24 -8.71e-01 0.000400 0 11:112459488-11:114256749
12356 11 113185251 113254266 TTC12 psychencode -7.97e-01 0.000434 0 11:112459488-11:114256749
1031 11 113185251 113254266 TTC12 brain_cerebellum 2.89e-01 0.000273 0 11:112459488-11:114256749
1017 11 113185251 113254266 TTC12 brain_hypothalamus 1.41e+00 0.000359 0 11:112459488-11:114256749
999 11 113280318 113346111 DRD2 brain_cortex -1.09e+00 0.001750 0 11:112459488-11:114256749
1023 11 112047088 112095422 BCO2 cmc.brain.rnaseq -1.08e+00 0.000320 0 11:112459488-11:114256749
998 11 112097088 112140678 PTS pituitary -2.37e+00 0.001900 0 11:112459488-11:114256749
13266 11 112141472 112233257 RP11-356J5.12 psychencode -1.36e-01 0.000213 0 11:112459488-11:114256749
1015 11 112263841 112492452 RP11-65M17.3 brain_amygdala -1.02e+00 0.000376 0 11:112459488-11:114256749
13238 11 112830002 112834182 RP11-629G13.1 psychencode -1.80e+00 0.000216 0 11:112459488-11:114256749
990 11 112832022 113149158 NCAM1 brain_putamen_basal_ganglia -3.90e+00 0.592000 1 11:112459488-11:114256749
996 11 112832022 113149158 NCAM1 thyroid 2.56e+00 0.002810 0 11:112459488-11:114256749
1032 11 112832022 113149158 NCAM1 adrenal_gland 1.51e+00 0.000270 0 11:112459488-11:114256749
1000 11 113140254 113144623 NCAM1-AS1 thyroid 2.30e+00 0.001680 0 11:112459488-11:114256749
1050 11 113149159 113185159 RP11-839D17.3 thyroid 7.72e-01 0.000208 0 11:112459488-11:114256749
13328 11 113149159 113185159 RP11-839D17.3 psychencode -1.98e+00 0.000851 0 11:112459488-11:114256749
1020 11 113185250 113244018 TTC12 cmc.brain.rnaseq -1.10e+00 0.000340 0 11:112459488-11:114256749
1038 11 113185251 113254266 TTC12 adrenal_gland 1.25e+00 0.000231 0 11:112459488-11:114256749
1043 11 113185251 113254266 TTC12 thyroid 1.09e+00 0.000219 0 11:112459488-11:114256749
13469 11 113239200 113239839 RP11-159N11.4 psychencode -3.44e+00 0.002700 0 11:112459488-11:114256749
1006 11 113239299 113239839 RP11-159N11.4 brain_caudate_basal_ganglia 1.83e+00 0.000646 0 11:112459488-11:114256749
1027 11 113239299 113239839 RP11-159N11.4 brain_nucleus_accumbens_basal_ganglia 1.02e+00 0.000289 0 11:112459488-11:114256749
1029 11 113239299 113239839 RP11-159N11.4 brain_cerebellum 1.11e+00 0.000284 0 11:112459488-11:114256749
1045 11 113239299 113239839 RP11-159N11.4 pituitary 8.95e-01 0.000211 0 11:112459488-11:114256749
1053 11 113239299 113239839 RP11-159N11.4 adrenal_gland 6.69e-01 0.000192 0 11:112459488-11:114256749
991 11 113258513 113271140 ANKK1 thyroid -3.75e+00 0.148000 1 11:112459488-11:114256749
993 11 113258513 113271140 ANKK1 whole_blood -3.74e+00 0.067400 0 11:112459488-11:114256749
1008 11 113280318 113346111 DRD2 brain_cerebellum -2.80e+00 0.000556 0 11:112459488-11:114256749
12357 11 113280318 113346413 DRD2 psychencode -6.69e-01 0.003040 0 11:112459488-11:114256749
1034 11 113558272 113577095 TMPRSS5 brain_caudate_basal_ganglia -2.13e+00 0.000252 0 11:112459488-11:114256749
1036 11 113558272 113577095 TMPRSS5 brain_anterior_cingulate_cortex_ba24 -1.80e+00 0.000239 0 11:112459488-11:114256749
1037 11 113558272 113577095 TMPRSS5 brain_hippocampus -2.00e+00 0.000237 0 11:112459488-11:114256749
1044 11 113558272 113577095 TMPRSS5 brain_cortex -1.22e+00 0.000215 0 11:112459488-11:114256749
1046 11 113558272 113577095 TMPRSS5 brain_putamen_basal_ganglia -1.65e+00 0.000210 0 11:112459488-11:114256749
1047 11 113558272 113577095 TMPRSS5 brain_substantia_nigra -1.32e+00 0.000209 0 11:112459488-11:114256749
1049 11 113558272 113577095 TMPRSS5 brain_frontal_cortex_ba9 -1.60e+00 0.000208 0 11:112459488-11:114256749
12536 11 113558272 113577095 TMPRSS5 psychencode -1.72e+00 0.000212 0 11:112459488-11:114256749
11749 11 113603909 113644533 ZW10 psychencode 4.95e-01 0.000186 0 11:112459488-11:114256749
11716 11 114310108 114321001 REXO2 psychencode 3.95e-02 0.000192 0 11:112459488-11:114256749
13351 11 114323786 114324845 RP11-212D19.5 psychencode -1.02e+00 0.000325 0 11:112459488-11:114256749
12947 11 114549108 114579362 NXPE2 psychencode 9.83e-01 0.000275 0 11:112459488-11:114256749
1040 11 113558272 113577095 TMPRSS5 brain_amygdala -1.97e+00 0.000228 0 11:112459488-11:114256749
1011 11 113239299 113239839 RP11-159N11.4 brain_substantia_nigra -8.71e-01 0.000475 0 11:112459488-11:114256749
1022 11 113558272 113577095 TMPRSS5 brain_cerebellum -2.00e+00 0.000328 0 11:112459488-11:114256749
1035 11 113185323 113237108 TTC12 ntr.blood.rnaarr -1.64e-02 0.000250 0 11:112459488-11:114256749
997 11 113258513 113271140 ANKK1 adrenal_gland -3.90e-01 0.002210 0 11:112459488-11:114256749
1030 11 113558272 113577095 TMPRSS5 pituitary 9.87e-02 0.000279 0 11:112459488-11:114256749
1018 11 113185251 113254266 TTC12 yfs.blood.rnaarr -4.02e-01 0.000351 0 11:112459488-11:114256749
1026 11 112046190 112095422 BCO2 brain_cortex -5.05e-01 0.000291 0 11:112459488-11:114256749
1021 11 113185251 113254266 TTC12 brain_hippocampus 2.03e+00 0.000340 0 11:112459488-11:114256749
12358 11 113775399 113817287 HTR3B psychencode 2.07e+00 0.000259 0 11:112459488-11:114256749
1033 11 113239299 113239839 RP11-159N11.4 brain_cortex -3.84e-01 0.000252 0 11:112459488-11:114256749
12538 11 113845603 113861035 HTR3A psychencode -1.73e+00 0.000225 0 11:112459488-11:114256749
1041 11 113558272 113577095 TMPRSS5 brain_hypothalamus -1.91e+00 0.000223 0 11:112459488-11:114256749
12595 11 113258513 113271140 ANKK1 psychencode -2.70e+00 0.001320 0 11:112459488-11:114256749
989 11 113280318 113346111 DRD2 brain_frontal_cortex_ba9 -4.97e+00 0.967000 1 11:112459488-11:114256749
12895 11 112046190 112095422 BCO2 psychencode -1.11e+00 0.000230 0 11:112459488-11:114256749
1024 11 113185251 113254266 TTC12 pituitary 1.57e+00 0.000312 0 11:112459488-11:114256749
1054 11 114310108 114321001 REXO2 brain_cerebellum -4.27e-01 0.000181 0 11:112459488-11:114256749
1042 11 113558272 113577095 TMPRSS5 brain_nucleus_accumbens_basal_ganglia -1.80e+00 0.000220 0 11:112459488-11:114256749
1039 11 113239299 113239839 RP11-159N11.4 thyroid 4.38e-01 0.000228 0 11:112459488-11:114256749
1025 11 113185251 113254266 TTC12 brain_cortex 1.15e+00 0.000301 0 11:112459488-11:114256749
1028 11 113185251 113254266 TTC12 brain_putamen_basal_ganglia 1.41e+00 0.000288 0 11:112459488-11:114256749
1069 11 130745331 130786404 SNX19 whole_blood -1.02e+00 0.000269 0 11:131074648-11:132999715
1070 11 130745331 130786404 SNX19 thyroid 1.00e+00 0.000265 0 11:131074648-11:132999715
1071 11 130745331 130786404 SNX19 brain_frontal_cortex_ba9 6.22e-01 0.000192 0 11:131074648-11:132999715
1073 11 130745331 130786404 SNX19 pituitary 5.68e-01 0.000186 0 11:131074648-11:132999715
1079 11 130745331 130786404 SNX19 adrenal_gland -2.27e-01 0.000165 0 11:131074648-11:132999715
1081 11 130745331 130786404 SNX19 brain_cerebellum 1.42e-01 0.000161 0 11:131074648-11:132999715
1082 11 130745331 130786404 SNX19 brain_hypothalamus 1.87e-02 0.000160 0 11:131074648-11:132999715
1060 11 130745765 130786382 SNX19 cmc.brain.rnaseq_splicing 1.86e+00 0.000839 0 11:131074648-11:132999715
1055 11 130736149 130740142 RP11-890B15.3 pituitary 2.71e+00 0.005580 0 11:131074648-11:132999715
13335 11 130736149 130740142 RP11-890B15.3 psychencode 9.86e-01 0.000257 0 11:131074648-11:132999715
1056 11 130745331 130786404 SNX19 brain_nucleus_accumbens_basal_ganglia 2.71e+00 0.005580 0 11:131074648-11:132999715
1058 11 130745331 130786404 SNX19 brain_substantia_nigra 2.20e+00 0.001640 0 11:131074648-11:132999715
1059 11 130745331 130786404 SNX19 brain_amygdala 2.13e+00 0.001440 0 11:131074648-11:132999715
1061 11 130745331 130786404 SNX19 brain_anterior_cingulate_cortex_ba24 -1.76e+00 0.000712 0 11:131074648-11:132999715
1063 11 130745331 130786404 SNX19 brain_putamen_basal_ganglia 1.61e+00 0.000558 0 11:131074648-11:132999715
1066 11 130745331 130786404 SNX19 brain_hippocampus 1.23e+00 0.000330 0 11:131074648-11:132999715
1067 11 130745331 130786404 SNX19 brain_caudate_basal_ganglia 1.22e+00 0.000326 0 11:131074648-11:132999715
1080 11 132284874 133402403 OPCML cmc.brain.rnaseq -2.29e-01 0.000164 0 11:131074648-11:132999715
13326 11 133229924 133235975 OPCML-IT1 psychencode 4.39e-01 0.000175 0 11:131074648-11:132999715
1068 11 130745765 130786382 SNX19 cmc.brain.rnaseq_splicing -1.07e+00 0.000275 0 11:131074648-11:132999715
1072 11 130745765 130786382 SNX19 cmc.brain.rnaseq_splicing 5.70e-01 0.000188 0 11:131074648-11:132999715
1075 11 131104433 131121711 AP002856.7 brain_putamen_basal_ganglia 5.10e-01 0.000181 0 11:131074648-11:132999715
1057 11 130736149 130740142 RP11-890B15.3 brain_nucleus_accumbens_basal_ganglia 2.37e+00 0.002390 0 11:131074648-11:132999715
1078 11 131240370 132206716 NTM cmc.brain.rnaseq 2.88e-01 0.000170 0 11:131074648-11:132999715
1062 11 130736149 130740142 RP11-890B15.3 adrenal_gland 1.68e+00 0.000620 0 11:131074648-11:132999715
12725 11 131240373 132206716 NTM psychencode -5.12e-01 0.000185 0 11:131074648-11:132999715
13190 11 131372653 131410761 AP003025.2 psychencode 2.15e-02 0.000161 0 11:131074648-11:132999715
13056 11 131532025 131533477 AP003039.3 psychencode 1.76e+00 0.000713 0 11:131074648-11:132999715
1064 11 130736149 130740142 RP11-890B15.3 whole_blood -1.38e+00 0.000404 0 11:131074648-11:132999715
12755 11 132284871 133402414 OPCML psychencode 2.25e-01 0.000164 0 11:131074648-11:132999715
1065 11 130736149 130740142 RP11-890B15.3 brain_cerebellum 1.35e+00 0.000382 0 11:131074648-11:132999715
1074 11 130736149 130740142 RP11-890B15.3 brain_frontal_cortex_ba9 -5.29e-01 0.000184 0 11:131074648-11:132999715
1076 11 130736149 130740142 RP11-890B15.3 brain_hypothalamus 4.65e-01 0.000178 0 11:131074648-11:132999715
1077 11 130736149 130740142 RP11-890B15.3 brain_cortex -3.54e-01 0.000170 0 11:131074648-11:132999715
11661 12 2934514 2944710 NRIP2 psychencode -5.40e-01 0.000184 0 12:2545286-12:3677037
1121 12 3427884 3434509 RP5-1063M23.2 brain_cerebellum -1.16e-01 0.000160 0 12:2545286-12:3677037
1108 12 3490515 3703139 PRMT8 brain_cerebellum 5.51e-01 0.000184 0 12:2545286-12:3677037
1110 12 3490515 3703139 PRMT8 thyroid -4.92e-01 0.000179 0 12:2545286-12:3677037
13347 12 2777666 2781386 CACNA1C-AS2 psychencode -2.43e+00 0.002810 0 12:2545286-12:3677037
1089 12 2921788 2968957 ITFG2 yfs.blood.rnaarr 1.31e+00 0.000365 0 12:2545286-12:3677037
1100 12 3000053 3050306 TULP3 brain_cerebellum -8.81e-01 0.000235 0 12:2545286-12:3677037
1103 12 3000053 3050306 TULP3 brain_putamen_basal_ganglia 7.37e-01 0.000211 0 12:2545286-12:3677037
1118 12 2934513 2944221 NRIP2 cmc.brain.rnaseq -2.23e-01 0.000163 0 12:2545286-12:3677037
1086 12 3186521 3395730 TSPAN9 brain_nucleus_accumbens_basal_ganglia 1.52e+00 0.000491 0 12:2545286-12:3677037
1111 12 2958397 2966213 AC005841.1 thyroid -4.78e-01 0.000178 0 12:2545286-12:3677037
1117 12 2079952 2802108 CACNA1C brain_substantia_nigra 3.07e-01 0.000166 0 12:2545286-12:3677037
1116 12 2934514 2944710 NRIP2 brain_putamen_basal_ganglia -3.28e-01 0.000168 0 12:2545286-12:3677037
12985 12 2958397 2966213 AC005841.1 psychencode 7.42e-01 0.000209 0 12:2545286-12:3677037
1085 12 2985424 2998626 RHNO1 brain_frontal_cortex_ba9 1.56e+00 0.000519 0 12:2545286-12:3677037
1092 12 2985424 2998626 RHNO1 whole_blood 1.18e+00 0.000313 0 12:2545286-12:3677037
1091 12 2986364 3046895 TULP3 cmc.brain.rnaseq 1.23e+00 0.000334 0 12:2545286-12:3677037
11723 12 2986389 3050306 TULP3 psychencode 1.13e+00 0.000298 0 12:2545286-12:3677037
1088 12 3000053 3050306 TULP3 adrenal_gland -1.36e+00 0.000391 0 12:2545286-12:3677037
1093 12 3000053 3050306 TULP3 thyroid -1.10e+00 0.000292 0 12:2545286-12:3677037
1095 12 3000053 3050306 TULP3 brain_caudate_basal_ganglia 1.03e+00 0.000270 0 12:2545286-12:3677037
1097 12 3000053 3050306 TULP3 brain_amygdala 9.78e-01 0.000255 0 12:2545286-12:3677037
1098 12 3000053 3050306 TULP3 brain_anterior_cingulate_cortex_ba24 9.70e-01 0.000254 0 12:2545286-12:3677037
1084 12 3186521 3395730 TSPAN9 adrenal_gland 2.00e+00 0.001110 0 12:2545286-12:3677037
1106 12 3186521 3395730 TSPAN9 brain_cerebellum -6.59e-01 0.000197 0 12:2545286-12:3677037
11608 12 3186521 3395730 TSPAN9 psychencode -7.75e-01 0.000214 0 12:2545286-12:3677037
1102 12 3405368 3409390 RP5-1063M23.1 brain_caudate_basal_ganglia -8.52e-01 0.000226 0 12:2545286-12:3677037
1113 12 3405368 3409390 RP5-1063M23.1 brain_putamen_basal_ganglia -4.50e-01 0.000175 0 12:2545286-12:3677037
13275 12 3405368 3409390 RP5-1063M23.1 psychencode -2.95e-01 0.000166 0 12:2545286-12:3677037
1087 12 3427884 3434509 RP5-1063M23.2 thyroid -1.44e+00 0.000437 0 12:2545286-12:3677037
1104 12 3427884 3434509 RP5-1063M23.2 pituitary 7.49e-01 0.000209 0 12:2545286-12:3677037
1115 12 3427884 3434509 RP5-1063M23.2 brain_cerebellar_hemisphere -3.64e-01 0.000169 0 12:2545286-12:3677037
1090 12 3715799 3873985 EFCAB4B thyroid 1.31e+00 0.000365 0 12:2545286-12:3677037
1123 12 3900213 3982608 PARP11 brain_cerebellar_hemisphere 8.48e-02 0.000159 0 12:2545286-12:3677037
1107 12 3000053 3050306 TULP3 brain_cortex 6.23e-01 0.000195 0 12:2545286-12:3677037
1099 12 2934514 2944710 NRIP2 brain_caudate_basal_ganglia -9.58e-01 0.000249 0 12:2545286-12:3677037
1101 12 2934514 2944710 NRIP2 brain_nucleus_accumbens_basal_ganglia -8.61e-01 0.000229 0 12:2545286-12:3677037
1112 12 3918026 3982608 PARP11 cmc.brain.rnaseq_splicing -4.53e-01 0.000175 0 12:2545286-12:3677037
1109 12 3000053 3050306 TULP3 brain_frontal_cortex_ba9 4.93e-01 0.000181 0 12:2545286-12:3677037
1120 12 3000053 3050306 TULP3 brain_nucleus_accumbens_basal_ganglia -3.44e-03 0.000163 0 12:2545286-12:3677037
1105 12 3150603 3154116 RP11-253E3.3 brain_caudate_basal_ganglia 6.74e-01 0.000198 0 12:2545286-12:3677037
1119 12 3918026 3982608 PARP11 cmc.brain.rnaseq -2.34e-01 0.000163 0 12:2545286-12:3677037
1124 12 4130143 4135824 RP11-320N7.2 pituitary 8.10e-02 0.000159 0 12:2545286-12:3677037
1096 12 3186521 3395730 TSPAN9 pituitary 1.05e+00 0.000270 0 12:2545286-12:3677037
1114 12 3150603 3154116 RP11-253E3.3 pituitary -3.66e-01 0.000172 0 12:2545286-12:3677037
1122 12 3150603 3154116 RP11-253E3.3 brain_putamen_basal_ganglia -8.62e-02 0.000159 0 12:2545286-12:3677037
1094 12 3186520 3395730 TSPAN9 cmc.brain.rnaseq_splicing 1.09e+00 0.000283 0 12:2545286-12:3677037
1083 12 3186521 3395730 TSPAN9 thyroid 2.36e+00 0.002380 0 12:2545286-12:3677037
1147 12 25261354 25348096 CASC1 adrenal_gland 1.11e-01 0.000159 0 12:23820634-12:25371083
13348 12 23252302 23344521 RP11-153K16.1 psychencode -3.83e-01 0.000169 0 12:23820634-12:25371083
1138 12 24964294 25102308 BCAT1 ntr.blood.rnaarr -8.58e-01 0.000226 0 12:23820634-12:25371083
1127 12 24964295 25102393 BCAT1 thyroid 1.56e+00 0.000515 0 12:23820634-12:25371083
1129 12 24964295 25102393 BCAT1 yfs.blood.rnaarr -1.27e+00 0.000344 0 12:23820634-12:25371083
1137 12 24964295 25102393 BCAT1 whole_blood -8.66e-01 0.000227 0 12:23820634-12:25371083
1141 12 24964295 25102393 BCAT1 brain_cerebellum -3.97e-01 0.000171 0 12:23820634-12:25371083
1142 12 24964295 25102393 BCAT1 brain_cerebellar_hemisphere -3.96e-01 0.000171 0 12:23820634-12:25371083
11669 12 24964295 25102393 BCAT1 psychencode 1.39e+00 0.000404 0 12:23820634-12:25371083
1135 12 25055323 25057615 AC026310.1 brain_cortex -9.94e-01 0.000255 0 12:23820634-12:25371083
1125 12 25173936 25261268 LRMP adrenal_gland -2.11e+00 0.001380 0 12:23820634-12:25371083
12010 12 25173936 25261268 LRMP psychencode 6.82e-01 0.000198 0 12:23820634-12:25371083
1128 12 25205180 25261269 LRMP cmc.brain.rnaseq 1.46e+00 0.000447 0 12:23820634-12:25371083
1145 12 25205180 25261269 LRMP cmc.brain.rnaseq_splicing -2.21e-01 0.000162 0 12:23820634-12:25371083
1143 12 25261222 25348094 CASC1 cmc.brain.rnaseq_splicing -2.91e-01 0.000164 0 12:23820634-12:25371083
1139 12 25261223 25348094 CASC1 ntr.blood.rnaarr 5.02e-01 0.000179 0 12:23820634-12:25371083
12009 12 25261354 25348096 CASC1 psychencode 1.24e+00 0.000333 0 12:23820634-12:25371083
1131 12 25348149 25357949 LYRM5 cmc.brain.rnaseq_splicing -1.19e+00 0.000315 0 12:23820634-12:25371083
1132 12 24962957 25102393 BCAT1 cmc.brain.rnaseq 1.13e+00 0.000293 0 12:23820634-12:25371083
1133 12 25348149 25357949 LYRM5 cmc.brain.rnaseq_splicing 1.06e+00 0.000273 0 12:23820634-12:25371083
1144 12 25348149 25357949 LYRM5 cmc.brain.rnaseq -2.44e-01 0.000162 0 12:23820634-12:25371083
1130 12 25348150 25357722 LYRM5 thyroid -1.21e+00 0.000322 0 12:23820634-12:25371083
1134 12 25348150 25357722 LYRM5 brain_cerebellum -1.05e+00 0.000270 0 12:23820634-12:25371083
1140 12 25348150 25362579 LYRM5 yfs.blood.rnaarr 4.82e-01 0.000177 0 12:23820634-12:25371083
1126 12 24964295 25102393 BCAT1 brain_hippocampus 2.04e+00 0.001210 0 12:23820634-12:25371083
1146 12 25348150 25357722 LYRM5 whole_blood -1.90e-01 0.000161 0 12:23820634-12:25371083
12982 12 25348150 25362579 LYRM5 psychencode 6.59e-01 0.000195 0 12:23820634-12:25371083
12196 12 25357723 25403870 KRAS psychencode 1.02e+00 0.000262 0 12:23820634-12:25371083
13352 12 22852793 23327057 RP11-114G22.1 psychencode -5.64e-01 0.000184 0 12:23820634-12:25371083
1136 12 25358070 25403870 KRAS thyroid 9.62e-01 0.000248 0 12:23820634-12:25371083
12375 12 25562241 25801513 IFLTD1 psychencode -9.00e-01 0.000235 0 12:23820634-12:25371083
1149 12 85253266 85306608 SLC6A15 cmc.brain.rnaseq_splicing -7.56e-01 0.000207 0 12:84303997-12:85990118
11703 12 85253492 85307394 SLC6A15 psychencode 3.74e-01 0.000168 0 12:84303997-12:85990118
13133 12 85408094 85430055 TSPAN19 psychencode -1.60e+00 0.000546 0 12:84303997-12:85990118
12195 12 85430092 85657002 LRRIQ1 psychencode -1.18e-01 0.000158 0 12:84303997-12:85990118
1150 12 86198331 86230348 RASSF9 brain_cerebellar_hemisphere -6.29e-01 0.000190 0 12:84303997-12:85990118
1151 12 86198331 86230348 RASSF9 adrenal_gland -5.09e-01 0.000178 0 12:84303997-12:85990118
1148 12 86352465 86354725 RP11-18J9.3 thyroid -9.56e-01 0.000244 0 12:84303997-12:85990118
12713 12 86372516 87232681 MGAT4C psychencode 3.26e-01 0.000165 0 12:84303997-12:85990118
1152 12 86373036 87232681 MGAT4C cmc.brain.rnaseq_splicing -3.14e-01 0.000164 0 12:84303997-12:85990118
1153 12 85253492 85307394 SLC6A15 brain_putamen_basal_ganglia -1.93e-01 0.000159 0 12:84303997-12:85990118
13340 12 122445340 122457920 RP11-87C12.5 psychencode -7.75e-01 0.000361 0 12:119754356-12:122007651
1238 12 121647663 121671909 P2RX4 cmc.brain.rnaseq_splicing -1.32e+00 0.000507 0 12:119754356-12:122007651
1260 12 122457328 122499948 BCL7A whole_blood 1.30e+00 0.000370 0 12:119754356-12:122007651
1214 12 121163538 121177811 ACADS brain_nucleus_accumbens_basal_ganglia 1.64e-01 0.000724 0 12:119754356-12:122007651
1217 12 120884241 120899389 GATC brain_substantia_nigra 2.06e+00 0.000650 0 12:119754356-12:122007651
11755 12 121570622 121623876 P2RX7 psychencode 4.22e-01 0.000601 0 12:119754356-12:122007651
11932 12 122457328 122499948 BCL7A psychencode 1.64e+00 0.000511 0 12:119754356-12:122007651
1227 12 121016567 121019201 POP5 pituitary 2.36e+00 0.000573 0 12:119754356-12:122007651
1156 12 121163538 121177811 ACADS thyroid 4.36e+00 0.128000 1 12:119754356-12:122007651
1277 12 120941077 120972237 COQ5 yfs.blood.rnaarr -5.75e-01 0.000323 0 12:119754356-12:122007651
1186 12 121570630 121624343 P2RX7 ntr.blood.rnaarr -9.86e-01 0.001410 0 12:119754356-12:122007651
1246 12 120907653 120936296 DYNLL1 brain_caudate_basal_ganglia -1.96e+00 0.000458 0 12:119754356-12:122007651
1279 12 120884241 120899389 GATC brain_anterior_cingulate_cortex_ba24 1.36e+00 0.000318 0 12:119754356-12:122007651
1225 12 121148238 121161443 UNC119B brain_anterior_cingulate_cortex_ba24 1.02e+00 0.000574 0 12:119754356-12:122007651
11759 12 120648250 120703574 PXN psychencode 1.23e+00 0.000432 0 12:119754356-12:122007651
1185 12 120729566 120729706 RNU4-2 brain_cerebellum 2.11e+00 0.001460 0 12:119754356-12:122007651
1281 12 120884241 120899389 GATC brain_amygdala 1.33e+00 0.000315 0 12:119754356-12:122007651
1267 12 121124672 121139667 MLEC yfs.blood.rnaarr 1.08e+00 0.000345 0 12:119754356-12:122007651
1229 12 121148238 121161443 UNC119B brain_substantia_nigra 1.07e+00 0.000561 0 12:119754356-12:122007651
11754 12 120907653 120936296 DYNLL1 psychencode -1.61e+00 0.000449 0 12:119754356-12:122007651
11929 12 120941077 120972237 COQ5 psychencode -6.99e-01 0.000453 0 12:119754356-12:122007651
1203 12 121163538 121177811 ACADS brain_cerebellum -4.48e-01 0.000942 0 12:119754356-12:122007651
1160 12 121163538 121177811 ACADS yfs.blood.rnaarr 2.13e+00 0.024700 1 12:119754356-12:122007651
13342 12 121067908 121079394 RP11-728G15.1 psychencode 2.01e+00 0.000686 0 12:119754356-12:122007651
1258 12 121163538 121177811 ACADS brain_hypothalamus 4.54e-01 0.000376 0 12:119754356-12:122007651
1299 12 120907659 120936298 DYNLL1 cmc.brain.rnaseq_splicing -7.99e-01 0.000280 0 12:119754356-12:122007651
1219 12 119825792 120032306 RP11-768F21.1 thyroid 1.19e+00 0.000631 0 12:119754356-12:122007651
13248 12 119825792 120105884 RP11-768F21.1 psychencode -1.67e-01 0.000243 0 12:119754356-12:122007651
1233 12 122459026 122499950 BCL7A ntr.blood.rnaarr 1.65e+00 0.000533 0 12:119754356-12:122007651
1306 12 120907659 120936298 DYNLL1 cmc.brain.rnaseq 8.86e-01 0.000271 0 12:119754356-12:122007651
1298 12 121625359 121625835 RP11-340F14.5 whole_blood 1.39e+00 0.000281 0 12:119754356-12:122007651
1173 12 121458094 121477045 OASL ntr.blood.rnaarr 3.40e+00 0.003530 0 12:119754356-12:122007651
1248 12 120031264 120079363 TMEM233 thyroid 9.32e-01 0.000444 0 12:119754356-12:122007651
1207 12 121163538 121177811 ACADS brain_frontal_cortex_ba9 -4.96e-01 0.000867 0 12:119754356-12:122007651
1188 12 120427673 120532298 CCDC64 brain_frontal_cortex_ba9 2.06e+00 0.001320 0 12:119754356-12:122007651
1255 12 122233173 122241812 AC084018.1 thyroid 1.42e+00 0.000428 0 12:119754356-12:122007651
1232 12 121016567 121019201 POP5 adrenal_gland -1.16e+00 0.000543 0 12:119754356-12:122007651
11930 12 121124672 121139667 MLEC psychencode 1.56e+00 0.000643 0 12:119754356-12:122007651
1242 12 120928131 120933743 DYNLL1-AS1 brain_cerebellar_hemisphere 4.00e-01 0.000477 0 12:119754356-12:122007651
1235 12 122064455 122080583 ORAI1 whole_blood -7.17e-01 0.000523 0 12:119754356-12:122007651
1312 12 121016567 121019201 POP5 brain_anterior_cingulate_cortex_ba24 9.28e-01 0.000263 0 12:119754356-12:122007651
1216 12 120941077 120972153 COQ5 brain_nucleus_accumbens_basal_ganglia -9.58e-01 0.000666 0 12:119754356-12:122007651
1223 12 120941077 120972153 COQ5 brain_cortex -9.86e-01 0.000599 0 12:119754356-12:122007651
1261 12 120740119 120751040 SIRT4 thyroid -7.34e-01 0.000370 0 12:119754356-12:122007651
1237 12 120941077 120972153 COQ5 whole_blood -9.96e-01 0.000512 0 12:119754356-12:122007651
1245 12 120105557 120119424 PRKAB1 ntr.blood.rnaarr -1.26e+00 0.000464 0 12:119754356-12:122007651
12212 12 121647660 121671909 P2RX4 psychencode -1.89e+00 0.003750 0 12:119754356-12:122007651
1254 12 120941077 120972153 COQ5 adrenal_gland -8.17e-01 0.000432 0 12:119754356-12:122007651
1323 12 122233173 122241812 AC084018.1 brain_cerebellum 4.07e-01 0.000244 0 12:119754356-12:122007651
12272 12 119419300 119600856 SRRM4 psychencode -1.75e+00 0.001080 0 12:119754356-12:122007651
1326 12 120123595 120315095 CIT thyroid -2.44e-01 0.000239 0 12:119754356-12:122007651
12085 12 120123595 120315095 CIT psychencode -1.01e+00 0.000376 0 12:119754356-12:122007651
1182 12 120565007 120632513 GCN1L1 thyroid 2.53e+00 0.002000 0 12:119754356-12:122007651
1183 12 120565007 120632513 GCN1L1 brain_cerebellum 2.52e+00 0.001560 0 12:119754356-12:122007651
1204 12 120565007 120632513 GCN1L1 brain_cerebellar_hemisphere 2.19e+00 0.000901 0 12:119754356-12:122007651
1240 12 120565007 120632513 GCN1L1 yfs.blood.rnaarr 1.53e+00 0.000497 0 12:119754356-12:122007651
1262 12 120565007 120632513 GCN1L1 brain_anterior_cingulate_cortex_ba24 1.35e+00 0.000363 0 12:119754356-12:122007651
11758 12 120565007 120632513 GCN1L1 psychencode 2.64e+00 0.001880 0 12:119754356-12:122007651
1180 12 120634489 120639038 RPLP0 thyroid 2.38e+00 0.002150 0 12:119754356-12:122007651
1181 12 120634502 120639014 RPLP0 cmc.brain.rnaseq_splicing -2.35e+00 0.002040 0 12:119754356-12:122007651
13341 12 120639094 120650941 PXN-AS1 psychencode -6.18e-01 0.000262 0 12:119754356-12:122007651
1280 12 120875893 120878545 COX6A1 yfs.blood.rnaarr 1.66e+00 0.000317 0 12:119754356-12:122007651
11934 12 120875893 120878545 COX6A1 psychencode 3.63e-01 0.000353 0 12:119754356-12:122007651
11935 12 120876001 120897809 AL021546.6 psychencode -1.08e+00 0.000818 0 12:119754356-12:122007651
12602 12 120881764 120884215 TRIAP1 psychencode 9.24e-01 0.000467 0 12:119754356-12:122007651
1305 12 120884240 120901556 GATC cmc.brain.rnaseq 7.53e-01 0.000272 0 12:119754356-12:122007651
1211 12 120884241 120899389 GATC brain_caudate_basal_ganglia 1.74e+00 0.000758 0 12:119754356-12:122007651
1310 12 120884241 120899389 GATC brain_nucleus_accumbens_basal_ganglia 9.52e-01 0.000266 0 12:119754356-12:122007651
1311 12 120884241 120899389 GATC adrenal_gland 8.94e-01 0.000265 0 12:119754356-12:122007651
1314 12 120884241 120899389 GATC yfs.blood.rnaarr 8.90e-01 0.000257 0 12:119754356-12:122007651
13355 12 120884241 120899389 GATC psychencode 8.29e-01 0.000265 0 12:119754356-12:122007651
1205 12 120888240 120888606 RPL31P52 brain_frontal_cortex_ba9 8.95e-02 0.000889 0 12:119754356-12:122007651
11936 12 120899471 120907596 SRSF9 psychencode 1.22e+00 0.000282 0 12:119754356-12:122007651
1192 12 120907653 120936296 DYNLL1 yfs.blood.rnaarr 1.95e+00 0.001150 0 12:119754356-12:122007651
1256 12 120941077 120972153 COQ5 brain_cerebellum -7.53e-01 0.000405 0 12:119754356-12:122007651
1162 12 120971283 121015397 RNF10 brain_frontal_cortex_ba9 2.13e+00 0.010100 1 12:119754356-12:122007651
1221 12 120971283 121015397 RNF10 thyroid -1.38e+00 0.000614 0 12:119754356-12:122007651
1304 12 120971283 121015397 RNF10 yfs.blood.rnaarr 7.25e-01 0.000273 0 12:119754356-12:122007651
11624 12 120971283 121015397 RNF10 psychencode -2.11e+00 0.001210 0 12:119754356-12:122007651
1301 12 121016567 121019201 POP5 thyroid 1.06e+00 0.000277 0 12:119754356-12:122007651
12559 12 121016567 121019201 POP5 psychencode 1.22e+00 0.000278 0 12:119754356-12:122007651
1284 12 121016849 121019184 POP5 ntr.blood.rnaarr 1.02e+00 0.000314 0 12:119754356-12:122007651
1226 12 121078421 121105127 CABP1 cmc.brain.rnaseq_splicing 1.85e-02 0.000574 0 12:119754356-12:122007651
1282 12 121124672 121139667 MLEC adrenal_gland -3.75e-01 0.000315 0 12:119754356-12:122007651
1187 12 121148238 121161443 UNC119B yfs.blood.rnaarr 1.84e-01 0.001400 0 12:119754356-12:122007651
1168 12 121016847 121019201 POP5 cmc.brain.rnaseq_splicing -2.65e+00 0.005780 1 12:119754356-12:122007651
1239 12 120105558 120119435 PRKAB1 yfs.blood.rnaarr -1.28e+00 0.000498 0 12:119754356-12:122007651
1321 12 121440316 121454305 C12orf43 brain_cerebellum 7.03e-01 0.000246 0 12:119754356-12:122007651
1271 12 121016847 121019201 POP5 cmc.brain.rnaseq 1.04e+00 0.000339 0 12:119754356-12:122007651
1257 12 122064455 122080583 ORAI1 yfs.blood.rnaarr -1.08e+00 0.000398 0 12:119754356-12:122007651
1273 12 121163538 121177811 ACADS brain_anterior_cingulate_cortex_ba24 -2.43e-01 0.000337 0 12:119754356-12:122007651
13423 12 121625359 121625835 RP11-340F14.5 psychencode 1.13e+00 0.000300 0 12:119754356-12:122007651
1318 12 121440316 121454305 C12orf43 whole_blood 3.60e-01 0.000253 0 12:119754356-12:122007651
1264 12 120105558 120119435 PRKAB1 whole_blood -8.32e-01 0.000354 0 12:119754356-12:122007651
1200 12 121163570 121177811 ACADS cmc.brain.rnaseq -5.62e-01 0.000985 0 12:119754356-12:122007651
1234 12 121440847 121454300 C12orf43 cmc.brain.rnaseq 1.76e+00 0.000528 0 12:119754356-12:122007651
1189 12 120427673 120532298 CCDC64 thyroid -1.72e+00 0.001290 0 12:119754356-12:122007651
1293 12 120884241 120899389 GATC brain_frontal_cortex_ba9 1.14e+00 0.000288 0 12:119754356-12:122007651
1247 12 120941077 120972153 COQ5 thyroid -7.50e-01 0.000450 0 12:119754356-12:122007651
1265 12 121647663 121671909 P2RX4 cmc.brain.rnaseq -2.10e-01 0.000346 0 12:119754356-12:122007651
1276 12 121675494 121736111 CAMKK2 cmc.brain.rnaseq_splicing -4.28e-01 0.000324 0 12:119754356-12:122007651
1218 12 120427673 120532298 CCDC64 brain_cerebellum 1.65e+00 0.000637 0 12:119754356-12:122007651
1320 12 121675494 121736111 CAMKK2 cmc.brain.rnaseq_splicing 5.56e-02 0.000248 0 12:119754356-12:122007651
1266 12 120740119 120751052 SIRT4 yfs.blood.rnaarr -1.13e+00 0.000345 0 12:119754356-12:122007651
1165 12 121200312 121342155 SPPL3 cmc.brain.rnaseq -3.63e+00 0.008960 1 12:119754356-12:122007651
12987 12 122233173 122241812 AC084018.1 psychencode -1.85e+00 0.001850 0 12:119754356-12:122007651
1324 12 120427673 120532298 CCDC64 brain_cerebellar_hemisphere -1.53e-02 0.000242 0 12:119754356-12:122007651
1191 12 121675497 121736111 CAMKK2 thyroid 2.19e+00 0.001240 0 12:119754356-12:122007651
1249 12 120941077 120972153 COQ5 brain_caudate_basal_ganglia -1.01e+00 0.000442 0 12:119754356-12:122007651
1171 12 122235417 122235778 RP11-347I19.8 pituitary -2.55e+00 0.004630 0 12:119754356-12:122007651
1302 12 121675497 121736111 CAMKK2 yfs.blood.rnaarr -2.39e-01 0.000275 0 12:119754356-12:122007651
1230 12 120875892 120878545 COX6A1 cmc.brain.rnaseq -7.30e-02 0.000552 0 12:119754356-12:122007651
1208 12 121458095 121477045 OASL whole_blood 2.61e+00 0.000842 0 12:119754356-12:122007651
1155 12 121200313 121342174 SPPL3 brain_hippocampus -4.54e+00 0.229000 1 12:119754356-12:122007651
1325 12 120105558 120119435 PRKAB1 brain_cerebellum -3.13e-01 0.000241 0 12:119754356-12:122007651
1161 12 121200313 121342174 SPPL3 adrenal_gland -3.77e+00 0.012200 1 12:119754356-12:122007651
1294 12 120884241 120899389 GATC whole_blood 1.18e+00 0.000285 0 12:119754356-12:122007651
1170 12 120875893 120878545 COX6A1 brain_hippocampus -2.23e+00 0.004850 1 12:119754356-12:122007651
1263 12 120941081 120966968 COQ5 ntr.blood.rnaarr 9.77e-01 0.000357 0 12:119754356-12:122007651
12213 12 120427673 120532298 CCDC64 psychencode 4.14e-02 0.000240 0 12:119754356-12:122007651
1228 12 121440847 121454300 C12orf43 cmc.brain.rnaseq_splicing -2.06e+00 0.000568 0 12:119754356-12:122007651
1190 12 120875893 120878545 COX6A1 thyroid 2.59e+00 0.001250 0 12:119754356-12:122007651
1236 12 121016567 121019201 POP5 yfs.blood.rnaarr 1.10e-01 0.000521 0 12:119754356-12:122007651
12722 12 122064455 122080583 ORAI1 psychencode -1.91e+00 0.001590 0 12:119754356-12:122007651
1250 12 120941077 120972153 COQ5 brain_cerebellar_hemisphere -8.35e-01 0.000440 0 12:119754356-12:122007651
1163 12 120565007 120632513 GCN1L1 pituitary 3.22e+00 0.009910 1 12:119754356-12:122007651
1296 12 120884241 120899389 GATC brain_hippocampus 1.01e+00 0.000282 0 12:119754356-12:122007651
11931 12 121675497 121736111 CAMKK2 psychencode -7.62e-01 0.000296 0 12:119754356-12:122007651
1166 12 122089024 122110537 MORN3 whole_blood -3.03e+00 0.005840 1 12:119754356-12:122007651
1297 12 120884241 120899389 GATC brain_putamen_basal_ganglia 1.17e+00 0.000282 0 12:119754356-12:122007651
1283 12 121016847 121019201 POP5 cmc.brain.rnaseq_splicing -8.54e-01 0.000314 0 12:119754356-12:122007651
1193 12 121163538 121177811 ACADS brain_cortex -6.48e-01 0.001150 0 12:119754356-12:122007651
1300 12 120884241 120899389 GATC brain_hypothalamus 1.12e+00 0.000278 0 12:119754356-12:122007651
1159 12 121647660 121671909 P2RX4 adrenal_gland -1.66e+00 0.042500 1 12:119754356-12:122007651
1275 12 121016567 121019201 POP5 brain_caudate_basal_ganglia 3.12e-01 0.000324 0 12:119754356-12:122007651
1169 12 121200313 121342174 SPPL3 pituitary -1.48e+00 0.005040 1 12:119754356-12:122007651
1212 12 120875893 120878545 COX6A1 brain_cerebellum 2.57e+00 0.000743 0 12:119754356-12:122007651
1319 12 121440316 121454305 C12orf43 thyroid 6.04e-01 0.000248 0 12:119754356-12:122007651
1285 12 121016567 121019201 POP5 brain_cortex 4.46e-01 0.000306 0 12:119754356-12:122007651
1253 12 122089024 122110537 MORN3 brain_cerebellar_hemisphere 1.42e+00 0.000432 0 12:119754356-12:122007651
1222 12 121675499 121736111 CAMKK2 ntr.blood.rnaarr -1.89e+00 0.000612 0 12:119754356-12:122007651
1287 12 121016567 121019201 POP5 brain_cerebellum 1.18e+00 0.000301 0 12:119754356-12:122007651
1303 12 120884241 120899389 GATC brain_cortex 8.04e-01 0.000274 0 12:119754356-12:122007651
1175 12 121200313 121342174 SPPL3 brain_cerebellum -3.25e+00 0.003440 0 12:119754356-12:122007651
1268 12 121440316 121454305 C12orf43 brain_anterior_cingulate_cortex_ba24 1.47e+00 0.000342 0 12:119754356-12:122007651
1269 12 122235417 122235778 RP11-347I19.8 brain_cerebellar_hemisphere -1.22e+00 0.000342 0 12:119754356-12:122007651
1290 12 121016567 121019201 POP5 brain_frontal_cortex_ba9 9.04e-01 0.000294 0 12:119754356-12:122007651
1251 12 120941077 120972153 COQ5 brain_frontal_cortex_ba9 -8.49e-01 0.000437 0 12:119754356-12:122007651
1241 12 120941081 120966964 COQ5 cmc.brain.rnaseq -8.91e-01 0.000497 0 12:119754356-12:122007651
12269 12 122089024 122110537 MORN3 psychencode 3.43e+00 0.043200 1 12:119754356-12:122007651
1316 12 122089027 122107560 MORN3 ntr.blood.rnaarr 6.67e-01 0.000257 0 12:119754356-12:122007651
1317 12 121438289 121438867 RP11-216P16.2 brain_cerebellum 4.47e-01 0.000255 0 12:119754356-12:122007651
11933 12 120105558 120119435 PRKAB1 psychencode 3.89e-02 0.000238 0 12:119754356-12:122007651
13481 12 121438289 121439071 RP11-216P16.2 psychencode 1.59e-01 0.000359 0 12:119754356-12:122007651
1215 12 121746048 121837699 ANAPC5 yfs.blood.rnaarr 1.65e+00 0.000678 0 12:119754356-12:122007651
1286 12 121440316 121454305 C12orf43 adrenal_gland 3.25e-01 0.000302 0 12:119754356-12:122007651
1184 12 122150658 122220907 TMEM120B adrenal_gland 1.47e+00 0.001460 0 12:119754356-12:122007651
1308 12 121647660 121671909 P2RX4 brain_cerebellar_hemisphere -3.09e-01 0.000270 0 12:119754356-12:122007651
1176 12 121200313 121342174 SPPL3 brain_cortex -3.24e+00 0.003340 0 12:119754356-12:122007651
1179 12 121200313 121342174 SPPL3 brain_caudate_basal_ganglia -1.90e+00 0.002390 0 12:119754356-12:122007651
1164 12 121647660 121671909 P2RX4 yfs.blood.rnaarr -2.33e+00 0.009550 1 12:119754356-12:122007651
1270 12 121458095 121477045 OASL adrenal_gland 1.23e+00 0.000340 0 12:119754356-12:122007651
1295 12 121458095 121477045 OASL yfs.blood.rnaarr 1.65e+00 0.000283 0 12:119754356-12:122007651
11756 12 121746048 121837699 ANAPC5 psychencode -1.83e+00 0.000590 0 12:119754356-12:122007651
1259 12 120875893 120878545 COX6A1 brain_anterior_cingulate_cortex_ba24 1.62e+00 0.000373 0 12:119754356-12:122007651
1199 12 121570621 121624354 P2RX7 cmc.brain.rnaseq_splicing -2.30e-03 0.001000 0 12:119754356-12:122007651
12086 12 121163538 121177811 ACADS psychencode -7.64e-01 0.001920 0 12:119754356-12:122007651
1167 12 121647660 121671909 P2RX4 whole_blood -2.67e+00 0.005840 1 12:119754356-12:122007651
1272 12 120875893 120878545 COX6A1 brain_frontal_cortex_ba9 1.78e+00 0.000339 0 12:119754356-12:122007651
1206 12 121746160 121837699 ANAPC5 brain_putamen_basal_ganglia 2.44e+00 0.000878 0 12:119754356-12:122007651
12412 12 121200313 121342174 SPPL3 psychencode -3.44e+00 0.004800 1 12:119754356-12:122007651
1291 12 122235417 122235778 RP11-347I19.8 brain_frontal_cortex_ba9 -5.64e-01 0.000291 0 12:119754356-12:122007651
1201 12 121416346 121440224 HNF1A adrenal_gland 1.52e-01 0.000972 0 12:119754356-12:122007651
1178 12 120565007 120632513 GCN1L1 whole_blood 2.74e+00 0.002810 0 12:119754356-12:122007651
1274 12 122150658 122220907 TMEM120B brain_cerebellum 1.38e+00 0.000335 0 12:119754356-12:122007651
1243 12 121416346 121440224 HNF1A brain_cortex 2.14e+00 0.000468 0 12:119754356-12:122007651
1194 12 121200313 121342174 SPPL3 brain_frontal_cortex_ba9 -1.79e+00 0.001120 0 12:119754356-12:122007651
1292 12 121746160 121837699 ANAPC5 brain_cerebellum -3.78e-01 0.000289 0 12:119754356-12:122007651
1220 12 121570621 121624354 P2RX7 cmc.brain.rnaseq -1.46e+00 0.000622 0 12:119754356-12:122007651
12211 12 121416346 121440315 HNF1A psychencode 6.06e-01 0.000264 0 12:119754356-12:122007651
12839 12 122150658 122220907 TMEM120B psychencode 2.14e-01 0.000244 0 12:119754356-12:122007651
1278 12 120875893 120878545 COX6A1 brain_cortex 5.32e-01 0.000320 0 12:119754356-12:122007651
12270 12 122215664 122241309 RHOF psychencode -1.23e+00 0.000549 0 12:119754356-12:122007651
1315 12 121746160 121837699 ANAPC5 whole_blood -6.53e-01 0.000257 0 12:119754356-12:122007651
1172 12 121866900 122018696 KDM2B thyroid 2.79e+00 0.004170 0 12:119754356-12:122007651
1224 12 121570621 121624354 P2RX7 cmc.brain.rnaseq_splicing -1.45e+00 0.000590 0 12:119754356-12:122007651
12413 12 121440225 121454305 C12orf43 psychencode 1.18e+00 0.000385 0 12:119754356-12:122007651
1158 12 122326637 122355767 PSMD9 thyroid 3.69e+00 0.070400 1 12:119754356-12:122007651
11757 12 121866900 122018920 KDM2B psychencode -5.72e-02 0.000275 0 12:119754356-12:122007651
1252 12 122231057 122240536 RHOF whole_blood -1.42e+00 0.000432 0 12:119754356-12:122007651
1288 12 121416548 121440314 HNF1A cmc.brain.rnaseq 3.91e-01 0.000298 0 12:119754356-12:122007651
1157 12 121438289 121438867 RP11-216P16.2 brain_hypothalamus 4.36e+00 0.113000 1 12:119754356-12:122007651
1313 12 121440316 121454305 C12orf43 brain_frontal_cortex_ba9 1.01e+00 0.000259 0 12:119754356-12:122007651
1307 12 120884241 120899389 GATC thyroid 1.14e+00 0.000271 0 12:119754356-12:122007651
1195 12 121570622 121623876 P2RX7 thyroid -2.15e+00 0.001120 0 12:119754356-12:122007651
1174 12 121647660 121671909 P2RX4 thyroid -2.37e+00 0.003470 0 12:119754356-12:122007651
1210 12 122233173 122241812 AC084018.1 pituitary -1.02e+00 0.000760 0 12:119754356-12:122007651
1154 12 121148238 121161443 UNC119B thyroid 4.69e+00 0.440000 1 12:119754356-12:122007651
1289 12 121016847 121019201 POP5 cmc.brain.rnaseq_splicing -6.71e-01 0.000297 0 12:119754356-12:122007651
1177 12 121647660 121671909 P2RX4 brain_cerebellum -2.30e+00 0.002850 0 12:119754356-12:122007651
1202 12 121200313 121342174 SPPL3 yfs.blood.rnaarr 6.98e-01 0.000959 0 12:119754356-12:122007651
1327 12 120123594 120315095 CIT cmc.brain.rnaseq_splicing -2.43e-01 0.000238 0 12:119754356-12:122007651
1209 12 121200313 121342174 SPPL3 brain_putamen_basal_ganglia -2.69e+00 0.000771 0 12:119754356-12:122007651
1244 12 121440316 121454305 C12orf43 brain_cerebellar_hemisphere -8.68e-01 0.000468 0 12:119754356-12:122007651
1309 12 122326637 122356203 PSMD9 yfs.blood.rnaarr 4.39e-01 0.000266 0 12:119754356-12:122007651
1231 12 121570622 121623876 P2RX7 brain_cerebellum -1.80e+00 0.000545 0 12:119754356-12:122007651
12648 12 121148238 121161443 UNC119B psychencode 1.68e+00 0.000461 0 12:119754356-12:122007651
1196 12 121163538 121177811 ACADS brain_cerebellar_hemisphere -1.77e-01 0.001090 0 12:119754356-12:122007651
1197 12 121163538 121177811 ACADS brain_hippocampus -7.11e-01 0.001030 0 12:119754356-12:122007651
1322 12 121570622 121623876 P2RX7 yfs.blood.rnaarr -4.78e-03 0.000244 0 12:119754356-12:122007651
1213 12 121200313 121342174 SPPL3 brain_cerebellar_hemisphere -2.42e+00 0.000742 0 12:119754356-12:122007651
1198 12 122356204 122441833 WDR66 brain_hippocampus 2.02e+00 0.001020 0 12:119754356-12:122007651
1341 13 27131839 27263082 WASF3 cmc.brain.rnaseq 1.37e+00 0.000407 0 13:25784362-13:27284115
1333 13 27329338 27334922 GPR12 cmc.brain.rnaseq -2.02e+00 0.001210 0 13:25784362-13:27284115
1355 13 25502892 25542607 TPTE2P1 cmc.brain.rnaseq_splicing 8.10e-01 0.000223 0 13:25784362-13:27284115
1356 13 25502892 25542607 TPTE2P1 cmc.brain.rnaseq_splicing 7.60e-01 0.000220 0 13:25784362-13:27284115
1346 13 25875665 25916561 NUPL1 cmc.brain.rnaseq_splicing 1.10e+00 0.000295 0 13:25784362-13:27284115
1354 13 25457171 25497018 CENPJ brain_substantia_nigra 8.19e-01 0.000227 0 13:25784362-13:27284115
1331 13 27131840 27263085 WASF3 brain_nucleus_accumbens_basal_ganglia 2.78e+00 0.006920 0 13:25784362-13:27284115
1367 13 25502892 25542607 TPTE2P1 cmc.brain.rnaseq_splicing -5.44e-01 0.000191 0 13:25784362-13:27284115
12701 13 26618735 26625169 SHISA2 psychencode -4.06e-01 0.000178 0 13:25784362-13:27284115
1353 13 26706253 26796791 RNF6 adrenal_gland 8.26e-01 0.000231 0 13:25784362-13:27284115
13075 13 25324795 25326309 ANKRD20A10P psychencode 1.30e+00 0.000370 0 13:25784362-13:27284115
1352 13 25457171 25497018 CENPJ brain_cerebellum 8.63e-01 0.000233 0 13:25784362-13:27284115
1383 13 26618735 26625169 SHISA2 thyroid 8.10e-02 0.000164 0 13:25784362-13:27284115
1336 13 27640293 27746033 USP12 yfs.blood.rnaarr 1.85e+00 0.000857 0 13:25784362-13:27284115
1361 13 26706253 26796791 RNF6 pituitary -7.00e-01 0.000209 0 13:25784362-13:27284115
1369 13 25875662 25923938 NUPL1 thyroid 5.06e-01 0.000185 0 13:25784362-13:27284115
1379 13 25502892 25542607 TPTE2P1 cmc.brain.rnaseq_splicing 1.16e-01 0.000166 0 13:25784362-13:27284115
12148 13 26706253 26796791 RNF6 psychencode -1.33e-01 0.000175 0 13:25784362-13:27284115
1359 13 25746966 25754217 AMER2-AS1 brain_putamen_basal_ganglia 7.30e-01 0.000210 0 13:25784362-13:27284115
1343 13 25875665 25916561 NUPL1 cmc.brain.rnaseq_splicing -1.25e+00 0.000356 0 13:25784362-13:27284115
1357 13 25457171 25497018 CENPJ thyroid -7.71e-01 0.000219 0 13:25784362-13:27284115
1328 13 26828276 26979375 CDK8 brain_cerebellum 3.00e+00 0.013300 0 13:25784362-13:27284115
1342 13 25457171 25497018 CENPJ brain_cortex 1.29e+00 0.000362 0 13:25784362-13:27284115
1364 13 27131840 27263085 WASF3 brain_putamen_basal_ganglia 5.30e-01 0.000201 0 13:25784362-13:27284115
13162 13 25746966 25754217 AMER2-AS1 psychencode 8.81e-01 0.000238 0 13:25784362-13:27284115
1334 13 27131840 27263085 WASF3 brain_amygdala 2.00e+00 0.001140 0 13:25784362-13:27284115
1375 13 25456411 25497027 CENPJ cmc.brain.rnaseq 2.84e-01 0.000170 0 13:25784362-13:27284115
1347 13 26828276 26979375 CDK8 adrenal_gland 7.51e-01 0.000295 0 13:25784362-13:27284115
1360 13 25457171 25497018 CENPJ brain_frontal_cortex_ba9 -7.08e-01 0.000210 0 13:25784362-13:27284115
1371 13 26828276 26979375 CDK8 yfs.blood.rnaarr -3.09e-01 0.000174 0 13:25784362-13:27284115
1335 13 27131840 27263085 WASF3 brain_cerebellar_hemisphere 1.93e+00 0.001030 0 13:25784362-13:27284115
1330 13 25498815 25542625 TPTE2P1 brain_nucleus_accumbens_basal_ganglia 2.82e+00 0.007700 0 13:25784362-13:27284115
1348 13 25498815 25542625 TPTE2P1 brain_cerebellar_hemisphere -1.10e+00 0.000294 0 13:25784362-13:27284115
1368 13 25802306 25861704 MTMR6 cmc.brain.rnaseq 5.17e-01 0.000186 0 13:25784362-13:27284115
1366 13 27131840 27263085 WASF3 brain_cerebellum -2.30e-01 0.000196 0 13:25784362-13:27284115
1351 13 25498815 25542625 TPTE2P1 brain_caudate_basal_ganglia -8.79e-01 0.000237 0 13:25784362-13:27284115
1374 13 25946209 26599989 ATP8A2 adrenal_gland 3.33e-01 0.000172 0 13:25784362-13:27284115
1362 13 25802307 25862147 MTMR6 whole_blood 7.10e-01 0.000209 0 13:25784362-13:27284115
1358 13 25498815 25542625 TPTE2P1 adrenal_gland -7.47e-01 0.000213 0 13:25784362-13:27284115
1370 13 25324795 25326309 ANKRD20A10P brain_putamen_basal_ganglia 3.92e-01 0.000177 0 13:25784362-13:27284115
1329 13 27329341 27334922 GPR12 pituitary -2.86e+00 0.009150 0 13:25784362-13:27284115
1372 13 25498815 25542625 TPTE2P1 brain_substantia_nigra 3.41e-01 0.000173 0 13:25784362-13:27284115
1373 13 25498815 25542625 TPTE2P1 brain_cerebellum 3.32e-01 0.000173 0 13:25784362-13:27284115
1377 13 25498815 25542625 TPTE2P1 brain_hypothalamus 2.44e-01 0.000168 0 13:25784362-13:27284115
1376 13 25946209 26599989 ATP8A2 brain_cerebellum -2.57e-01 0.000169 0 13:25784362-13:27284115
1363 13 25802307 25862147 MTMR6 thyroid 6.57e-01 0.000202 0 13:25784362-13:27284115
1378 13 25802307 25862147 MTMR6 yfs.blood.rnaarr 1.94e-01 0.000167 0 13:25784362-13:27284115
1382 13 25324795 25326309 ANKRD20A10P brain_caudate_basal_ganglia 5.99e-02 0.000164 0 13:25784362-13:27284115
1339 13 27131840 27263085 WASF3 brain_anterior_cingulate_cortex_ba24 1.58e+00 0.000546 0 13:25784362-13:27284115
12267 13 25802307 25862147 MTMR6 psychencode 4.89e-01 0.000184 0 13:25784362-13:27284115
1344 13 27131840 27263085 WASF3 brain_hypothalamus -5.10e-01 0.000321 0 13:25784362-13:27284115
1349 13 27131840 27263085 WASF3 thyroid 1.23e-02 0.000243 0 13:25784362-13:27284115
1380 13 25498815 25542625 TPTE2P1 brain_cortex -3.82e-04 0.000164 0 13:25784362-13:27284115
1340 13 25875662 25923938 NUPL1 brain_cortex -1.46e+00 0.000459 0 13:25784362-13:27284115
1381 13 25498815 25542625 TPTE2P1 brain_hippocampus 2.67e-02 0.000164 0 13:25784362-13:27284115
1384 13 25498815 25542625 TPTE2P1 brain_putamen_basal_ganglia 8.74e-04 0.000164 0 13:25784362-13:27284115
1332 13 27329341 27334922 GPR12 thyroid 2.18e+00 0.001640 0 13:25784362-13:27284115
13298 13 25498815 25542625 TPTE2P1 psychencode 4.79e-01 0.000182 0 13:25784362-13:27284115
1345 13 25502892 25542607 TPTE2P1 cmc.brain.rnaseq -1.16e+00 0.000314 0 13:25784362-13:27284115
1365 13 26828755 26978569 CDK8 cmc.brain.rnaseq_splicing -6.03e-01 0.000196 0 13:25784362-13:27284115
1350 13 27131840 27263085 WASF3 brain_caudate_basal_ganglia 8.78e-01 0.000240 0 13:25784362-13:27284115
1338 13 26437388 26437805 RP11-467D10.2 pituitary -1.67e+00 0.000620 0 13:25784362-13:27284115
1337 13 25875661 25916544 NUPL1 ntr.blood.rnaarr -1.79e+00 0.000770 0 13:25784362-13:27284115
1447 13 43597339 43683045 DNAJC15 brain_caudate_basal_ganglia 6.80e-02 0.000237 0 13:43101493-13:44901189
12061 13 43597339 43683045 DNAJC15 psychencode 3.15e-01 0.000242 0 13:43101493-13:44901189
13155 13 44482850 44604597 LINC00284 psychencode -8.49e-01 0.000551 0 13:43101493-13:44901189
1418 13 44398045 44449063 CCDC122 brain_nucleus_accumbens_basal_ganglia -1.76e+00 0.000552 0 13:43101493-13:44901189
1433 13 43597361 43683306 DNAJC15 cmc.brain.rnaseq -2.57e-01 0.000253 0 13:43101493-13:44901189
1435 13 42846289 42897396 AKAP11 brain_cortex 3.44e-01 0.000246 0 13:43101493-13:44901189
1424 13 44542560 44545335 DGKZP1 brain_substantia_nigra 4.87e-01 0.000309 0 13:43101493-13:44901189
1402 13 44808254 44817328 RP11-478K15.6 brain_frontal_cortex_ba9 3.10e+00 0.003710 0 13:43101493-13:44901189
12060 13 43787654 44361044 ENOX1 psychencode -1.62e-01 0.000270 0 13:43101493-13:44901189
1397 13 44410488 44453826 CCDC122 cmc.brain.rnaseq -2.83e+00 0.005940 0 13:43101493-13:44901189
1421 13 44947801 44971850 SERP2 yfs.blood.rnaarr 1.55e+00 0.000434 0 13:43101493-13:44901189
11844 13 42614176 42830714 DGKH psychencode 1.18e+00 0.000418 0 13:43101493-13:44901189
1395 13 44716682 44722166 SMIM2-AS1 brain_hippocampus 3.35e+00 0.007810 0 13:43101493-13:44901189
1409 13 44410488 44453826 CCDC122 cmc.brain.rnaseq_splicing -2.27e+00 0.001780 0 13:43101493-13:44901189
1413 13 43787665 44361116 ENOX1 cmc.brain.rnaseq_splicing 1.47e+00 0.000872 0 13:43101493-13:44901189
1394 13 44716682 44722166 SMIM2-AS1 brain_substantia_nigra 3.36e+00 0.008240 0 13:43101493-13:44901189
13073 13 44680514 44711372 LINC00390 psychencode -3.35e+00 0.007920 0 13:43101493-13:44901189
1428 13 43787665 44361116 ENOX1 cmc.brain.rnaseq_splicing -2.99e-01 0.000265 0 13:43101493-13:44901189
1429 13 43597339 43683045 DNAJC15 brain_cerebellar_hemisphere -3.07e-01 0.000258 0 13:43101493-13:44901189
11627 13 42846289 42897396 AKAP11 psychencode -2.15e+00 0.002310 0 13:43101493-13:44901189
1430 13 43597339 43683045 DNAJC15 brain_anterior_cingulate_cortex_ba24 -3.05e-01 0.000257 0 13:43101493-13:44901189
1401 13 44453419 44468068 LACC1 cmc.brain.rnaseq -2.72e+00 0.003760 0 13:43101493-13:44901189
1405 13 45007655 45151283 TSC22D1 thyroid -2.61e+00 0.003190 0 13:43101493-13:44901189
13156 13 44118054 44122192 ENOX1-AS1 psychencode -1.22e+00 0.000418 0 13:43101493-13:44901189
1422 13 42846288 42897403 AKAP11 cmc.brain.rnaseq_splicing 8.94e-01 0.000351 0 13:43101493-13:44901189
1398 13 44453420 44468068 LACC1 brain_putamen_basal_ganglia -2.65e+00 0.004970 0 13:43101493-13:44901189
1386 13 44716682 44722166 SMIM2-AS1 pituitary 3.89e+00 0.049700 1 13:43101493-13:44901189
1389 13 44398045 44449063 CCDC122 brain_caudate_basal_ganglia -3.26e+00 0.025300 1 13:43101493-13:44901189
1404 13 44453420 44468068 LACC1 brain_hypothalamus -2.79e+00 0.003450 0 13:43101493-13:44901189
1387 13 44716682 44722166 SMIM2-AS1 brain_caudate_basal_ganglia 3.87e+00 0.046000 1 13:43101493-13:44901189
1396 13 44398045 44449063 CCDC122 brain_cerebellum -2.67e+00 0.007310 0 13:43101493-13:44901189
1426 13 43460524 43566385 EPSTI1 whole_blood -7.58e-01 0.000284 0 13:43101493-13:44901189
1388 13 44716682 44722166 SMIM2-AS1 adrenal_gland 3.79e+00 0.036500 1 13:43101493-13:44901189
1415 13 42846289 42897396 AKAP11 brain_anterior_cingulate_cortex_ba24 -1.78e+00 0.000758 0 13:43101493-13:44901189
1431 13 43597339 43683045 DNAJC15 thyroid -2.68e-01 0.000254 0 13:43101493-13:44901189
1399 13 44398045 44449063 CCDC122 brain_putamen_basal_ganglia -2.70e+00 0.003960 0 13:43101493-13:44901189
1400 13 44398045 44449063 CCDC122 thyroid -2.69e+00 0.003890 0 13:43101493-13:44901189
1403 13 44716682 44722166 SMIM2-AS1 brain_nucleus_accumbens_basal_ganglia 3.06e+00 0.003550 0 13:43101493-13:44901189
1411 13 44453420 44468068 LACC1 adrenal_gland -2.05e+00 0.001110 0 13:43101493-13:44901189
1406 13 44398045 44449063 CCDC122 adrenal_gland -2.58e+00 0.003080 0 13:43101493-13:44901189
1432 13 43597339 43683045 DNAJC15 pituitary -2.71e-01 0.000254 0 13:43101493-13:44901189
1434 13 43597339 43683045 DNAJC15 adrenal_gland -1.93e-01 0.000248 0 13:43101493-13:44901189
1436 13 43597339 43683045 DNAJC15 brain_cerebellum -9.03e-02 0.000242 0 13:43101493-13:44901189
1390 13 44716682 44722166 SMIM2-AS1 brain_anterior_cingulate_cortex_ba24 3.66e+00 0.021200 1 13:43101493-13:44901189
1408 13 44716682 44722166 SMIM2-AS1 brain_hypothalamus 1.04e+00 0.002390 0 13:43101493-13:44901189
1427 13 43460524 43566407 EPSTI1 yfs.blood.rnaarr -6.10e-01 0.000281 0 13:43101493-13:44901189
13084 13 44716682 44813010 SMIM2-AS1 psychencode 3.96e+00 0.065800 1 13:43101493-13:44901189
1416 13 44453420 44468068 LACC1 brain_caudate_basal_ganglia -1.70e+00 0.000721 0 13:43101493-13:44901189
1437 13 43597339 43683045 DNAJC15 brain_cortex -6.90e-02 0.000241 0 13:43101493-13:44901189
1448 13 43460524 43566385 EPSTI1 thyroid 6.38e-02 0.000237 0 13:43101493-13:44901189
1419 13 42846289 42897396 AKAP11 brain_cerebellar_hemisphere -1.30e+00 0.000459 0 13:43101493-13:44901189
1438 13 43597339 43683045 DNAJC15 brain_amygdala 2.57e-01 0.000240 0 13:43101493-13:44901189
1439 13 43597339 43683045 DNAJC15 brain_hypothalamus -1.88e-02 0.000239 0 13:43101493-13:44901189
1407 13 44398045 44449063 CCDC122 whole_blood -2.53e+00 0.002470 0 13:43101493-13:44901189
1440 13 43597339 43683045 DNAJC15 brain_frontal_cortex_ba9 1.87e-02 0.000239 0 13:43101493-13:44901189
1412 13 45168994 45170218 SMARCE1P5 brain_cerebellar_hemisphere 2.15e+00 0.001000 0 13:43101493-13:44901189
1442 13 43597339 43683045 DNAJC15 brain_nucleus_accumbens_basal_ganglia 5.02e-02 0.000238 0 13:43101493-13:44901189
1414 13 44398045 44449063 CCDC122 brain_anterior_cingulate_cortex_ba24 -1.86e+00 0.000773 0 13:43101493-13:44901189
1443 13 43597339 43683045 DNAJC15 brain_hippocampus 1.42e-01 0.000238 0 13:43101493-13:44901189
1444 13 43597339 43683045 DNAJC15 whole_blood 4.03e-02 0.000238 0 13:43101493-13:44901189
1420 13 42846289 42897396 AKAP11 brain_frontal_cortex_ba9 -1.08e+00 0.000448 0 13:43101493-13:44901189
1385 13 44808254 44817328 RP11-478K15.6 adrenal_gland 4.46e+00 0.512000 1 13:43101493-13:44901189
1417 13 44453420 44468068 LACC1 brain_cerebellum -1.09e+00 0.000711 0 13:43101493-13:44901189
12192 13 43460524 43566407 EPSTI1 psychencode 1.65e+00 0.000810 0 13:43101493-13:44901189
1445 13 43597339 43683045 DNAJC15 brain_putamen_basal_ganglia 3.70e-02 0.000238 0 13:43101493-13:44901189
1391 13 44808254 44817328 RP11-478K15.6 brain_nucleus_accumbens_basal_ganglia 3.51e+00 0.016600 1 13:43101493-13:44901189
1446 13 43597339 43683045 DNAJC15 brain_substantia_nigra 7.40e-02 0.000237 0 13:43101493-13:44901189
1393 13 44808254 44817328 RP11-478K15.6 pituitary 3.42e+00 0.009630 0 13:43101493-13:44901189
1423 13 44453420 44468068 LACC1 brain_hippocampus -4.02e-01 0.000344 0 13:43101493-13:44901189
1392 13 44716682 44722166 SMIM2-AS1 thyroid 3.55e+00 0.015600 1 13:43101493-13:44901189
12687 13 44453420 44468068 LACC1 psychencode -2.14e+00 0.001260 0 13:43101493-13:44901189
1441 13 43462121 43566377 EPSTI1 ntr.blood.rnaarr 2.41e-01 0.000239 0 13:43101493-13:44901189
1425 13 42846289 42897396 AKAP11 pituitary 7.45e-01 0.000307 0 13:43101493-13:44901189
1410 13 44398045 44449063 CCDC122 brain_cerebellar_hemisphere -1.90e+00 0.001190 0 13:43101493-13:44901189
1489 13 53029494 53050762 CKAP2 ntr.blood.rnaarr -3.78e-01 0.000227 0 13:53339645-13:54682393
1475 13 53602894 53626192 OLFM4 brain_cortex 1.55e+00 0.000295 0 13:53339645-13:54682393
1465 13 53191605 53217919 HNRNPA1L2 brain_hippocampus -1.30e+00 0.000402 0 13:53339645-13:54682393
1486 13 53602894 53626192 OLFM4 thyroid -1.79e-01 0.000241 0 13:53339645-13:54682393
1474 13 53191605 53217919 HNRNPA1L2 brain_putamen_basal_ganglia -9.45e-01 0.000307 0 13:53339645-13:54682393
1468 13 53029564 53050763 CKAP2 brain_cerebellum -8.07e-01 0.000398 0 13:53339645-13:54682393
1470 13 53029564 53050763 CKAP2 whole_blood -3.69e-01 0.000328 0 13:53339645-13:54682393
1480 13 53418109 53422775 PCDH8 brain_frontal_cortex_ba9 -2.42e+00 0.000270 0 13:53339645-13:54682393
1471 13 53029564 53050763 CKAP2 brain_cerebellar_hemisphere -1.23e+00 0.000328 0 13:53339645-13:54682393
1479 13 53191605 53217919 HNRNPA1L2 brain_cerebellar_hemisphere -1.25e-01 0.000282 0 13:53339645-13:54682393
1481 13 53191605 53217919 HNRNPA1L2 brain_anterior_cingulate_cortex_ba24 7.59e-01 0.000268 0 13:53339645-13:54682393
11846 13 53602894 53626192 OLFM4 psychencode 1.99e+00 0.001030 0 13:53339645-13:54682393
1485 13 53418109 53422775 PCDH8 brain_putamen_basal_ganglia 4.56e-01 0.000251 0 13:53339645-13:54682393
1472 13 53029564 53050763 CKAP2 adrenal_gland -9.38e-01 0.000313 0 13:53339645-13:54682393
1473 13 55014839 55015450 RPL13AP25 adrenal_gland 1.22e+00 0.000313 0 13:53339645-13:54682393
1482 13 53029564 53050763 CKAP2 thyroid -2.09e+00 0.000264 0 13:53339645-13:54682393
1484 13 53191605 53217919 HNRNPA1L2 brain_hypothalamus 1.10e+00 0.000262 0 13:53339645-13:54682393
1483 13 53029564 53050763 CKAP2 brain_substantia_nigra -2.00e+00 0.000263 0 13:53339645-13:54682393
1488 13 53191605 53217919 HNRNPA1L2 adrenal_gland -8.51e-02 0.000229 0 13:53339645-13:54682393
1466 13 53029564 53050763 CKAP2 brain_anterior_cingulate_cortex_ba24 2.11e+00 0.000399 0 13:53339645-13:54682393
1491 13 53029564 53050763 CKAP2 brain_caudate_basal_ganglia 5.88e-01 0.000226 0 13:53339645-13:54682393
1492 13 53029564 53050763 CKAP2 brain_amygdala 3.87e-01 0.000225 0 13:53339645-13:54682393
12226 13 53029564 53050763 CKAP2 psychencode 1.49e+00 0.000498 0 13:53339645-13:54682393
1451 13 53073441 53161222 TPTE2P3 brain_frontal_cortex_ba9 2.32e-01 0.011700 0 13:53339645-13:54682393
1487 13 52986736 53024763 VPS36 cmc.brain.rnaseq -9.34e-01 0.000237 0 13:53339645-13:54682393
1456 13 53073441 53161222 TPTE2P3 brain_cerebellum -2.51e+00 0.000802 0 13:53339645-13:54682393
1467 13 53029564 53050763 CKAP2 brain_hypothalamus 2.11e+00 0.000399 0 13:53339645-13:54682393
1494 13 52986737 53024757 VPS36 brain_caudate_basal_ganglia -4.50e-01 0.000222 0 13:53339645-13:54682393
1463 13 53073441 53161222 TPTE2P3 brain_caudate_basal_ganglia -1.43e+00 0.000408 0 13:53339645-13:54682393
1478 13 52986737 53024757 VPS36 whole_blood -5.32e-01 0.000284 0 13:53339645-13:54682393
1493 13 53073441 53161222 TPTE2P3 brain_nucleus_accumbens_basal_ganglia -6.10e-01 0.000224 0 13:53339645-13:54682393
12224 13 53418109 53422775 PCDH8 psychencode 1.12e-01 0.000341 0 13:53339645-13:54682393
1453 13 53191604 53217919 HNRNPA1L2 cmc.brain.rnaseq -1.62e+00 0.001080 0 13:53339645-13:54682393
1458 13 53191605 53217919 HNRNPA1L2 brain_nucleus_accumbens_basal_ganglia 1.28e+00 0.000567 0 13:53339645-13:54682393
1455 13 52793479 52908412 TPTE2P2 brain_hypothalamus -2.45e+00 0.001010 0 13:53339645-13:54682393
1476 13 52951302 52980629 THSD1 cmc.brain.rnaseq 2.68e+00 0.000295 0 13:53339645-13:54682393
1449 13 53602875 53626196 OLFM4 cmc.brain.rnaseq 5.31e+00 0.992000 1 13:53339645-13:54682393
12268 13 53191605 53217919 HNRNPA1L2 psychencode -3.81e-02 0.000359 0 13:53339645-13:54682393
1450 13 53226844 53275044 SUGT1 thyroid -3.87e+00 0.014000 0 13:53339645-13:54682393
1460 13 52793479 52908412 TPTE2P2 brain_amygdala -1.32e+00 0.000479 0 13:53339645-13:54682393
12229 13 52951305 52980629 THSD1 psychencode 7.18e-01 0.000425 0 13:53339645-13:54682393
1490 13 53226844 53275044 SUGT1 whole_blood 7.56e-01 0.000226 0 13:53339645-13:54682393
1452 13 53602894 53626192 OLFM4 whole_blood -1.41e+00 0.011500 0 13:53339645-13:54682393
1459 13 52951305 52980629 THSD1 brain_cerebellar_hemisphere -5.71e-01 0.000493 0 13:53339645-13:54682393
12518 13 53226844 53275044 SUGT1 psychencode -1.51e+00 0.000249 0 13:53339645-13:54682393
1462 13 52793479 52908412 TPTE2P2 brain_caudate_basal_ganglia 2.45e+00 0.000410 0 13:53339645-13:54682393
1477 13 53277399 53313947 LECT1 thyroid -6.56e-01 0.000288 0 13:53339645-13:54682393
12227 13 53277399 53313947 LECT1 psychencode 1.50e+00 0.000342 0 13:53339645-13:54682393
1461 13 53191605 53217919 HNRNPA1L2 brain_substantia_nigra 2.84e+00 0.000456 0 13:53339645-13:54682393
1469 13 53394632 53395153 PPIAP26 thyroid -9.66e-01 0.000337 0 13:53339645-13:54682393
1464 13 53418109 53422775 PCDH8 thyroid -5.42e-01 0.000405 0 13:53339645-13:54682393
1454 13 53029564 53050763 CKAP2 brain_nucleus_accumbens_basal_ganglia -1.09e+00 0.001050 0 13:53339645-13:54682393
12225 13 52986737 53024763 VPS36 psychencode -5.86e-01 0.000369 0 13:53339645-13:54682393
1457 13 53418108 53422775 PCDH8 cmc.brain.rnaseq 3.23e+00 0.000706 0 13:53339645-13:54682393
12763 13 66876967 67804468 PCDH9 psychencode -7.44e-01 0.000205 0 13:65200602-13:67844453
1496 13 66876965 67804468 PCDH9 cmc.brain.rnaseq_splicing 2.15e+00 0.001480 0 13:65200602-13:67844453
1495 13 66876967 67804468 PCDH9 thyroid -2.38e+00 0.002440 0 13:65200602-13:67844453
13158 13 67565018 67576139 PCDH9-AS4 psychencode -3.34e-01 0.000166 0 13:65200602-13:67844453
1497 13 66876967 67804468 PCDH9 thyroid -1.67e+00 0.000612 0 13:67844453-13:70724516
1503 13 70689273 70713561 ATXN8OS pituitary 3.94e-01 0.000169 0 13:67844453-13:70724516
1506 13 70274724 70682625 KLHL1 cmc.brain.rnaseq 6.23e-02 0.000157 0 13:67844453-13:70724516
1498 13 66876965 67804468 PCDH9 cmc.brain.rnaseq_splicing -1.08e+00 0.000276 0 13:67844453-13:70724516
1500 13 70274726 70682591 KLHL1 pituitary 1.02e+00 0.000259 0 13:67844453-13:70724516
1504 13 70274726 70682591 KLHL1 brain_hippocampus -3.81e-01 0.000169 0 13:67844453-13:70724516
1502 13 70689273 70713561 ATXN8OS brain_cerebellar_hemisphere -9.41e-01 0.000242 0 13:67844453-13:70724516
13159 13 67565018 67576139 PCDH9-AS4 psychencode 6.82e-01 0.000197 0 13:67844453-13:70724516
1501 13 70274726 70682591 KLHL1 brain_cortex 9.62e-01 0.000247 0 13:67844453-13:70724516
12764 13 66876967 67804468 PCDH9 psychencode -7.66e-01 0.000209 0 13:67844453-13:70724516
1505 13 70274726 70682591 KLHL1 brain_caudate_basal_ganglia -3.31e-01 0.000166 0 13:67844453-13:70724516
13115 13 70681345 70713561 ATXN8OS psychencode -1.06e+00 0.000271 0 13:67844453-13:70724516
1499 13 70689273 70713561 ATXN8OS brain_cerebellum -1.07e+00 0.000273 0 13:67844453-13:70724516
1513 13 75858808 76056250 TBC1D4 adrenal_gland -2.38e+00 0.001850 0 13:75670143-13:77410555
1517 13 75858808 76056250 TBC1D4 yfs.blood.rnaarr -1.55e+00 0.000650 0 13:75670143-13:77410555
1545 13 76099350 76123575 COMMD6 adrenal_gland 4.35e-02 0.000222 0 13:75670143-13:77410555
1525 13 76123615 76180156 UCHL3 cmc.brain.rnaseq_splicing 8.23e-01 0.000383 0 13:75670143-13:77410555
1551 13 76123615 76180156 UCHL3 cmc.brain.rnaseq -1.26e-01 0.000211 0 13:75670143-13:77410555
1543 13 76178964 76210130 RP11-173B14.5 brain_cortex 4.89e-01 0.000229 0 13:75670143-13:77410555
1546 13 76099349 76111991 COMMD6 cmc.brain.rnaseq_splicing -5.75e-01 0.000220 0 13:75670143-13:77410555
1532 13 75858808 76056250 TBC1D4 brain_cerebellum -6.97e-01 0.000289 0 13:75670143-13:77410555
1529 13 76194569 76434006 LMO7 cmc.brain.rnaseq 8.22e-01 0.000319 0 13:75670143-13:77410555
1531 13 76194569 76434006 LMO7 cmc.brain.rnaseq_splicing 8.99e-01 0.000290 0 13:75670143-13:77410555
1507 13 75858808 76056250 TBC1D4 whole_blood -4.09e+00 0.341000 0 13:75670143-13:77410555
1522 13 76123619 76180085 UCHL3 brain_frontal_cortex_ba9 7.22e-01 0.000436 0 13:75670143-13:77410555
1508 13 75858808 76056250 TBC1D4 cmc.brain.rnaseq -3.24e+00 0.021500 0 13:75670143-13:77410555
12228 13 75858808 76056250 TBC1D4 psychencode -3.22e+00 0.017700 0 13:75670143-13:77410555
1515 13 76123619 76180085 UCHL3 brain_nucleus_accumbens_basal_ganglia 1.04e+00 0.001060 0 13:75670143-13:77410555
1511 13 76123619 76180085 UCHL3 brain_putamen_basal_ganglia 1.50e+00 0.003030 0 13:75670143-13:77410555
1520 13 75858808 76056250 TBC1D4 ntr.blood.rnaarr -1.53e+00 0.000532 0 13:75670143-13:77410555
1552 13 76205407 76206271 RP11-173B14.4 thyroid -2.95e-01 0.000206 0 13:75670143-13:77410555
1537 13 76194569 76434006 LMO7 cmc.brain.rnaseq_splicing -9.72e-01 0.000260 0 13:75670143-13:77410555
1523 13 76123619 76180085 UCHL3 yfs.blood.rnaarr -6.40e-01 0.000413 0 13:75670143-13:77410555
1542 13 76194569 76434006 LMO7 cmc.brain.rnaseq_splicing 5.05e-01 0.000229 0 13:75670143-13:77410555
13099 13 76205407 76206271 RP11-173B14.4 psychencode -2.31e-01 0.000205 0 13:75670143-13:77410555
1516 13 76123619 76180085 UCHL3 brain_anterior_cingulate_cortex_ba24 9.94e-01 0.000905 0 13:75670143-13:77410555
1541 13 76178964 76210130 RP11-173B14.5 adrenal_gland 4.97e-01 0.000230 0 13:75670143-13:77410555
1539 13 76123619 76180085 UCHL3 adrenal_gland -3.86e-01 0.000235 0 13:75670143-13:77410555
1524 13 76123619 76180085 UCHL3 brain_caudate_basal_ganglia 8.22e-01 0.000398 0 13:75670143-13:77410555
1512 13 76099349 76111991 COMMD6 cmc.brain.rnaseq_splicing -2.39e+00 0.002210 0 13:75670143-13:77410555
13401 13 76178836 76210130 RP11-173B14.5 psychencode 4.12e-01 0.000217 0 13:75670143-13:77410555
1548 13 76123619 76180085 UCHL3 pituitary -2.25e-01 0.000218 0 13:75670143-13:77410555
13125 13 76262692 76263333 FAM204CP psychencode 4.06e-01 0.000208 0 13:75670143-13:77410555
1521 13 76194570 76434004 LMO7 brain_cerebellum 1.35e+00 0.000446 0 13:75670143-13:77410555
1547 13 76099349 76111991 COMMD6 cmc.brain.rnaseq_splicing 4.70e-01 0.000219 0 13:75670143-13:77410555
1544 13 76205407 76206271 RP11-173B14.4 brain_cerebellar_hemisphere -4.99e-01 0.000222 0 13:75670143-13:77410555
12015 13 76123619 76180085 UCHL3 psychencode 2.16e-01 0.000242 0 13:75670143-13:77410555
1509 13 76445187 76457947 C13orf45 brain_substantia_nigra -2.79e+00 0.006010 0 13:75670143-13:77410555
1519 13 76445187 76457947 C13orf45 thyroid -1.70e+00 0.000556 0 13:75670143-13:77410555
12678 13 76445187 76457947 C13orf45 psychencode -9.09e-01 0.000271 0 13:75670143-13:77410555
1528 13 77454312 77460540 KCTD12 yfs.blood.rnaarr 1.10e+00 0.000354 0 13:75670143-13:77410555
12677 13 77454312 77460540 KCTD12 psychencode 3.97e-01 0.000210 0 13:75670143-13:77410555
1533 13 77564795 77576652 CLN5 yfs.blood.rnaarr 9.28e-01 0.000284 0 13:75670143-13:77410555
1538 13 77564795 77576652 CLN5 brain_cortex -4.83e-01 0.000237 0 13:75670143-13:77410555
1540 13 77564795 77576652 CLN5 adrenal_gland -5.74e-01 0.000234 0 13:75670143-13:77410555
11845 13 77564795 77576652 CLN5 psychencode 1.28e+00 0.000543 0 13:75670143-13:77410555
1549 13 77566058 77576652 CLN5 cmc.brain.rnaseq 4.52e-01 0.000216 0 13:75670143-13:77410555
1527 13 75858808 76056250 TBC1D4 thyroid -1.28e+00 0.000367 0 13:75670143-13:77410555
1550 13 76099350 76123575 COMMD6 yfs.blood.rnaarr -1.77e-01 0.000211 0 13:75670143-13:77410555
1553 13 77618791 77901177 MYCBP2 cmc.brain.rnaseq_splicing -2.31e-01 0.000203 0 13:75670143-13:77410555
1530 13 76178964 76210130 RP11-173B14.5 thyroid 7.73e-01 0.000303 0 13:75670143-13:77410555
1526 13 77649649 77661913 MYCBP2-AS1 thyroid -1.10e+00 0.000369 0 13:75670143-13:77410555
1534 13 76123619 76180085 UCHL3 brain_cortex 4.20e-01 0.000270 0 13:75670143-13:77410555
1535 13 76194570 76434004 LMO7 brain_cortex 9.61e-01 0.000266 0 13:75670143-13:77410555
1514 13 76123619 76180085 UCHL3 brain_amygdala 1.19e+00 0.001450 0 13:75670143-13:77410555
1510 13 76205407 76206271 RP11-173B14.4 whole_blood 2.60e+00 0.003160 0 13:75670143-13:77410555
12230 13 76194570 76434004 LMO7 psychencode 6.40e-01 0.000301 0 13:75670143-13:77410555
1536 13 76178964 76210130 RP11-173B14.5 brain_frontal_cortex_ba9 7.53e-01 0.000261 0 13:75670143-13:77410555
13416 13 76123909 76381256 RP11-29G8.3 psychencode 1.49e+00 0.000506 0 13:75670143-13:77410555
1518 13 75858808 76056250 TBC1D4 brain_cortex -1.82e+00 0.000613 0 13:75670143-13:77410555
1558 13 79188426 79233314 RNF219 yfs.blood.rnaarr -2.47e+00 0.003490 0 13:78808914-13:80585554
1590 13 79980444 79998463 RBM26-AS1 adrenal_gland 3.40e-01 0.000234 0 13:78808914-13:80585554
1587 13 79980444 79998463 RBM26-AS1 brain_anterior_cingulate_cortex_ba24 4.48e-01 0.000239 0 13:78808914-13:80585554
1557 13 80140881 80144983 LINC01068 brain_cerebellar_hemisphere -2.47e+00 0.004610 0 13:78808914-13:80585554
1562 13 79188426 79233314 RNF219 brain_anterior_cingulate_cortex_ba24 1.61e+00 0.000678 0 13:78808914-13:80585554
1555 13 78493904 79191463 RNF219-AS1 brain_frontal_cortex_ba9 3.27e+00 0.008700 0 13:78808914-13:80585554
1586 13 79980444 79998463 RBM26-AS1 brain_nucleus_accumbens_basal_ganglia 4.35e-01 0.000243 0 13:78808914-13:80585554
1563 13 79885962 79980350 RBM26 brain_cerebellar_hemisphere 1.29e+00 0.000512 0 13:78808914-13:80585554
1554 13 78513297 78519009 RP11-318G21.4 brain_caudate_basal_ganglia -4.46e+00 0.718000 1 13:78808914-13:80585554
1560 13 80055258 80130212 NDFIP2 cmc.brain.rnaseq -1.94e+00 0.001380 0 13:78808914-13:80585554
12271 13 79885962 79980612 RBM26 psychencode 2.27e+00 0.003090 0 13:78808914-13:80585554
1565 13 80055258 80130212 NDFIP2 cmc.brain.rnaseq_splicing 8.15e-01 0.000363 0 13:78808914-13:80585554
1566 13 78513297 78519009 RP11-318G21.4 brain_substantia_nigra -1.61e+00 0.000361 0 13:78808914-13:80585554
1561 13 78996958 78997327 RPL31P54 brain_hypothalamus 1.59e+00 0.000783 0 13:78808914-13:80585554
1568 13 80910111 80915086 SPRY2 brain_cerebellar_hemisphere 1.04e+00 0.000358 0 13:78808914-13:80585554
1579 13 79980444 79998463 RBM26-AS1 brain_putamen_basal_ganglia 6.20e-01 0.000267 0 13:78808914-13:80585554
1556 13 79894099 79979923 RBM26 cmc.brain.rnaseq_splicing 2.60e+00 0.007690 0 13:78808914-13:80585554
1569 13 78996958 78997327 RPL31P54 brain_caudate_basal_ganglia -1.07e+00 0.000355 0 13:78808914-13:80585554
1580 13 79980444 79998463 RBM26-AS1 whole_blood -5.50e-01 0.000266 0 13:78808914-13:80585554
1574 13 79885962 79980612 RBM26 yfs.blood.rnaarr -9.16e-01 0.000323 0 13:78808914-13:80585554
1559 13 79894099 79979923 RBM26 cmc.brain.rnaseq_splicing 2.04e+00 0.001920 0 13:78808914-13:80585554
1584 13 79894142 79980400 RBM26 ntr.blood.rnaarr -6.14e-01 0.000260 0 13:78808914-13:80585554
1589 13 79980444 79998463 RBM26-AS1 brain_caudate_basal_ganglia 3.36e-01 0.000235 0 13:78808914-13:80585554
11843 13 80055287 80130210 NDFIP2 psychencode -2.18e+00 0.002820 0 13:78808914-13:80585554
1591 13 79980443 79998468 RBM26-AS1 cmc.brain.rnaseq 2.36e-01 0.000227 0 13:78808914-13:80585554
13086 13 79980444 79998463 RBM26-AS1 psychencode 7.91e-01 0.000300 0 13:78808914-13:80585554
1581 13 79980444 79998463 RBM26-AS1 brain_amygdala 6.31e-01 0.000264 0 13:78808914-13:80585554
12231 13 78469616 78493903 EDNRB psychencode 7.14e-01 0.000263 0 13:78808914-13:80585554
1567 13 79980444 79998463 RBM26-AS1 brain_frontal_cortex_ba9 9.88e-01 0.000360 0 13:78808914-13:80585554
1572 13 78996958 78997327 RPL31P54 brain_anterior_cingulate_cortex_ba24 -1.04e+00 0.000332 0 13:78808914-13:80585554
1570 13 79980444 79998463 RBM26-AS1 brain_hypothalamus 1.01e+00 0.000350 0 13:78808914-13:80585554
1582 13 79980444 79998463 RBM26-AS1 brain_cortex 6.32e-01 0.000263 0 13:78808914-13:80585554
1588 13 79980444 79998463 RBM26-AS1 brain_hippocampus 3.26e-01 0.000235 0 13:78808914-13:80585554
1592 13 80910111 80915086 SPRY2 cmc.brain.rnaseq_splicing -9.82e-02 0.000223 0 13:78808914-13:80585554
1576 13 78996958 78997327 RPL31P54 brain_amygdala -7.54e-01 0.000298 0 13:78808914-13:80585554
1583 13 79980444 79998463 RBM26-AS1 brain_cerebellar_hemisphere 6.00e-01 0.000261 0 13:78808914-13:80585554
1593 13 80910111 80915086 SPRY2 yfs.blood.rnaarr 1.44e-01 0.000222 0 13:78808914-13:80585554
1564 13 80055367 80130210 NDFIP2 brain_cortex -1.35e+00 0.000491 0 13:78808914-13:80585554
1571 13 79980444 79998463 RBM26-AS1 thyroid 9.68e-01 0.000344 0 13:78808914-13:80585554
1577 13 78996958 78997327 RPL31P54 brain_nucleus_accumbens_basal_ganglia -1.04e+00 0.000286 0 13:78808914-13:80585554
1578 13 78996958 78997327 RPL31P54 brain_putamen_basal_ganglia -8.73e-01 0.000283 0 13:78808914-13:80585554
1585 13 79980444 79998463 RBM26-AS1 pituitary 6.34e-01 0.000260 0 13:78808914-13:80585554
1573 13 78469616 78493823 EDNRB brain_caudate_basal_ganglia 8.09e-01 0.000325 0 13:78808914-13:80585554
1575 13 79980444 79998463 RBM26-AS1 brain_cerebellum 9.06e-01 0.000314 0 13:78808914-13:80585554
13361 14 28081794 28108842 LINC00645 psychencode 1.71e+00 0.000648 0 14:26136021-14:28466533
1595 14 26912299 27066960 NOVA1 brain_putamen_basal_ganglia -2.16e+00 0.001530 0 14:26136021-14:28466533
1594 14 28733596 28735180 BNIP3P1 thyroid -2.70e+00 0.005380 0 14:26136021-14:28466533
1596 14 26912299 27066960 NOVA1 thyroid -1.12e+00 0.000290 0 14:26136021-14:28466533
1612 14 31896713 31897394 RP11-176H8.1 brain_putamen_basal_ganglia 5.69e-01 0.000191 0 14:32383424-14:34845674
1613 14 35030617 35099360 SNX6 ntr.blood.rnaarr 6.06e-01 0.000190 0 14:32383424-14:34845674
1620 14 31896713 31897394 RP11-176H8.1 brain_substantia_nigra 2.82e-01 0.000165 0 14:32383424-14:34845674
1614 14 35030617 35099366 SNX6 cmc.brain.rnaseq -6.00e-01 0.000189 0 14:32383424-14:34845674
12517 14 35179593 35184029 CFL2 psychencode 1.25e+00 0.000341 0 14:32383424-14:34845674
1621 14 31760993 31889788 HEATR5A cmc.brain.rnaseq 6.88e-02 0.000162 0 14:32383424-14:34845674
1618 14 31760994 31889491 HEATR5A brain_frontal_cortex_ba9 3.29e-01 0.000169 0 14:32383424-14:34845674
1619 14 31760994 31889491 HEATR5A brain_hippocampus -2.56e-01 0.000167 0 14:32383424-14:34845674
1600 14 31959162 32330430 NUBPL brain_cerebellar_hemisphere -1.94e+00 0.000987 0 14:32383424-14:34845674
12368 14 31959162 32330430 NUBPL psychencode 2.00e+00 0.001110 0 14:32383424-14:34845674
1603 14 32030590 32330429 NUBPL cmc.brain.rnaseq 1.63e+00 0.000585 0 14:32383424-14:34845674
1608 14 32798479 33300567 AKAP6 adrenal_gland 1.16e+00 0.000307 0 14:32383424-14:34845674
12161 14 31760994 31889788 HEATR5A psychencode -4.19e-01 0.000173 0 14:32383424-14:34845674
1598 14 31915244 31926716 C14orf126 ntr.blood.rnaarr 2.29e+00 0.002030 0 14:32383424-14:34845674
1615 14 32798479 33300567 AKAP6 pituitary -5.47e-01 0.000185 0 14:32383424-14:34845674
1616 14 32798479 33300567 AKAP6 thyroid -5.26e-01 0.000182 0 14:32383424-14:34845674
1601 14 31896713 31897394 RP11-176H8.1 brain_anterior_cingulate_cortex_ba24 -1.88e+00 0.000882 0 14:32383424-14:34845674
12367 14 32798479 33300567 AKAP6 psychencode -2.27e-01 0.000163 0 14:32383424-14:34845674
13438 14 32911547 32911843 RN7SL660P psychencode -6.43e-01 0.000194 0 14:32383424-14:34845674
1606 14 33404139 34273382 NPAS3 brain_amygdala -1.35e+00 0.000387 0 14:32383424-14:34845674
1622 14 33408458 34273382 NPAS3 cmc.brain.rnaseq_splicing -1.18e-01 0.000160 0 14:32383424-14:34845674
1617 14 34393437 34931980 EGLN3 yfs.blood.rnaarr -4.69e-01 0.000177 0 14:32383424-14:34845674
1599 14 31915242 31926716 DTD2 brain_cortex 1.98e+00 0.001070 0 14:32383424-14:34845674
1607 14 31896713 31897394 RP11-176H8.1 pituitary -1.17e+00 0.000321 0 14:32383424-14:34845674
1605 14 34901995 34931562 SPTSSA whole_blood -1.39e+00 0.000405 0 14:32383424-14:34845674
12516 14 34901995 34931562 SPTSSA psychencode -1.05e+00 0.000271 0 14:32383424-14:34845674
1609 14 31915242 31926716 DTD2 brain_hypothalamus -1.11e+00 0.000288 0 14:32383424-14:34845674
12162 14 34985135 35008916 EAPP psychencode 2.61e-01 0.000164 0 14:32383424-14:34845674
1597 14 31959162 32330430 NUBPL brain_caudate_basal_ganglia -2.36e+00 0.002370 0 14:32383424-14:34845674
1610 14 31915242 31926716 DTD2 brain_frontal_cortex_ba9 8.15e-01 0.000219 0 14:32383424-14:34845674
1602 14 35030300 35099389 SNX6 whole_blood -1.71e+00 0.000654 0 14:32383424-14:34845674
1604 14 35030300 35099389 SNX6 yfs.blood.rnaarr -1.53e+00 0.000497 0 14:32383424-14:34845674
1611 14 31896713 31897394 RP11-176H8.1 brain_hypothalamus -7.45e-01 0.000208 0 14:32383424-14:34845674
12160 14 31915242 31926716 DTD2 psychencode 2.18e+00 0.001580 0 14:32383424-14:34845674
13360 14 42211842 42212166 RP11-1053O12.1 psychencode -3.68e+00 0.000638 0 14:41615719-14:43137256
1626 14 41424103 41445082 RP11-129M6.1 thyroid -2.79e+00 0.007960 0 14:41615719-14:43137256
1623 14 42057064 42074059 CTD-2298J14.2 thyroid -5.64e+00 0.549000 1 14:41615719-14:43137256
13363 14 42057064 42074059 CTD-2298J14.2 psychencode 3.59e+00 0.000539 0 14:41615719-14:43137256
1627 14 42076763 42373752 LRFN5 cmc.brain.rnaseq_splicing -3.09e+00 0.000505 0 14:41615719-14:43137256
1628 14 42076763 42373752 LRFN5 cmc.brain.rnaseq_splicing 2.80e+00 0.000292 0 14:41615719-14:43137256
1629 14 42076763 42373752 LRFN5 cmc.brain.rnaseq -2.56e+00 0.000290 0 14:41615719-14:43137256
1630 14 42076763 42373752 LRFN5 cmc.brain.rnaseq_splicing -1.65e+00 0.000231 0 14:41615719-14:43137256
1631 14 42076763 42373752 LRFN5 cmc.brain.rnaseq_splicing 8.14e-01 0.000228 0 14:41615719-14:43137256
1624 14 42076773 42373752 LRFN5 brain_cerebellum 5.59e+00 0.416000 0 14:41615719-14:43137256
1625 14 42076773 42373752 LRFN5 brain_cerebellar_hemisphere 5.12e+00 0.035200 0 14:41615719-14:43137256
12515 14 42076773 42373752 LRFN5 psychencode -2.64e+00 0.000296 0 14:41615719-14:43137256
12519 14 59100685 59115039 DACT1 psychencode 2.99e-01 0.000288 0 14:59448336-14:61680201
1670 14 59655364 59838123 DAAM1 yfs.blood.rnaarr -1.93e+00 0.000396 0 14:59448336-14:61680201
1710 14 60558629 60635851 PCNXL4 brain_amygdala 4.96e-01 0.000236 0 14:59448336-14:61680201
1648 14 59927081 59951148 L3HYPDH brain_cerebellum 2.84e+00 0.000991 0 14:59448336-14:61680201
13403 14 60386141 60387057 RP11-62H20.1 psychencode 8.45e-02 0.000252 0 14:59448336-14:61680201
1637 14 59951160 59972081 JKAMP cmc.brain.rnaseq -3.72e+00 0.002050 0 14:59448336-14:61680201
13237 14 61764882 61789536 RP11-902B17.1 psychencode -5.64e-01 0.000385 0 14:59448336-14:61680201
1655 14 59895740 59932060 GPR135 brain_cerebellum 2.79e+00 0.000750 0 14:59448336-14:61680201
1646 14 59927081 59951148 L3HYPDH brain_hippocampus 3.15e+00 0.001080 0 14:59448336-14:61680201
1636 14 59927081 59951148 L3HYPDH whole_blood 3.24e+00 0.002710 0 14:59448336-14:61680201
1658 14 60712470 60765805 PPM1A pituitary 1.35e+00 0.000605 0 14:59448336-14:61680201
1687 14 60610838 60636574 DHRS7 brain_cortex 1.45e+00 0.000307 0 14:59448336-14:61680201
1695 14 60062693 60337557 RTN1 cmc.brain.rnaseq_splicing 1.58e+00 0.000260 0 14:59448336-14:61680201
1640 14 59927081 59951148 L3HYPDH brain_nucleus_accumbens_basal_ganglia 2.96e+00 0.001360 0 14:59448336-14:61680201
1641 14 59927081 59951148 L3HYPDH adrenal_gland 3.16e+00 0.001230 0 14:59448336-14:61680201
1639 14 59895740 59932060 GPR135 brain_caudate_basal_ganglia -6.57e-01 0.001590 0 14:59448336-14:61680201
1713 14 59655380 59838123 DAAM1 cmc.brain.rnaseq_splicing -1.36e-01 0.000227 0 14:59448336-14:61680201
1642 14 59927081 59951148 L3HYPDH thyroid 2.99e+00 0.001170 0 14:59448336-14:61680201
1700 14 60558629 60635851 PCNXL4 thyroid -2.59e-01 0.000242 0 14:59448336-14:61680201
1693 14 60611499 60636561 DHRS7 cmc.brain.rnaseq 1.70e+00 0.000271 0 14:59448336-14:61680201
1705 14 62023031 62037257 RP11-47I22.2 brain_cerebellum 3.95e-02 0.000240 0 14:59448336-14:61680201
1681 14 59895740 59932060 GPR135 brain_nucleus_accumbens_basal_ganglia 2.95e+00 0.000333 0 14:59448336-14:61680201
1665 14 59971779 60043549 CCDC175 pituitary 1.15e+00 0.000452 0 14:59448336-14:61680201
1649 14 59927081 59951148 L3HYPDH pituitary 3.44e+00 0.000981 0 14:59448336-14:61680201
1678 14 62037372 62125414 RP11-47I22.3 thyroid -6.33e-01 0.000345 0 14:59448336-14:61680201
1662 14 60712469 60765805 PPM1A cmc.brain.rnaseq_splicing 1.21e+00 0.000505 0 14:59448336-14:61680201
1643 14 59655398 59838123 DAAM1 brain_cerebellar_hemisphere -2.51e+00 0.001140 0 14:59448336-14:61680201
1697 14 60610838 60636574 DHRS7 brain_caudate_basal_ganglia -5.34e-01 0.000254 0 14:59448336-14:61680201
1682 14 59895740 59932060 GPR135 brain_putamen_basal_ganglia 9.66e-01 0.000321 0 14:59448336-14:61680201
1671 14 60981837 61021634 RP11-1042B17.3 thyroid 1.12e+00 0.000391 0 14:59448336-14:61680201
1659 14 60712470 60765805 PPM1A brain_cerebellum 1.28e+00 0.000574 0 14:59448336-14:61680201
1690 14 59895740 59932060 GPR135 brain_anterior_cingulate_cortex_ba24 1.34e+00 0.000285 0 14:59448336-14:61680201
1692 14 61176246 61191066 SIX4 thyroid 4.81e-01 0.000272 0 14:59448336-14:61680201
1676 14 61764882 61789536 RP11-902B17.1 brain_cortex -7.66e-01 0.000361 0 14:59448336-14:61680201
1633 14 60062695 60337684 RTN1 thyroid -5.25e+00 0.305000 1 14:59448336-14:61680201
1707 14 60558629 60635851 PCNXL4 brain_frontal_cortex_ba9 6.43e-01 0.000239 0 14:59448336-14:61680201
1660 14 59655398 59838123 DAAM1 brain_cerebellum -1.08e+00 0.000548 0 14:59448336-14:61680201
11834 14 61176246 61191066 SIX4 psychencode 1.09e+00 0.000350 0 14:59448336-14:61680201
1688 14 60610838 60636574 DHRS7 pituitary 2.50e+00 0.000300 0 14:59448336-14:61680201
12273 14 61447832 61550451 SLC38A6 psychencode -7.88e-01 0.000445 0 14:59448336-14:61680201
1632 14 59971779 60043549 CCDC175 thyroid -5.35e+00 0.481000 1 14:59448336-14:61680201
1702 14 60558629 60635851 PCNXL4 brain_cerebellar_hemisphere -7.26e-01 0.000241 0 14:59448336-14:61680201
1698 14 59895740 59932060 GPR135 thyroid -1.12e+00 0.000253 0 14:59448336-14:61680201
1645 14 59927081 59951148 L3HYPDH brain_caudate_basal_ganglia 3.08e+00 0.001100 0 14:59448336-14:61680201
12710 14 59895740 59932060 GPR135 psychencode 1.90e-01 0.000244 0 14:59448336-14:61680201
1650 14 59927081 59951148 L3HYPDH brain_hypothalamus 3.00e+00 0.000969 0 14:59448336-14:61680201
1669 14 61201458 61435398 MNAT1 cmc.brain.rnaseq_splicing -1.14e+00 0.000400 0 14:59448336-14:61680201
11831 14 59655364 59838123 DAAM1 psychencode -1.05e-01 0.000266 0 14:59448336-14:61680201
1656 14 59927081 59951148 L3HYPDH brain_putamen_basal_ganglia 2.52e+00 0.000739 0 14:59448336-14:61680201
1712 14 61201458 61435398 MNAT1 cmc.brain.rnaseq_splicing 6.30e-01 0.000228 0 14:59448336-14:61680201
1666 14 59655398 59838123 DAAM1 thyroid -1.47e+00 0.000449 0 14:59448336-14:61680201
1708 14 60558629 60635851 PCNXL4 brain_cerebellum 6.33e-01 0.000238 0 14:59448336-14:61680201
1684 14 59655398 59838123 DAAM1 whole_blood 4.80e-01 0.000314 0 14:59448336-14:61680201
1644 14 59971779 60043549 CCDC175 brain_cerebellum -9.29e-01 0.001140 0 14:59448336-14:61680201
12134 14 60558629 60635851 PCNXL4 psychencode 5.00e-01 0.000239 0 14:59448336-14:61680201
1691 14 60062697 60337603 RTN1 ntr.blood.rnaarr -2.25e+00 0.000282 0 14:59448336-14:61680201
1706 14 60558629 60635851 PCNXL4 brain_cortex 3.72e-01 0.000240 0 14:59448336-14:61680201
1652 14 59927081 59951148 L3HYPDH brain_cortex 2.54e+00 0.000803 0 14:59448336-14:61680201
12139 14 61438169 61448076 TRMT5 psychencode -2.57e-01 0.000264 0 14:59448336-14:61680201
1686 14 59655398 59838123 DAAM1 pituitary -1.92e+00 0.000308 0 14:59448336-14:61680201
1653 14 60712469 60765805 PPM1A cmc.brain.rnaseq_splicing -1.57e+00 0.000786 0 14:59448336-14:61680201
1668 14 60712470 60765805 PPM1A brain_cortex -5.96e-01 0.000413 0 14:59448336-14:61680201
11833 14 60712470 60765805 PPM1A psychencode -7.35e-01 0.000253 0 14:59448336-14:61680201
1667 14 60863187 60982261 C14orf39 pituitary -1.15e+00 0.000430 0 14:59448336-14:61680201
1663 14 60981837 61021634 RP11-1042B17.3 pituitary 7.74e-01 0.000489 0 14:59448336-14:61680201
1685 14 61447831 61550451 SLC38A6 cmc.brain.rnaseq_splicing 1.03e+00 0.000311 0 14:59448336-14:61680201
1711 14 60558629 60635851 PCNXL4 brain_anterior_cingulate_cortex_ba24 6.58e-01 0.000235 0 14:59448336-14:61680201
1664 14 59895740 59932060 GPR135 whole_blood -2.13e+00 0.000479 0 14:59448336-14:61680201
1696 14 60610838 60636574 DHRS7 whole_blood 2.27e-01 0.000254 0 14:59448336-14:61680201
1674 14 61447831 61550451 SLC38A6 cmc.brain.rnaseq -5.80e-01 0.000383 0 14:59448336-14:61680201
11832 14 60610838 60636574 DHRS7 psychencode 6.78e-01 0.000245 0 14:59448336-14:61680201
1657 14 59927081 59951148 L3HYPDH brain_anterior_cingulate_cortex_ba24 2.48e+00 0.000634 0 14:59448336-14:61680201
1677 14 59927081 59951148 L3HYPDH brain_substantia_nigra 1.98e+00 0.000360 0 14:59448336-14:61680201
13196 14 59030864 59031334 RPL9P5 psychencode -5.09e-01 0.000240 0 14:59448336-14:61680201
12136 14 59927081 59951148 L3HYPDH psychencode 3.51e+00 0.002320 0 14:59448336-14:61680201
1704 14 60625694 60626042 SCOCP1 pituitary 1.12e-01 0.000241 0 14:59448336-14:61680201
1672 14 60610838 60636574 DHRS7 yfs.blood.rnaarr 1.79e+00 0.000390 0 14:59448336-14:61680201
1689 14 60610838 60636574 DHRS7 brain_hypothalamus 1.32e+00 0.000296 0 14:59448336-14:61680201
1638 14 60712470 60765805 PPM1A thyroid 3.93e+00 0.001740 0 14:59448336-14:61680201
1654 14 59927081 59951148 L3HYPDH brain_amygdala 2.79e+00 0.000755 0 14:59448336-14:61680201
1634 14 59951161 59971429 JKAMP thyroid -5.19e+00 0.210000 0 14:59448336-14:61680201
1635 14 59927081 59951148 L3HYPDH brain_frontal_cortex_ba9 4.20e+00 0.004410 0 14:59448336-14:61680201
1675 14 60610838 60636574 DHRS7 adrenal_gland 1.74e+00 0.000376 0 14:59448336-14:61680201
1651 14 59895740 59932060 GPR135 brain_cerebellar_hemisphere 3.71e+00 0.000805 0 14:59448336-14:61680201
1661 14 59951160 59972081 JKAMP cmc.brain.rnaseq_splicing -2.53e+00 0.000546 0 14:59448336-14:61680201
1699 14 60610838 60636574 DHRS7 thyroid 1.11e+00 0.000252 0 14:59448336-14:61680201
1701 14 60610838 60636574 DHRS7 brain_frontal_cortex_ba9 7.56e-01 0.000242 0 14:59448336-14:61680201
11658 14 59951161 59972128 JKAMP psychencode -2.92e+00 0.001030 0 14:59448336-14:61680201
1694 14 59655398 59838123 DAAM1 adrenal_gland -2.21e+00 0.000262 0 14:59448336-14:61680201
1703 14 59895739 59932059 GPR135 cmc.brain.rnaseq_splicing 5.05e-01 0.000241 0 14:59448336-14:61680201
1679 14 59655380 59838123 DAAM1 cmc.brain.rnaseq -2.84e+00 0.000342 0 14:59448336-14:61680201
1673 14 59895740 59932060 GPR135 brain_cortex 1.29e+00 0.000386 0 14:59448336-14:61680201
1680 14 59951160 59972081 JKAMP cmc.brain.rnaseq_splicing 1.82e+00 0.000339 0 14:59448336-14:61680201
1683 14 60610838 60636574 DHRS7 brain_anterior_cingulate_cortex_ba24 -9.02e-01 0.000319 0 14:59448336-14:61680201
13367 14 59945992 59992155 RP11-701B16.2 psychencode -6.52e-02 0.000579 0 14:59448336-14:61680201
1709 14 60610838 60636574 DHRS7 brain_nucleus_accumbens_basal_ganglia -7.59e-02 0.000237 0 14:59448336-14:61680201
1647 14 59927081 59951148 L3HYPDH brain_cerebellar_hemisphere 3.00e+00 0.001080 0 14:59448336-14:61680201
1753 14 65381079 65411309 CHURC1 brain_nucleus_accumbens_basal_ganglia 2.15e+00 0.000351 0 14:63790015-14:65220117
1747 14 65171192 65211060 PLEKHG3 cmc.brain.rnaseq_splicing -5.43e-01 0.000374 0 14:63790015-14:65220117
1745 14 64929946 64930175 CTD-2555O16.3 brain_cerebellar_hemisphere 1.99e+00 0.000406 0 14:63790015-14:65220117
1776 14 65381079 65411309 CHURC1 brain_cerebellar_hemisphere 2.03e+00 0.000240 0 14:63790015-14:65220117
1770 14 65472818 65569262 MAX cmc.brain.rnaseq_splicing -1.79e-01 0.000252 0 14:63790015-14:65220117
1743 14 65412532 65439494 RAB15 brain_cerebellar_hemisphere 3.18e-02 0.000451 0 14:63790015-14:65220117
1782 14 65381079 65411309 CHURC1 adrenal_gland -1.86e+00 0.000228 0 14:63790015-14:65220117
1777 14 65381079 65411309 CHURC1 thyroid 7.14e-01 0.000237 0 14:63790015-14:65220117
1785 14 65412532 65439494 RAB15 brain_cerebellum -1.48e-01 0.000216 0 14:63790015-14:65220117
1733 14 65170820 65213001 PLEKHG3 pituitary 1.24e+00 0.000699 0 14:63790015-14:65220117
12690 14 64932217 64941221 AKAP5 psychencode -1.70e-01 0.000610 0 14:63790015-14:65220117
1750 14 65412532 65439494 RAB15 yfs.blood.rnaarr 3.32e-01 0.000357 0 14:63790015-14:65220117
1723 14 64970564 65000408 ZBTB1 thyroid -2.52e+00 0.001240 0 14:63790015-14:65220117
1725 14 65381079 65411309 CHURC1 brain_cortex -2.39e+00 0.001130 0 14:63790015-14:65220117
1721 14 64929946 64930175 CTD-2555O16.3 brain_nucleus_accumbens_basal_ganglia 2.62e+00 0.002090 0 14:63790015-14:65220117
1746 14 65170820 65213001 PLEKHG3 whole_blood 5.47e-01 0.000391 0 14:63790015-14:65220117
1756 14 65381079 65411309 CHURC1 whole_blood 7.99e-01 0.000323 0 14:63790015-14:65220117
1736 14 65170820 65213001 PLEKHG3 adrenal_gland 3.75e-01 0.000602 0 14:63790015-14:65220117
13373 14 65548752 65560930 RP11-840I19.3 psychencode -1.33e+00 0.000249 0 14:63790015-14:65220117
1729 14 64970564 65000408 ZBTB1 adrenal_gland -1.76e+00 0.001060 0 14:63790015-14:65220117
1722 14 65213000 65346601 SPTB cmc.brain.rnaseq -4.02e+00 0.001410 0 14:63790015-14:65220117
12141 14 65170820 65213610 PLEKHG3 psychencode 8.75e-01 0.000583 0 14:63790015-14:65220117
11760 14 64915824 64971931 ZBTB25 psychencode -2.17e+00 0.000337 0 14:63790015-14:65220117
1762 14 64929946 64930175 CTD-2555O16.3 brain_frontal_cortex_ba9 2.09e+00 0.000275 0 14:63790015-14:65220117
1783 14 65381079 65411309 CHURC1 brain_cerebellum -1.90e-01 0.000228 0 14:63790015-14:65220117
1744 14 65170820 65213001 PLEKHG3 thyroid 9.09e-01 0.000422 0 14:63790015-14:65220117
1766 14 65453438 65529368 FNTB yfs.blood.rnaarr 3.61e-01 0.000260 0 14:63790015-14:65220117
1765 14 65213611 65346601 SPTB thyroid 5.54e-01 0.000262 0 14:63790015-14:65220117
1778 14 64915824 64971931 ZBTB25 yfs.blood.rnaarr -2.04e+00 0.000236 0 14:63790015-14:65220117
1768 14 64970564 65000408 ZBTB1 brain_hippocampus 2.14e+00 0.000253 0 14:63790015-14:65220117
1755 14 64971291 65000408 ZBTB1 cmc.brain.rnaseq -3.01e+00 0.000327 0 14:63790015-14:65220117
1760 14 64971291 65000408 ZBTB1 cmc.brain.rnaseq_splicing 5.21e-01 0.000287 0 14:63790015-14:65220117
1761 14 64980872 65007086 RP11-973N13.4 thyroid -1.02e+00 0.000277 0 14:63790015-14:65220117
12521 14 65016620 65056098 PPP1R36 psychencode -1.99e+00 0.001160 0 14:63790015-14:65220117
13358 14 65381079 65411309 CHURC1 psychencode -3.30e-01 0.000215 0 14:63790015-14:65220117
12138 14 64970430 65000408 ZBTB1 psychencode -1.94e+00 0.000253 0 14:63790015-14:65220117
1738 14 65171192 65211060 PLEKHG3 cmc.brain.rnaseq_splicing 5.44e-01 0.000580 0 14:63790015-14:65220117
1741 14 65170820 65213610 PLEKHG3 yfs.blood.rnaarr 4.53e-01 0.000463 0 14:63790015-14:65220117
1757 14 64915824 64971931 ZBTB25 brain_cerebellum -8.99e-01 0.000315 0 14:63790015-14:65220117
12275 14 63173287 63568755 KCNH5 psychencode 9.68e-01 0.000450 0 14:63790015-14:65220117
1773 14 65381079 65411309 CHURC1 brain_hippocampus 9.94e-01 0.000244 0 14:63790015-14:65220117
1735 14 65453438 65529316 FNTB whole_blood -8.11e-01 0.000653 0 14:63790015-14:65220117
1752 14 65002623 65009955 HSPA2 adrenal_gland -1.91e-01 0.000352 0 14:63790015-14:65220117
11697 14 65213002 65346601 SPTB psychencode 2.61e-01 0.000224 0 14:63790015-14:65220117
12135 14 63670832 63759937 RHOJ psychencode 3.88e-01 0.000222 0 14:63790015-14:65220117
12137 14 65002623 65009955 HSPA2 psychencode 1.12e+00 0.000885 0 14:63790015-14:65220117
13520 14 64907087 64908956 CTD-2555O16.4 psychencode -2.24e+00 0.000363 0 14:63790015-14:65220117
1780 14 65472818 65569262 MAX cmc.brain.rnaseq_splicing -1.21e+00 0.000231 0 14:63790015-14:65220117
1728 14 65381078 65402084 CHURC1 cmc.brain.rnaseq_splicing -9.62e-01 0.001060 0 14:63790015-14:65220117
1726 14 63838075 64010092 PPP2R5E pituitary -1.37e+00 0.001130 0 14:63790015-14:65220117
1737 14 63838075 64010092 PPP2R5E thyroid -9.75e-01 0.000590 0 14:63790015-14:65220117
12385 14 63838075 64010092 PPP2R5E psychencode 1.28e+00 0.000934 0 14:63790015-14:65220117
1727 14 64319683 64693165 SYNE2 adrenal_gland 2.81e+00 0.001080 0 14:63790015-14:65220117
1734 14 65453438 65529316 FNTB thyroid -1.75e+00 0.000693 0 14:63790015-14:65220117
1718 14 64060749 64062009 CTD-2302E22.5 brain_putamen_basal_ganglia 2.95e+00 0.003460 0 14:63790015-14:65220117
1781 14 64319683 64693165 SYNE2 pituitary -9.81e-01 0.000230 0 14:63790015-14:65220117
1732 14 64319683 64693165 SYNE2 brain_cerebellum 2.65e+00 0.000722 0 14:63790015-14:65220117
1763 14 64907087 64908956 CTD-2555O16.4 brain_cerebellum -2.96e+00 0.000270 0 14:63790015-14:65220117
1717 14 65381159 65529370 FNTB ntr.blood.rnaarr 1.97e+00 0.004670 0 14:63790015-14:65220117
1731 14 64063757 64108579 WDR89 thyroid -2.05e+00 0.000732 0 14:63790015-14:65220117
1784 14 65381078 65411309 CHURC1 ntr.blood.rnaarr -8.14e-01 0.000221 0 14:63790015-14:65220117
11666 14 64319683 64693165 SYNE2 psychencode 1.15e+00 0.000367 0 14:63790015-14:65220117
1714 14 64550950 64770377 ESR2 pituitary -5.82e+00 0.593000 1 14:63790015-14:65220117
1716 14 64550950 64770377 ESR2 whole_blood -5.58e+00 0.157000 0 14:63790015-14:65220117
1749 14 64550950 64770377 ESR2 thyroid -3.63e+00 0.000360 0 14:63790015-14:65220117
1715 14 64319682 64693151 SYNE2 ntr.blood.rnaarr 5.67e+00 0.253000 1 14:63790015-14:65220117
1779 14 64319682 64693167 SYNE2 cmc.brain.rnaseq 3.45e-02 0.000232 0 14:63790015-14:65220117
1758 14 64550950 64770377 ESR2 adrenal_gland -1.19e+00 0.000313 0 14:63790015-14:65220117
1771 14 64550950 64770377 ESR2 brain_cerebellum -2.07e+00 0.000245 0 14:63790015-14:65220117
1740 14 64319683 64693165 SYNE2 brain_cerebellar_hemisphere 2.11e+00 0.000506 0 14:63790015-14:65220117
1754 14 64319683 64693165 SYNE2 thyroid 1.47e+00 0.000347 0 14:63790015-14:65220117
1751 14 64915824 64971931 ZBTB25 adrenal_gland -2.06e+00 0.000356 0 14:63790015-14:65220117
12274 14 64550950 64804830 ESR2 psychencode 1.14e+00 0.000397 0 14:63790015-14:65220117
1748 14 64693424 64805268 ESR2 ntr.blood.rnaarr -3.04e+00 0.000370 0 14:63790015-14:65220117
1719 14 64854749 64926722 MTHFD1 brain_cerebellum -4.22e+00 0.003370 0 14:63790015-14:65220117
1724 14 64854749 64926722 MTHFD1 adrenal_gland -4.47e+00 0.001180 0 14:63790015-14:65220117
1742 14 64854749 64926725 MTHFD1 yfs.blood.rnaarr -3.59e+00 0.000456 0 14:63790015-14:65220117
1759 14 64854749 64926722 MTHFD1 brain_nucleus_accumbens_basal_ganglia -2.97e+00 0.000303 0 14:63790015-14:65220117
1720 14 64150932 64194757 SGPP1 thyroid -3.26e+00 0.002470 0 14:63790015-14:65220117
1774 14 64150932 64194757 SGPP1 whole_blood 3.78e-03 0.000243 0 14:63790015-14:65220117
12140 14 64150932 64194757 SGPP1 psychencode -4.99e-01 0.000213 0 14:63790015-14:65220117
1730 14 65016620 65056096 PPP1R36 brain_caudate_basal_ganglia -3.10e+00 0.000773 0 14:63790015-14:65220117
1767 14 64854749 64926722 MTHFD1 thyroid -3.13e+00 0.000260 0 14:63790015-14:65220117
11836 14 64854749 64926722 MTHFD1 psychencode -3.00e+00 0.000367 0 14:63790015-14:65220117
13368 14 64889653 64915275 CTD-2555O16.2 psychencode -2.57e+00 0.001410 0 14:63790015-14:65220117
1772 14 65171192 65211060 PLEKHG3 cmc.brain.rnaseq_splicing -8.56e-01 0.000245 0 14:63790015-14:65220117
1739 14 64854758 64926725 MTHFD1 cmc.brain.rnaseq -2.96e+00 0.000533 0 14:63790015-14:65220117
1769 14 65472892 65569413 MAX yfs.blood.rnaarr 5.94e-01 0.000252 0 14:63790015-14:65220117
1764 14 65381079 65411309 CHURC1 brain_putamen_basal_ganglia -2.22e-01 0.000269 0 14:63790015-14:65220117
1786 14 65381078 65402084 CHURC1 cmc.brain.rnaseq_splicing -7.25e-03 0.000211 0 14:63790015-14:65220117
1775 14 64889653 64915275 CTD-2555O16.2 pituitary -2.10e+00 0.000243 0 14:63790015-14:65220117
12765 14 74003818 74010498 ACOT1 psychencode -8.17e-01 0.000319 0 14:72889754-14:76444767
1981 14 74003818 74010498 ACOT1 brain_hippocampus -4.34e-01 0.000269 0 14:72889754-14:76444767
1806 14 73996856 73997314 RP3-414A15.2 brain_anterior_cingulate_cortex_ba24 -3.01e+00 0.001660 0 14:72889754-14:76444767
1822 14 73983937 73987352 RP3-414A15.11 thyroid 1.58e+00 0.000843 0 14:72889754-14:76444767
2034 14 74003818 74010498 ACOT1 brain_anterior_cingulate_cortex_ba24 -8.95e-01 0.000217 0 14:72889754-14:76444767
1915 14 74003818 74010498 ACOT1 whole_blood 1.31e+00 0.000359 0 14:72889754-14:76444767
1918 14 74003818 74010498 ACOT1 brain_cortex -1.40e+00 0.000352 0 14:72889754-14:76444767
1834 14 73996856 73997314 RP3-414A15.2 brain_caudate_basal_ganglia -2.18e+00 0.000656 0 14:72889754-14:76444767
1900 14 74003927 74042362 ACOT1 cmc.brain.rnaseq -1.31e+00 0.000384 0 14:72889754-14:76444767
1925 14 74003818 74010498 ACOT1 pituitary 1.02e+00 0.000344 0 14:72889754-14:76444767
1880 14 73996856 73997314 RP3-414A15.2 brain_frontal_cortex_ba9 -1.80e+00 0.000419 0 14:72889754-14:76444767
1817 14 74034324 74042357 ACOT2 brain_frontal_cortex_ba9 -1.76e+00 0.000928 0 14:72889754-14:76444767
2002 14 74058410 74063200 ACOT4 brain_anterior_cingulate_cortex_ba24 3.57e-01 0.000239 0 14:72889754-14:76444767
1854 14 74034324 74042357 ACOT2 brain_caudate_basal_ganglia -1.41e-01 0.000536 0 14:72889754-14:76444767
1977 14 74034324 74042357 ACOT2 brain_cortex -9.59e-01 0.000270 0 14:72889754-14:76444767
1890 14 74034324 74042357 ACOT2 brain_anterior_cingulate_cortex_ba24 -1.59e+00 0.000400 0 14:72889754-14:76444767
1934 14 74034324 74042357 ACOT2 adrenal_gland -1.94e-01 0.000331 0 14:72889754-14:76444767
1930 14 74003818 74010498 ACOT1 brain_putamen_basal_ganglia -1.76e+00 0.000334 0 14:72889754-14:76444767
2016 14 74034324 74042357 ACOT2 thyroid -6.39e-01 0.000226 0 14:72889754-14:76444767
1936 14 74034324 74042357 ACOT2 brain_hypothalamus -1.53e+00 0.000326 0 14:72889754-14:76444767
2058 14 74034323 74042362 ACOT2 cmc.brain.rnaseq_splicing -1.56e-01 0.000204 0 14:72889754-14:76444767
1903 14 73996856 73997314 RP3-414A15.2 brain_cortex -1.69e+00 0.000382 0 14:72889754-14:76444767
1926 14 73996856 73997314 RP3-414A15.2 brain_cerebellar_hemisphere -1.70e+00 0.000342 0 14:72889754-14:76444767
1979 14 74058410 74063200 ACOT4 pituitary 5.29e-01 0.000269 0 14:72889754-14:76444767
1929 14 73996856 73997314 RP3-414A15.2 thyroid -1.47e+00 0.000334 0 14:72889754-14:76444767
1935 14 73996856 73997314 RP3-414A15.2 brain_cerebellum -1.57e+00 0.000329 0 14:72889754-14:76444767
1938 14 73996856 73997314 RP3-414A15.2 brain_nucleus_accumbens_basal_ganglia -1.49e+00 0.000325 0 14:72889754-14:76444767
1895 14 74058410 74063200 ACOT4 brain_nucleus_accumbens_basal_ganglia 8.81e-01 0.000388 0 14:72889754-14:76444767
1958 14 74034324 74042357 ACOT2 brain_cerebellar_hemisphere -1.02e+00 0.000296 0 14:72889754-14:76444767
1961 14 74034324 74042357 ACOT2 brain_nucleus_accumbens_basal_ganglia -1.39e+00 0.000293 0 14:72889754-14:76444767
1953 14 74058409 74062470 ACOT4 cmc.brain.rnaseq 9.95e-01 0.000304 0 14:72889754-14:76444767
1968 14 72398816 73033238 RGS6 cmc.brain.rnaseq -1.15e-02 0.000283 0 14:72889754-14:76444767
1862 14 73741815 73930348 NUMB yfs.blood.rnaarr -1.68e+00 0.000499 0 14:72889754-14:76444767
2023 14 74034323 74042362 ACOT2 cmc.brain.rnaseq_splicing -1.03e+00 0.000223 0 14:72889754-14:76444767
1995 14 73945189 74025651 HEATR4 thyroid -1.34e+00 0.000245 0 14:72889754-14:76444767
1870 14 74005925 74006485 NT5CP2 brain_hippocampus -1.12e+00 0.000456 0 14:72889754-14:76444767
1957 14 74005925 74006485 NT5CP2 brain_caudate_basal_ganglia -1.73e+00 0.000298 0 14:72889754-14:76444767
1852 14 73427303 73428701 RP11-109N23.6 whole_blood -2.13e+00 0.000538 0 14:72889754-14:76444767
1994 14 74254063 74269973 RP5-1021I20.1 brain_caudate_basal_ganglia 4.61e-01 0.000247 0 14:72889754-14:76444767
13283 14 73929129 73943880 RP1-240K6.3 psychencode -2.42e-01 0.000259 0 14:72889754-14:76444767
1839 14 74003818 74010498 ACOT1 thyroid 1.50e+00 0.000595 0 14:72889754-14:76444767
1946 14 74005925 74006485 NT5CP2 brain_hypothalamus -1.44e+00 0.000314 0 14:72889754-14:76444767
1922 14 74005925 74006485 NT5CP2 brain_cortex -1.39e+00 0.000347 0 14:72889754-14:76444767
1923 14 73525220 73588076 RBM25 cmc.brain.rnaseq_splicing 1.24e+00 0.000346 0 14:72889754-14:76444767
1964 14 74058410 74063200 ACOT4 brain_frontal_cortex_ba9 5.29e-01 0.000285 0 14:72889754-14:76444767
1889 14 75469614 75476292 EIF2B2 brain_amygdala 4.56e-01 0.000402 0 14:72889754-14:76444767
2053 14 73393040 73426411 DCAF4 brain_hippocampus 6.53e-01 0.000205 0 14:72889754-14:76444767
1886 14 75530873 75545126 ZC2HC1C brain_putamen_basal_ganglia 5.83e-01 0.000406 0 14:72889754-14:76444767
1878 14 74003818 74010498 ACOT1 brain_cerebellum -2.68e-01 0.000426 0 14:72889754-14:76444767
1947 14 73996856 73997314 RP3-414A15.2 pituitary -1.54e+00 0.000313 0 14:72889754-14:76444767
1856 14 75594048 75603633 RP11-950C14.7 thyroid 6.02e-01 0.000530 0 14:72889754-14:76444767
1788 14 73603126 73690399 PSEN1 brain_cerebellar_hemisphere -4.61e+00 0.582000 1 14:72889754-14:76444767
1932 14 74005925 74006485 NT5CP2 thyroid -1.66e+00 0.000333 0 14:72889754-14:76444767
12040 14 74752126 74769759 ABCD4 psychencode -8.18e-01 0.000345 0 14:72889754-14:76444767
1867 14 74003818 74010498 ACOT1 brain_hypothalamus -9.24e-01 0.000461 0 14:72889754-14:76444767
1824 14 73603126 73690399 PSEN1 thyroid -2.45e+00 0.000824 0 14:72889754-14:76444767
12034 14 74034324 74042357 ACOT2 psychencode -1.25e+00 0.000328 0 14:72889754-14:76444767
2094 14 74058410 74063200 ACOT4 brain_hypothalamus 5.42e-01 0.000189 0 14:72889754-14:76444767
1827 14 75120140 75179818 AREL1 brain_nucleus_accumbens_basal_ganglia -2.15e+00 0.000757 0 14:72889754-14:76444767
12662 14 74058410 74063200 ACOT4 psychencode 1.11e+00 0.000351 0 14:72889754-14:76444767
2042 14 74077649 74086592 ACOT6 brain_frontal_cortex_ba9 -5.42e-02 0.000213 0 14:72889754-14:76444767
2040 14 74181825 74256988 ELMSAN1 brain_cerebellum -7.73e-02 0.000214 0 14:72889754-14:76444767
2048 14 76099968 76421421 TTLL5 yfs.blood.rnaarr 9.94e-02 0.000210 0 14:72889754-14:76444767
2078 14 76099968 76421421 TTLL5 thyroid -1.61e-01 0.000192 0 14:72889754-14:76444767
1876 14 74003818 74010498 ACOT1 brain_caudate_basal_ganglia -9.66e-03 0.000441 0 14:72889754-14:76444767
2001 14 74964873 75079306 LTBP2 whole_blood -3.14e+00 0.000240 0 14:72889754-14:76444767
1885 14 75469614 75476292 EIF2B2 brain_hypothalamus 8.62e-02 0.000406 0 14:72889754-14:76444767
2003 14 74058410 74063200 ACOT4 brain_caudate_basal_ganglia 6.90e-01 0.000237 0 14:72889754-14:76444767
1813 14 74318547 74353319 PTGR2 brain_anterior_cingulate_cortex_ba24 -1.56e+00 0.001220 0 14:72889754-14:76444767
1913 14 73603126 73690399 PSEN1 whole_blood -7.61e-01 0.000364 0 14:72889754-14:76444767
13374 14 75890386 75894444 RP11-293M10.6 psychencode 2.65e+00 0.002650 0 14:72889754-14:76444767
1912 14 75120140 75179818 AREL1 brain_putamen_basal_ganglia -2.12e+00 0.000366 0 14:72889754-14:76444767
1991 14 74254063 74269973 RP5-1021I20.1 pituitary 4.90e-01 0.000251 0 14:72889754-14:76444767
1883 14 74254063 74269973 RP5-1021I20.1 brain_putamen_basal_ganglia 8.65e-01 0.000411 0 14:72889754-14:76444767
1951 14 74353531 74399212 ZNF410 brain_hypothalamus -6.84e-01 0.000306 0 14:72889754-14:76444767
12027 14 73393040 73426411 DCAF4 psychencode 1.34e-02 0.000241 0 14:72889754-14:76444767
2095 14 76099968 76421421 TTLL5 brain_frontal_cortex_ba9 -4.30e-01 0.000188 0 14:72889754-14:76444767
1801 14 74318547 74353319 PTGR2 brain_caudate_basal_ganglia -1.70e+00 0.002470 0 14:72889754-14:76444767
1810 14 74318547 74353319 PTGR2 brain_cortex -1.60e+00 0.001370 0 14:72889754-14:76444767
11732 14 73603126 73690399 PSEN1 psychencode -1.61e+00 0.000311 0 14:72889754-14:76444767
2044 14 74077649 74086592 ACOT6 brain_nucleus_accumbens_basal_ganglia -5.21e-02 0.000213 0 14:72889754-14:76444767
2026 14 75348593 75370443 DLST ntr.blood.rnaarr -2.16e+00 0.000222 0 14:72889754-14:76444767
12044 14 74523553 74551196 ALDH6A1 psychencode -1.26e+00 0.000461 0 14:72889754-14:76444767
2012 14 74523553 74551196 ALDH6A1 thyroid -6.92e-01 0.000227 0 14:72889754-14:76444767
2046 14 74077649 74086592 ACOT6 brain_putamen_basal_ganglia -4.98e-02 0.000213 0 14:72889754-14:76444767
12041 14 75348594 75370448 DLST psychencode 5.43e+00 0.111000 1 14:72889754-14:76444767
1833 14 74003818 74010498 ACOT1 brain_nucleus_accumbens_basal_ganglia -4.78e-01 0.000663 0 14:72889754-14:76444767
1989 14 74254063 74269973 RP5-1021I20.1 brain_hypothalamus 4.12e-01 0.000253 0 14:72889754-14:76444767
2031 14 74254063 74269973 RP5-1021I20.1 brain_frontal_cortex_ba9 2.76e-01 0.000218 0 14:72889754-14:76444767
12654 14 74178494 74181128 PNMA1 psychencode -9.11e-02 0.000207 0 14:72889754-14:76444767
1851 14 74551499 74667936 LIN52 yfs.blood.rnaarr 1.44e+00 0.000540 0 14:72889754-14:76444767
1917 14 74523553 74551196 ALDH6A1 brain_cerebellum -1.35e+00 0.000354 0 14:72889754-14:76444767
2030 14 74289262 74296838 RP5-1021I20.2 brain_putamen_basal_ganglia 3.73e-01 0.000218 0 14:72889754-14:76444767
2051 14 75530873 75545126 ZC2HC1C brain_anterior_cingulate_cortex_ba24 2.13e+00 0.000208 0 14:72889754-14:76444767
1919 14 75319736 75330537 PROX2 adrenal_gland -3.03e+00 0.000351 0 14:72889754-14:76444767
1792 14 74318533 74352168 PTGR2 cmc.brain.rnaseq -2.43e+00 0.005970 0 14:72889754-14:76444767
2022 14 74755830 74761128 AC005519.4 brain_hypothalamus 1.37e+00 0.000223 0 14:72889754-14:76444767
1814 14 74318547 74353319 PTGR2 brain_frontal_cortex_ba9 -1.58e+00 0.001150 0 14:72889754-14:76444767
1826 14 74005925 74006485 NT5CP2 brain_anterior_cingulate_cortex_ba24 -2.35e+00 0.000796 0 14:72889754-14:76444767
2099 14 76424545 76449334 TGFB3 whole_blood -1.82e-01 0.000186 0 14:72889754-14:76444767
1805 14 74318547 74353319 PTGR2 brain_amygdala -1.65e+00 0.002130 0 14:72889754-14:76444767
13372 14 74254063 74269973 RP5-1021I20.1 psychencode 1.87e-01 0.000219 0 14:72889754-14:76444767
12029 14 75548822 75594047 NEK9 psychencode 7.33e-01 0.000353 0 14:72889754-14:76444767
12814 14 73945189 74025651 HEATR4 psychencode 1.15e+00 0.000307 0 14:72889754-14:76444767
13370 14 74940710 74941567 RP3-449M8.6 psychencode -1.02e+00 0.000399 0 14:72889754-14:76444767
2045 14 74058410 74063200 ACOT4 adrenal_gland -3.98e-01 0.000213 0 14:72889754-14:76444767
1910 14 75469614 75476292 EIF2B2 brain_caudate_basal_ganglia 6.01e-01 0.000366 0 14:72889754-14:76444767
1793 14 73603142 73690399 PSEN1 cmc.brain.rnaseq_splicing 2.97e+00 0.004950 0 14:72889754-14:76444767
1984 14 74289262 74296838 RP5-1021I20.2 brain_caudate_basal_ganglia 5.54e-01 0.000266 0 14:72889754-14:76444767
1990 14 74289262 74296838 RP5-1021I20.2 brain_amygdala 5.98e-01 0.000252 0 14:72889754-14:76444767
2065 14 74111578 74170435 DNAL1 brain_caudate_basal_ganglia 3.13e-01 0.000200 0 14:72889754-14:76444767
1959 14 73393040 73426411 DCAF4 brain_cerebellum 1.26e+00 0.000294 0 14:72889754-14:76444767
13365 14 73989582 73997314 RP3-414A15.2 psychencode -1.50e+00 0.000373 0 14:72889754-14:76444767
12033 14 74111578 74170435 DNAL1 psychencode -1.39e+00 0.000323 0 14:72889754-14:76444767
1902 14 74111578 74170435 DNAL1 brain_cortex 1.14e+00 0.000382 0 14:72889754-14:76444767
1927 14 75469614 75476292 EIF2B2 brain_cortex 3.00e-01 0.000338 0 14:72889754-14:76444767
1837 14 74523553 74551196 ALDH6A1 brain_caudate_basal_ganglia -1.96e+00 0.000635 0 14:72889754-14:76444767
1950 14 75469614 75476292 EIF2B2 thyroid 6.04e-01 0.000307 0 14:72889754-14:76444767
1841 14 74318547 74353319 PTGR2 brain_cerebellar_hemisphere -1.19e+00 0.000582 0 14:72889754-14:76444767
1798 14 76618259 76720685 GPATCH2L brain_cerebellar_hemisphere 2.43e+00 0.003160 0 14:72889754-14:76444767
1963 14 73427303 73428701 RP11-109N23.6 brain_cerebellum 5.48e-01 0.000289 0 14:72889754-14:76444767
1898 14 75370656 75389188 RPS6KL1 cmc.brain.rnaseq -3.66e+00 0.000385 0 14:72889754-14:76444767
2054 14 74111578 74170435 DNAL1 brain_frontal_cortex_ba9 3.07e-01 0.000205 0 14:72889754-14:76444767
1842 14 73710726 73712687 RP4-647C14.2 thyroid 1.84e+00 0.000581 0 14:72889754-14:76444767
1859 14 74551499 74667936 LIN52 brain_cortex 1.35e+00 0.000505 0 14:72889754-14:76444767
1943 14 73945189 74025651 HEATR4 adrenal_gland -1.34e+00 0.000318 0 14:72889754-14:76444767
1894 14 74058410 74063200 ACOT4 brain_cortex 8.92e-01 0.000389 0 14:72889754-14:76444767
1891 14 76099968 76421421 TTLL5 brain_cortex -1.65e+00 0.000396 0 14:72889754-14:76444767
2005 14 75370656 75389188 RPS6KL1 cmc.brain.rnaseq_splicing 2.57e-01 0.000236 0 14:72889754-14:76444767
12038 14 76099968 76421421 TTLL5 psychencode -4.24e-01 0.000189 0 14:72889754-14:76444767
2025 14 74964885 75079034 LTBP2 cmc.brain.rnaseq 4.54e-01 0.000222 0 14:72889754-14:76444767
1980 14 74058410 74063200 ACOT4 yfs.blood.rnaarr 5.82e-01 0.000269 0 14:72889754-14:76444767
2019 14 73945192 73997930 HEATR4 ntr.blood.rnaarr -7.50e-03 0.000225 0 14:72889754-14:76444767
1945 14 74486103 74532795 CCDC176 thyroid 1.03e+00 0.000315 0 14:72889754-14:76444767
1897 14 73525220 73588076 RBM25 cmc.brain.rnaseq_splicing -1.53e+00 0.000386 0 14:72889754-14:76444767
1857 14 73436159 73493920 ZFYVE1 whole_blood -2.13e+00 0.000516 0 14:72889754-14:76444767
1937 14 74181825 74256988 ELMSAN1 pituitary 3.68e-01 0.000326 0 14:72889754-14:76444767
2063 14 74289262 74296838 RP5-1021I20.2 brain_nucleus_accumbens_basal_ganglia 7.24e-02 0.000200 0 14:72889754-14:76444767
1907 14 74526871 74551196 ALDH6A1 cmc.brain.rnaseq_splicing 1.20e+00 0.000370 0 14:72889754-14:76444767
2091 14 76424545 76449334 TGFB3 thyroid -3.08e-01 0.000189 0 14:72889754-14:76444767
2036 14 75370656 75389188 RPS6KL1 cmc.brain.rnaseq_splicing 5.78e-01 0.000216 0 14:72889754-14:76444767
12906 14 75370657 75390099 RPS6KL1 psychencode -4.66e+00 0.003030 0 14:72889754-14:76444767
2000 14 74003818 74010498 ACOT1 brain_substantia_nigra -9.39e-01 0.000243 0 14:72889754-14:76444767
2024 14 74058410 74063200 ACOT4 whole_blood 1.05e-01 0.000223 0 14:72889754-14:76444767
1835 14 74551499 74667936 LIN52 brain_anterior_cingulate_cortex_ba24 1.96e+00 0.000652 0 14:72889754-14:76444767
12035 14 74964873 75079306 LTBP2 psychencode 6.26e-01 0.000494 0 14:72889754-14:76444767
1803 14 74318547 74353319 PTGR2 brain_nucleus_accumbens_basal_ganglia -1.84e+00 0.002190 0 14:72889754-14:76444767
1965 14 73393040 73426411 DCAF4 adrenal_gland -4.48e-01 0.000284 0 14:72889754-14:76444767
2096 14 74755830 74761128 AC005519.4 thyroid 3.80e-01 0.000188 0 14:72889754-14:76444767
1819 14 75372346 75390099 RPS6KL1 adrenal_gland 4.16e+00 0.000879 0 14:72889754-14:76444767
13364 14 74318674 74398981 RP5-1021I20.4 psychencode 2.37e-01 0.000236 0 14:72889754-14:76444767
1807 14 73603142 73690399 PSEN1 cmc.brain.rnaseq_splicing 2.15e+00 0.001620 0 14:72889754-14:76444767
1967 14 74058410 74063200 ACOT4 thyroid 6.38e-01 0.000283 0 14:72889754-14:76444767
2032 14 74181825 74256988 ELMSAN1 brain_cerebellar_hemisphere -1.24e-01 0.000218 0 14:72889754-14:76444767
2013 14 74289262 74296838 RP5-1021I20.2 brain_anterior_cingulate_cortex_ba24 3.20e-01 0.000226 0 14:72889754-14:76444767
1860 14 74005925 74006485 NT5CP2 brain_putamen_basal_ganglia -2.11e+00 0.000503 0 14:72889754-14:76444767
2039 14 74254063 74269973 RP5-1021I20.1 brain_hippocampus 2.21e-01 0.000214 0 14:72889754-14:76444767
1791 14 74318547 74353319 PTGR2 brain_substantia_nigra -2.65e+00 0.010000 0 14:72889754-14:76444767
1844 14 76776957 76968178 ESRRB brain_caudate_basal_ganglia -1.38e+00 0.000577 0 14:72889754-14:76444767
1982 14 74254063 74269973 RP5-1021I20.1 brain_nucleus_accumbens_basal_ganglia 4.59e-01 0.000268 0 14:72889754-14:76444767
1920 14 74523553 74551196 ALDH6A1 yfs.blood.rnaarr -1.09e+00 0.000350 0 14:72889754-14:76444767
1952 14 75469614 75476292 EIF2B2 whole_blood 4.77e-01 0.000304 0 14:72889754-14:76444767
2080 14 74178494 74181128 PNMA1 brain_cerebellum 1.58e-04 0.000191 0 14:72889754-14:76444767
2070 14 74424713 74486055 ENTPD5 whole_blood 3.32e-01 0.000197 0 14:72889754-14:76444767
1864 14 75372346 75390099 RPS6KL1 whole_blood 3.87e+00 0.000487 0 14:72889754-14:76444767
1916 14 75120140 75179818 AREL1 brain_frontal_cortex_ba9 -2.78e+00 0.000357 0 14:72889754-14:76444767
1818 14 74318547 74353319 PTGR2 adrenal_gland -1.41e+00 0.000895 0 14:72889754-14:76444767
1942 14 74942894 74960215 NPC2 ntr.blood.rnaarr -6.67e-01 0.000321 0 14:72889754-14:76444767
1905 14 74254063 74269973 RP5-1021I20.1 brain_anterior_cingulate_cortex_ba24 7.62e-01 0.000376 0 14:72889754-14:76444767
1845 14 74318547 74353319 PTGR2 whole_blood -1.17e+00 0.000574 0 14:72889754-14:76444767
2020 14 74872595 74892805 SYNDIG1L cmc.brain.rnaseq 3.22e-01 0.000224 0 14:72889754-14:76444767
2071 14 74289262 74296838 RP5-1021I20.2 brain_hippocampus 5.58e-02 0.000197 0 14:72889754-14:76444767
1794 14 76776957 76968178 ESRRB brain_substantia_nigra 2.56e+00 0.004360 0 14:72889754-14:76444767
1901 14 74551499 74667936 LIN52 adrenal_gland 1.07e+00 0.000384 0 14:72889754-14:76444767
12197 14 73741815 73930348 NUMB psychencode -1.70e+00 0.000423 0 14:72889754-14:76444767
1846 14 74872596 74892805 SYNDIG1L brain_cortex 2.14e-01 0.000569 0 14:72889754-14:76444767
1956 14 74111578 74170435 DNAL1 thyroid 2.20e-01 0.000300 0 14:72889754-14:76444767
1825 14 75598170 75643349 TMED10 cmc.brain.rnaseq_splicing 7.06e-03 0.000802 0 14:72889754-14:76444767
2067 14 74399694 74417117 FAM161B cmc.brain.rnaseq 5.99e-01 0.000199 0 14:72889754-14:76444767
1948 14 74181825 74256988 ELMSAN1 thyroid 5.79e-01 0.000309 0 14:72889754-14:76444767
12812 14 74424713 74486102 ENTPD5 psychencode 2.64e-01 0.000209 0 14:72889754-14:76444767
2011 14 74037863 74038371 NT5CP1 thyroid -1.76e-01 0.000228 0 14:72889754-14:76444767
1787 14 75319736 75330537 PROX2 thyroid -5.82e+00 0.867000 1 14:72889754-14:76444767
1933 14 73436159 73493920 ZFYVE1 thyroid -1.98e+00 0.000333 0 14:72889754-14:76444767
1904 14 74551499 74667936 LIN52 brain_caudate_basal_ganglia 1.45e+00 0.000377 0 14:72889754-14:76444767
1855 14 74526871 74551196 ALDH6A1 cmc.brain.rnaseq_splicing 1.40e+00 0.000530 0 14:72889754-14:76444767
1944 14 73741815 73930197 NUMB brain_cerebellar_hemisphere -1.53e+00 0.000317 0 14:72889754-14:76444767
2101 14 75480466 75518235 MLH3 cmc.brain.rnaseq_splicing 6.11e-02 0.000186 0 14:72889754-14:76444767
2076 14 74178494 74181128 PNMA1 yfs.blood.rnaarr -1.95e-03 0.000194 0 14:72889754-14:76444767
1849 14 73603142 73690398 PSEN1 ntr.blood.rnaarr 1.54e-01 0.000554 0 14:72889754-14:76444767
2062 14 75530873 75545126 ZC2HC1C brain_cortex 1.21e+00 0.000201 0 14:72889754-14:76444767
2038 14 74254063 74269973 RP5-1021I20.1 adrenal_gland 6.32e-02 0.000214 0 14:72889754-14:76444767
1974 14 73704204 73741347 PAPLN cmc.brain.rnaseq_splicing 1.06e+00 0.000273 0 14:72889754-14:76444767
2014 14 74003818 74010498 ACOT1 adrenal_gland -5.44e-01 0.000226 0 14:72889754-14:76444767
1921 14 75120140 75179818 AREL1 brain_cortex -1.73e+00 0.000350 0 14:72889754-14:76444767
1882 14 76127550 76421425 TTLL5 cmc.brain.rnaseq_splicing -9.01e-01 0.000415 0 14:72889754-14:76444767
1986 14 73741815 73930197 NUMB brain_cerebellum -5.14e-01 0.000259 0 14:72889754-14:76444767
12036 14 75120140 75179818 AREL1 psychencode -4.81e+00 0.007350 0 14:72889754-14:76444767
12976 14 74077649 74086592 ACOT6 psychencode -3.44e-01 0.000210 0 14:72889754-14:76444767
1816 14 74318533 74352168 PTGR2 cmc.brain.rnaseq_splicing 1.64e+00 0.000968 0 14:72889754-14:76444767
1976 14 74942895 74960880 NPC2 yfs.blood.rnaarr -6.01e-01 0.000270 0 14:72889754-14:76444767
1955 14 74003818 74010498 ACOT1 brain_amygdala 1.30e-01 0.000300 0 14:72889754-14:76444767
2066 14 73436159 73493920 ZFYVE1 brain_cerebellum -1.34e-01 0.000200 0 14:72889754-14:76444767
1893 14 74318547 74353319 PTGR2 thyroid -8.96e-01 0.000391 0 14:72889754-14:76444767
12727 14 72399156 73030654 RGS6 psychencode 1.11e+00 0.000275 0 14:72889754-14:76444767
12028 14 74486056 74549566 CCDC176 psychencode 1.88e+00 0.001100 0 14:72889754-14:76444767
12042 14 76424442 76449334 TGFB3 psychencode 4.64e-01 0.000277 0 14:72889754-14:76444767
1790 14 75348593 75370450 DLST cmc.brain.rnaseq 4.91e+00 0.012900 1 14:72889754-14:76444767
1812 14 74551655 74667117 LIN52 cmc.brain.rnaseq 2.77e+00 0.001220 0 14:72889754-14:76444767
2035 14 74077649 74086592 ACOT6 brain_caudate_basal_ganglia -8.73e-02 0.000217 0 14:72889754-14:76444767
1831 14 74523553 74551196 ALDH6A1 brain_cerebellar_hemisphere -1.64e+00 0.000671 0 14:72889754-14:76444767
1802 14 75480467 75518235 MLH3 brain_hippocampus 8.21e-01 0.002210 0 14:72889754-14:76444767
1863 14 76776957 76968178 ESRRB thyroid -1.61e+00 0.000492 0 14:72889754-14:76444767
1887 14 74005925 74006485 NT5CP2 pituitary -2.18e+00 0.000406 0 14:72889754-14:76444767
1829 14 73704205 73741348 PAPLN yfs.blood.rnaarr -2.26e+00 0.000699 0 14:72889754-14:76444767
2057 14 74003818 74010498 ACOT1 brain_cerebellar_hemisphere -4.40e-01 0.000204 0 14:72889754-14:76444767
1888 14 74005925 74006485 NT5CP2 brain_cerebellar_hemisphere -1.62e+00 0.000402 0 14:72889754-14:76444767
1998 14 75480466 75518235 MLH3 cmc.brain.rnaseq_splicing 8.09e-01 0.000244 0 14:72889754-14:76444767
2018 14 76045932 76114507 FLVCR2 thyroid 1.35e-01 0.000225 0 14:72889754-14:76444767
1789 14 73086004 73360809 DPF3 thyroid 4.19e+00 0.216000 1 14:72889754-14:76444767
12276 14 74318547 74353530 PTGR2 psychencode -1.40e+00 0.000800 0 14:72889754-14:76444767
1971 14 73393040 73426411 DCAF4 brain_cerebellar_hemisphere 1.31e+00 0.000275 0 14:72889754-14:76444767
1865 14 73704205 73741348 PAPLN pituitary 1.64e+00 0.000483 0 14:72889754-14:76444767
1914 14 74551499 74667936 LIN52 whole_blood 1.08e+00 0.000359 0 14:72889754-14:76444767
1823 14 74318547 74353319 PTGR2 brain_cerebellum -1.37e+00 0.000831 0 14:72889754-14:76444767
1874 14 75372346 75390099 RPS6KL1 thyroid 3.80e+00 0.000447 0 14:72889754-14:76444767
1939 14 76099968 76421421 TTLL5 brain_hypothalamus 7.62e-01 0.000325 0 14:72889754-14:76444767
2047 14 74353320 74399214 ZNF410 yfs.blood.rnaarr 2.81e-01 0.000212 0 14:72889754-14:76444767
12743 14 74872596 74892805 SYNDIG1L psychencode 9.35e-01 0.000401 0 14:72889754-14:76444767
1978 14 75469614 75476292 EIF2B2 brain_nucleus_accumbens_basal_ganglia 6.59e-01 0.000269 0 14:72889754-14:76444767
13362 14 74083412 74100644 RP3-414A15.10 psychencode -1.19e+00 0.000224 0 14:72889754-14:76444767
1908 14 75372346 75390099 RPS6KL1 brain_cerebellar_hemisphere -2.26e+00 0.000370 0 14:72889754-14:76444767
2074 14 76127550 76421425 TTLL5 cmc.brain.rnaseq -6.49e-01 0.000194 0 14:72889754-14:76444767
1962 14 74034324 74042357 ACOT2 brain_substantia_nigra -6.76e-01 0.000290 0 14:72889754-14:76444767
1993 14 75480467 75518235 MLH3 whole_blood 7.80e-01 0.000249 0 14:72889754-14:76444767
1796 14 73427303 73428701 RP11-109N23.6 adrenal_gland -3.16e+00 0.004280 0 14:72889754-14:76444767
1969 14 74003818 74010498 ACOT1 brain_frontal_cortex_ba9 -1.49e+00 0.000280 0 14:72889754-14:76444767
1804 14 74318547 74353319 PTGR2 brain_hippocampus -1.84e+00 0.002140 0 14:72889754-14:76444767
1875 14 73393040 73426411 DCAF4 whole_blood -1.48e+00 0.000443 0 14:72889754-14:76444767
2008 14 76099968 76421421 TTLL5 brain_cerebellar_hemisphere -7.84e-01 0.000231 0 14:72889754-14:76444767
1931 14 73704205 73741348 PAPLN thyroid 7.67e-01 0.000334 0 14:72889754-14:76444767
1850 14 74486103 74532795 CCDC176 brain_putamen_basal_ganglia 1.45e+00 0.000551 0 14:72889754-14:76444767
1799 14 73427303 73428701 RP11-109N23.6 thyroid -2.98e+00 0.003090 0 14:72889754-14:76444767
1970 14 73710726 73712687 RP4-647C14.2 whole_blood -1.02e+00 0.000276 0 14:72889754-14:76444767
1821 14 74318620 74352168 PTGR2 ntr.blood.rnaarr -1.35e+00 0.000860 0 14:72889754-14:76444767
2043 14 74424713 74486055 ENTPD5 brain_cerebellar_hemisphere 2.56e-01 0.000213 0 14:72889754-14:76444767
1830 14 74111578 74170435 DNAL1 brain_cerebellar_hemisphere 1.67e+00 0.000692 0 14:72889754-14:76444767
1906 14 74938633 74939063 RP3-449M8.9 brain_putamen_basal_ganglia 9.50e-01 0.000375 0 14:72889754-14:76444767
1881 14 73945188 74025651 HEATR4 cmc.brain.rnaseq 1.84e+00 0.000415 0 14:72889754-14:76444767
1828 14 74318547 74353319 PTGR2 pituitary -1.33e+00 0.000754 0 14:72889754-14:76444767
11762 14 76618259 76720685 GPATCH2L psychencode -1.37e+00 0.000522 0 14:72889754-14:76444767
1858 14 75548817 75593778 NEK9 cmc.brain.rnaseq_splicing -3.94e-01 0.000511 0 14:72889754-14:76444767
1960 14 74486103 74532795 CCDC176 brain_cerebellum 1.08e+00 0.000294 0 14:72889754-14:76444767
2075 14 76127550 76421425 TTLL5 cmc.brain.rnaseq_splicing 1.07e-01 0.000194 0 14:72889754-14:76444767
2033 14 74551499 74667936 LIN52 brain_cerebellar_hemisphere 7.21e-01 0.000218 0 14:72889754-14:76444767
1928 14 73086004 73360809 DPF3 brain_nucleus_accumbens_basal_ganglia -1.01e+00 0.000338 0 14:72889754-14:76444767
1972 14 74938633 74939063 RP3-449M8.9 thyroid -7.13e-01 0.000275 0 14:72889754-14:76444767
2055 14 74424713 74486102 ENTPD5 yfs.blood.rnaarr 5.74e-02 0.000205 0 14:72889754-14:76444767
1988 14 75469614 75476292 EIF2B2 brain_putamen_basal_ganglia 7.15e-01 0.000254 0 14:72889754-14:76444767
12043 14 75530873 75545126 ZC2HC1C psychencode -7.88e-02 0.000861 0 14:72889754-14:76444767
2077 14 74353531 74399212 ZNF410 whole_blood -1.51e-01 0.000193 0 14:72889754-14:76444767
1975 14 74318673 74398991 ZNF410 cmc.brain.rnaseq_splicing -7.71e-01 0.000271 0 14:72889754-14:76444767
2021 14 74942895 74960880 NPC2 whole_blood 6.59e-01 0.000224 0 14:72889754-14:76444767
2083 14 74752126 74769759 ABCD4 thyroid 4.50e-01 0.000190 0 14:72889754-14:76444767
2015 14 76776957 76968178 ESRRB adrenal_gland 7.23e-01 0.000226 0 14:72889754-14:76444767
2059 14 74551499 74667936 LIN52 brain_cerebellum 7.32e-01 0.000203 0 14:72889754-14:76444767
2006 14 74416629 74428606 COQ6 brain_amygdala 9.88e-01 0.000236 0 14:72889754-14:76444767
1985 14 74083547 74086592 ACOT6 cmc.brain.rnaseq -1.02e+00 0.000261 0 14:72889754-14:76444767
1973 14 74289262 74296838 RP5-1021I20.2 brain_substantia_nigra 5.47e-01 0.000273 0 14:72889754-14:76444767
2049 14 74318673 74398991 ZNF410 cmc.brain.rnaseq_splicing 3.49e-01 0.000209 0 14:72889754-14:76444767
1992 14 75469614 75476292 EIF2B2 pituitary 9.22e-01 0.000250 0 14:72889754-14:76444767
2007 14 74254063 74269973 RP5-1021I20.1 brain_amygdala 3.05e-01 0.000232 0 14:72889754-14:76444767
1983 14 74486103 74532795 CCDC176 brain_nucleus_accumbens_basal_ganglia 9.05e-01 0.000267 0 14:72889754-14:76444767
1996 14 74751979 74769767 ABCD4 cmc.brain.rnaseq -4.87e-01 0.000245 0 14:72889754-14:76444767
2068 14 74416629 74428606 COQ6 brain_cortex 5.62e-01 0.000199 0 14:72889754-14:76444767
12031 14 76368479 76550928 IFT43 psychencode -6.21e-01 0.000199 0 14:72889754-14:76444767
12037 14 75480467 75518235 MLH3 psychencode 1.31e+00 0.000215 0 14:72889754-14:76444767
1941 14 75469611 75476294 EIF2B2 cmc.brain.rnaseq 4.56e-01 0.000322 0 14:72889754-14:76444767
1848 14 75469614 75476292 EIF2B2 yfs.blood.rnaarr 3.30e-01 0.000558 0 14:72889754-14:76444767
1873 14 74254063 74269973 RP5-1021I20.1 brain_substantia_nigra 9.23e-01 0.000449 0 14:72889754-14:76444767
2064 14 74551499 74667936 LIN52 pituitary -6.93e-01 0.000200 0 14:72889754-14:76444767
1879 14 75894445 75940814 JDP2 brain_cerebellar_hemisphere -1.64e+00 0.000421 0 14:72889754-14:76444767
2082 14 74353531 74399212 ZNF410 thyroid 7.06e-02 0.000191 0 14:72889754-14:76444767
1999 14 73393040 73426411 DCAF4 pituitary 1.50e-01 0.000243 0 14:72889754-14:76444767
2079 14 74942895 74960880 NPC2 thyroid 2.09e-01 0.000192 0 14:72889754-14:76444767
1866 14 74486103 74532795 CCDC176 pituitary 1.11e+00 0.000464 0 14:72889754-14:76444767
1909 14 74751979 74769767 ABCD4 cmc.brain.rnaseq_splicing -6.90e-01 0.000369 0 14:72889754-14:76444767
12047 14 74353320 74399214 ZNF410 psychencode -3.91e-01 0.000233 0 14:72889754-14:76444767
1949 14 74752126 74769759 ABCD4 brain_cerebellum 2.20e+00 0.000308 0 14:72889754-14:76444767
1869 14 74398204 74416995 FAM161B thyroid 1.31e+00 0.000460 0 14:72889754-14:76444767
2050 14 74254063 74269973 RP5-1021I20.1 brain_cerebellar_hemisphere 1.98e-01 0.000208 0 14:72889754-14:76444767
11837 14 73704205 73741348 PAPLN psychencode 4.45e-01 0.000191 0 14:72889754-14:76444767
1840 14 74551499 74667936 LIN52 thyroid 1.48e+00 0.000588 0 14:72889754-14:76444767
2028 14 74940710 74941567 RP3-449M8.6 thyroid -5.17e-01 0.000220 0 14:72889754-14:76444767
12522 14 73436159 73493920 ZFYVE1 psychencode 2.78e+00 0.004420 0 14:72889754-14:76444767
2073 14 74416629 74428606 COQ6 brain_cerebellar_hemisphere -1.86e-01 0.000195 0 14:72889754-14:76444767
12039 14 76044960 76129557 FLVCR2 psychencode 2.26e-01 0.000215 0 14:72889754-14:76444767
12977 14 73086004 73360809 DPF3 psychencode 1.09e+00 0.000486 0 14:72889754-14:76444767
2081 14 74416629 74428606 COQ6 pituitary 9.92e-02 0.000191 0 14:72889754-14:76444767
1838 14 75598170 75643349 TMED10 cmc.brain.rnaseq -2.67e-01 0.000609 0 14:72889754-14:76444767
2060 14 74398204 74416995 FAM161B whole_blood 2.97e-01 0.000202 0 14:72889754-14:76444767
13464 14 74938633 74939063 RP3-449M8.9 psychencode -1.06e+00 0.000227 0 14:72889754-14:76444767
1820 14 75471422 75475184 RP11-950C14.3 pituitary -8.84e-01 0.000877 0 14:72889754-14:76444767
1871 14 74353531 74399212 ZNF410 brain_cerebellum -1.29e+00 0.000455 0 14:72889754-14:76444767
2027 14 76099968 76421421 TTLL5 adrenal_gland 5.36e-01 0.000221 0 14:72889754-14:76444767
2052 14 74318673 74398991 ZNF410 cmc.brain.rnaseq_splicing -2.91e-01 0.000205 0 14:72889754-14:76444767
1808 14 76099968 76421421 TTLL5 brain_cerebellum -1.62e+00 0.001560 0 14:72889754-14:76444767
2037 14 74254063 74269973 RP5-1021I20.1 brain_cortex 1.94e-01 0.000215 0 14:72889754-14:76444767
2084 14 74416629 74428606 COQ6 thyroid -7.66e-02 0.000190 0 14:72889754-14:76444767
12032 14 74942895 74960880 NPC2 psychencode 4.52e-01 0.000191 0 14:72889754-14:76444767
2010 14 74254063 74269973 RP5-1021I20.1 thyroid 2.57e-01 0.000229 0 14:72889754-14:76444767
2086 14 74960422 74962262 ISCA2 ntr.blood.rnaarr 2.48e-01 0.000190 0 14:72889754-14:76444767
1924 14 74960423 74963809 ISCA2 pituitary -2.11e+00 0.000345 0 14:72889754-14:76444767
12030 14 75519924 75536186 ACYP1 psychencode -1.21e+00 0.000405 0 14:72889754-14:76444767
2089 14 76776957 76968178 ESRRB brain_cortex 3.48e-01 0.000189 0 14:72889754-14:76444767
1853 14 75469614 75476292 EIF2B2 brain_frontal_cortex_ba9 6.00e-01 0.000536 0 14:72889754-14:76444767
2061 14 74178494 74181128 PNMA1 brain_hypothalamus -4.71e-01 0.000202 0 14:72889754-14:76444767
2087 14 76045932 76114507 FLVCR2 whole_blood 3.35e-01 0.000190 0 14:72889754-14:76444767
1872 14 75469614 75476292 EIF2B2 brain_anterior_cingulate_cortex_ba24 4.73e-01 0.000452 0 14:72889754-14:76444767
2069 14 74398204 74416995 FAM161B brain_caudate_basal_ganglia 4.70e-01 0.000198 0 14:72889754-14:76444767
2085 14 74940710 74941567 RP3-449M8.6 brain_cortex 5.87e-01 0.000190 0 14:72889754-14:76444767
1884 14 75530873 75545126 ZC2HC1C brain_frontal_cortex_ba9 5.73e-01 0.000407 0 14:72889754-14:76444767
2088 14 74960423 74963809 ISCA2 whole_blood 9.62e-02 0.000190 0 14:72889754-14:76444767
12597 14 75598173 75643334 TMED10 psychencode -2.93e+00 0.000240 0 14:72889754-14:76444767
1861 14 75530873 75545126 ZC2HC1C brain_nucleus_accumbens_basal_ganglia 4.95e-02 0.000499 0 14:72889754-14:76444767
1892 14 74940710 74941567 RP3-449M8.6 adrenal_gland -1.28e+00 0.000395 0 14:72889754-14:76444767
1966 14 74254063 74269973 RP5-1021I20.1 whole_blood 5.55e-01 0.000284 0 14:72889754-14:76444767
2029 14 74940710 74941567 RP3-449M8.6 pituitary -5.10e-01 0.000220 0 14:72889754-14:76444767
1809 14 74416629 74428606 COQ6 whole_blood 1.98e+00 0.001390 0 14:72889754-14:76444767
12045 14 75469614 75476292 EIF2B2 psychencode 3.59e-01 0.000353 0 14:72889754-14:76444767
1836 14 76424441 76448092 TGFB3 cmc.brain.rnaseq_splicing 1.63e+00 0.000638 0 14:72889754-14:76444767
2092 14 74416629 74428606 COQ6 brain_nucleus_accumbens_basal_ganglia -1.91e-01 0.000189 0 14:72889754-14:76444767
2097 14 74416629 74428606 COQ6 brain_cerebellum 3.68e-02 0.000187 0 14:72889754-14:76444767
13379 14 75761107 75763341 RP11-293M10.5 psychencode 2.49e+00 0.001240 0 14:72889754-14:76444767
12046 14 74416629 74430373 COQ6 psychencode 3.26e-02 0.000188 0 14:72889754-14:76444767
2093 14 74416636 74429813 COQ6 cmc.brain.rnaseq 2.36e-01 0.000189 0 14:72889754-14:76444767
2004 14 74077649 74086592 ACOT6 brain_anterior_cingulate_cortex_ba24 -2.70e-01 0.000237 0 14:72889754-14:76444767
1896 14 74005925 74006485 NT5CP2 brain_cerebellum -1.90e+00 0.000386 0 14:72889754-14:76444767
2009 14 76099968 76421421 TTLL5 brain_putamen_basal_ganglia -5.33e-02 0.000229 0 14:72889754-14:76444767
1797 14 75890386 75894418 RP11-293M10.6 brain_cortex 2.70e+00 0.003280 0 14:72889754-14:76444767
1800 14 74318547 74353319 PTGR2 brain_putamen_basal_ganglia -1.57e+00 0.002630 0 14:72889754-14:76444767
12975 14 74551499 74667936 LIN52 psychencode 1.23e+00 0.000333 0 14:72889754-14:76444767
2102 14 74960423 74963809 ISCA2 yfs.blood.rnaarr 1.88e-01 0.000185 0 14:72889754-14:76444767
1815 14 73525139 73526123 RP11-109N23.4 brain_nucleus_accumbens_basal_ganglia 3.83e-02 0.001050 0 14:72889754-14:76444767
1847 14 75480466 75518235 MLH3 ntr.blood.rnaarr 1.94e-01 0.000565 0 14:72889754-14:76444767
1954 14 73393039 73426357 DCAF4 cmc.brain.rnaseq -3.29e-01 0.000304 0 14:72889754-14:76444767
2100 14 76424442 76449334 TGFB3 yfs.blood.rnaarr -1.44e-01 0.000186 0 14:72889754-14:76444767
2072 14 75548822 75593855 NEK9 whole_blood 1.46e+00 0.000195 0 14:72889754-14:76444767
1843 14 74424713 74486055 ENTPD5 thyroid 1.18e+00 0.000577 0 14:72889754-14:76444767
1940 14 75480466 75518235 MLH3 cmc.brain.rnaseq 4.60e-01 0.000322 0 14:72889754-14:76444767
2098 14 76045932 76114507 FLVCR2 brain_cortex 2.22e-02 0.000187 0 14:72889754-14:76444767
2041 14 74424713 74486055 ENTPD5 brain_cerebellum 3.05e-01 0.000213 0 14:72889754-14:76444767
1877 14 75469614 75476292 EIF2B2 adrenal_gland 3.81e-01 0.000434 0 14:72889754-14:76444767
2017 14 73393039 73426356 DCAF4 ntr.blood.rnaarr 1.09e-01 0.000225 0 14:72889754-14:76444767
1832 14 76044939 76114512 FLVCR2 cmc.brain.rnaseq -9.04e-01 0.000664 0 14:72889754-14:76444767
1811 14 75890386 75894418 RP11-293M10.6 brain_frontal_cortex_ba9 1.76e+00 0.001360 0 14:72889754-14:76444767
12523 14 74960423 74963809 ISCA2 psychencode 1.34e+00 0.000666 0 14:72889754-14:76444767
2056 14 75480466 75518235 MLH3 cmc.brain.rnaseq_splicing -1.32e+00 0.000204 0 14:72889754-14:76444767
13359 14 74005925 74006485 NT5CP2 psychencode -1.16e+00 0.000352 0 14:72889754-14:76444767
1899 14 74005925 74006485 NT5CP2 brain_nucleus_accumbens_basal_ganglia -1.46e+00 0.000385 0 14:72889754-14:76444767
2090 14 76044960 76129557 FLVCR2 yfs.blood.rnaarr -7.39e-02 0.000189 0 14:72889754-14:76444767
1911 14 74005925 74006485 NT5CP2 brain_frontal_cortex_ba9 -1.35e+00 0.000366 0 14:72889754-14:76444767
1997 14 74254063 74269973 RP5-1021I20.1 brain_cerebellum 2.50e-01 0.000245 0 14:72889754-14:76444767
1987 14 75480466 75518235 MLH3 cmc.brain.rnaseq_splicing -4.82e-01 0.000258 0 14:72889754-14:76444767
1868 14 74034323 74042362 ACOT2 cmc.brain.rnaseq -1.74e+00 0.000460 0 14:72889754-14:76444767
1795 14 73393040 73426411 DCAF4 thyroid 2.54e+00 0.004300 0 14:72889754-14:76444767
2179 14 104153913 104154464 RP11-73M18.6 brain_substantia_nigra 2.34e+00 0.000581 0 14:103012102-14:105001723
2187 14 104162690 104163500 RP11-73M18.8 brain_nucleus_accumbens_basal_ganglia 3.57e+00 0.000523 0 14:103012102-14:105001723
13467 14 104153913 104154464 RP11-73M18.6 psychencode 5.24e+00 0.181000 1 14:103012102-14:105001723
2141 14 104153913 104154464 RP11-73M18.6 brain_cortex 3.62e+00 0.001160 0 14:103012102-14:105001723
2131 14 104162690 104163500 RP11-73M18.8 adrenal_gland 4.21e+00 0.002370 0 14:103012102-14:105001723
2196 14 104163946 104181841 XRCC3 brain_cerebellum 3.37e+00 0.000498 0 14:103012102-14:105001723
13460 14 104160897 104161507 RP11-73M18.7 psychencode 4.72e+00 0.016000 1 14:103012102-14:105001723
2125 14 104177607 104179149 AL049840.1 adrenal_gland 3.99e+00 0.004240 1 14:103012102-14:105001723
12133 14 104163946 104181841 XRCC3 psychencode 2.74e+00 0.000455 0 14:103012102-14:105001723
2172 14 104177607 104179149 AL049840.1 brain_nucleus_accumbens_basal_ganglia 2.75e+00 0.000620 0 14:103012102-14:105001723
2203 14 104177607 104179149 AL049840.1 pituitary 2.92e+00 0.000477 0 14:103012102-14:105001723
2114 14 104161388 104161507 RP11-73M18.7 whole_blood 4.68e+00 0.014700 1 14:103012102-14:105001723
2137 14 104177607 104179149 AL049840.1 brain_amygdala 3.18e+00 0.001340 0 14:103012102-14:105001723
2121 14 104179904 104180441 RP11-73M18.9 brain_hypothalamus 4.28e+00 0.005310 1 14:103012102-14:105001723
2144 14 104162690 104163500 RP11-73M18.8 whole_blood 3.59e+00 0.001060 0 14:103012102-14:105001723
2228 14 104162690 104163500 RP11-73M18.8 pituitary 7.94e-01 0.000383 0 14:103012102-14:105001723
2215 14 104161388 104161507 RP11-73M18.7 thyroid 3.22e+00 0.000415 0 14:103012102-14:105001723
2126 14 105287538 105290055 LINC00638 thyroid -2.07e+00 0.003010 0 14:103012102-14:105001723
13350 14 104029299 104152261 RP11-73M18.2 psychencode 2.79e+00 0.001190 0 14:103012102-14:105001723
13234 14 104148699 104150352 RP11-894P9.1 psychencode -7.13e-01 0.000313 0 14:103012102-14:105001723
2198 14 104163946 104181841 XRCC3 pituitary 2.82e+00 0.000493 0 14:103012102-14:105001723
2205 14 104163946 104181841 XRCC3 brain_cerebellar_hemisphere 3.04e+00 0.000458 0 14:103012102-14:105001723
2235 14 105309000 105312253 CTD-3051D23.1 whole_blood -1.39e+00 0.000353 0 14:103012102-14:105001723
2154 14 105147483 105151269 RP11-982M15.6 brain_cortex -1.37e+00 0.000846 0 14:103012102-14:105001723
2290 14 105155943 105185942 INF2 brain_nucleus_accumbens_basal_ganglia 5.41e-01 0.000245 0 14:103012102-14:105001723
2255 14 105219437 105234831 SIVA1 whole_blood -1.10e+00 0.000302 0 14:103012102-14:105001723
2142 14 105147483 105151269 RP11-982M15.6 brain_hippocampus -2.32e+00 0.001110 0 14:103012102-14:105001723
2245 14 105287538 105290055 LINC00638 pituitary 1.10e+00 0.000322 0 14:103012102-14:105001723
2214 14 104153913 104154464 RP11-73M18.6 brain_caudate_basal_ganglia 1.84e+00 0.000423 0 14:103012102-14:105001723
2112 14 104028233 104167888 KLC1 pituitary -4.78e+00 0.021500 1 14:103012102-14:105001723
2286 14 105287538 105290055 LINC00638 adrenal_gland 6.55e-01 0.000250 0 14:103012102-14:105001723
2171 14 104179904 104180441 RP11-73M18.9 brain_caudate_basal_ganglia 3.63e+00 0.000640 0 14:103012102-14:105001723
2299 14 105155943 105185942 INF2 yfs.blood.rnaarr 9.71e-02 0.000234 0 14:103012102-14:105001723
13366 14 105287538 105290055 LINC00638 psychencode -2.14e+00 0.001370 0 14:103012102-14:105001723
2108 14 104179904 104180441 RP11-73M18.9 brain_cortex 4.89e+00 0.032100 1 14:103012102-14:105001723
2218 14 104022881 104029168 BAG5 brain_caudate_basal_ganglia 1.31e+00 0.000411 0 14:103012102-14:105001723
2242 14 105219437 105234831 SIVA1 brain_cerebellar_hemisphere 8.07e-01 0.000330 0 14:103012102-14:105001723
2217 14 105309000 105312253 CTD-3051D23.1 pituitary -1.11e+00 0.000412 0 14:103012102-14:105001723
2107 14 104177607 104179149 AL049840.1 brain_cortex 4.90e+00 0.034600 1 14:103012102-14:105001723
2280 14 105219469 105225996 SIVA1 cmc.brain.rnaseq 3.35e-01 0.000254 0 14:103012102-14:105001723
13345 14 104029299 104073860 APOPT1 psychencode 1.35e+00 0.000416 0 14:103012102-14:105001723
2178 14 103995521 104003410 TRMT61A yfs.blood.rnaarr 3.29e+00 0.000588 0 14:103012102-14:105001723
2246 14 104182067 104200005 ZFYVE21 thyroid 2.16e-01 0.000322 0 14:103012102-14:105001723
2176 14 103798011 103798704 RP11-45P15.4 adrenal_gland -1.96e+00 0.000603 0 14:103012102-14:105001723
2182 14 104028233 104167888 KLC1 yfs.blood.rnaarr -1.79e+00 0.000562 0 14:103012102-14:105001723
2148 14 104182080 104200005 ZFYVE21 cmc.brain.rnaseq_splicing -2.97e+00 0.001010 0 14:103012102-14:105001723
2208 14 104182080 104200005 ZFYVE21 cmc.brain.rnaseq_splicing -1.48e+00 0.000444 0 14:103012102-14:105001723
2191 14 104177607 104179149 AL049840.1 thyroid 3.21e+00 0.000511 0 14:103012102-14:105001723
2143 14 104022881 104029168 BAG5 yfs.blood.rnaarr 3.36e+00 0.001080 0 14:103012102-14:105001723
2201 14 104029299 104073860 APOPT1 brain_hippocampus 7.06e-01 0.000479 0 14:103012102-14:105001723
2115 14 104179904 104180441 RP11-73M18.9 adrenal_gland 4.52e+00 0.014300 1 14:103012102-14:105001723
2206 14 104200087 104313927 PPP1R13B cmc.brain.rnaseq -1.59e+00 0.000452 0 14:103012102-14:105001723
2174 14 104200089 104313927 PPP1R13B adrenal_gland 1.93e+00 0.000613 0 14:103012102-14:105001723
2209 14 104182067 104200005 ZFYVE21 brain_caudate_basal_ganglia -2.63e+00 0.000444 0 14:103012102-14:105001723
2241 14 105190533 105213647 ADSSL1 cmc.brain.rnaseq 1.25e+00 0.000332 0 14:103012102-14:105001723
2210 14 105331617 105363107 CEP170B brain_hypothalamus 1.15e+00 0.000440 0 14:103012102-14:105001723
2129 14 104179904 104180441 RP11-73M18.9 brain_amygdala 4.11e+00 0.002780 0 14:103012102-14:105001723
2296 14 105287538 105290055 LINC00638 whole_blood 1.38e-01 0.000236 0 14:103012102-14:105001723
2128 14 104162690 104163500 RP11-73M18.8 brain_caudate_basal_ganglia 4.31e+00 0.002980 0 14:103012102-14:105001723
2138 14 103851729 103970168 MARK3 thyroid 2.89e+00 0.001280 0 14:103012102-14:105001723
2145 14 103851729 103970168 MARK3 yfs.blood.rnaarr -3.55e+00 0.001060 0 14:103012102-14:105001723
13344 14 105147483 105151269 RP11-982M15.6 psychencode 8.07e-01 0.000401 0 14:103012102-14:105001723
2285 14 105331617 105363107 CEP170B thyroid 7.98e-02 0.000250 0 14:103012102-14:105001723
2264 14 104378624 104387903 C14orf2 ntr.blood.rnaarr 2.07e+00 0.000287 0 14:103012102-14:105001723
12132 14 104028233 104167888 KLC1 psychencode 2.00e+00 0.000400 0 14:103012102-14:105001723
2271 14 105403590 105444694 AHNAK2 brain_cerebellum 9.28e-01 0.000271 0 14:103012102-14:105001723
2194 14 105452615 105461855 C14orf79 cmc.brain.rnaseq -1.44e+00 0.000501 0 14:103012102-14:105001723
2216 14 103800338 103811361 EIF5 cmc.brain.rnaseq_splicing 2.55e+00 0.000413 0 14:103012102-14:105001723
2224 14 103798011 103798704 RP11-45P15.4 brain_anterior_cingulate_cortex_ba24 -1.49e+00 0.000400 0 14:103012102-14:105001723
2277 14 103798011 103798704 RP11-45P15.4 brain_nucleus_accumbens_basal_ganglia 2.39e-01 0.000259 0 14:103012102-14:105001723
2183 14 103851729 103970168 MARK3 pituitary 2.65e+00 0.000551 0 14:103012102-14:105001723
2247 14 105266933 105271049 ZBTB42 thyroid 1.12e+00 0.000318 0 14:103012102-14:105001723
2199 14 104163946 104181841 XRCC3 thyroid 3.33e+00 0.000486 0 14:103012102-14:105001723
2289 14 102606188 102690010 WDR20 cmc.brain.rnaseq_splicing 1.75e-01 0.000246 0 14:103012102-14:105001723
2278 14 103798011 103798704 RP11-45P15.4 brain_caudate_basal_ganglia 1.74e-01 0.000259 0 14:103012102-14:105001723
2185 14 103800338 103811361 EIF5 cmc.brain.rnaseq 2.34e+00 0.000540 0 14:103012102-14:105001723
2195 14 104029299 104073860 APOPT1 brain_putamen_basal_ganglia 1.10e+00 0.000500 0 14:103012102-14:105001723
2298 14 104710541 104712473 C14orf144 adrenal_gland -1.42e-01 0.000234 0 14:103012102-14:105001723
2149 14 104177607 104179149 AL049840.1 brain_hippocampus 3.28e+00 0.000934 0 14:103012102-14:105001723
2160 14 103798011 103798704 RP11-45P15.4 thyroid -2.33e+00 0.000780 0 14:103012102-14:105001723
2267 14 104378624 104387903 C14orf2 cmc.brain.rnaseq_splicing 8.79e-01 0.000280 0 14:103012102-14:105001723
2265 14 103851729 103970168 MARK3 brain_cerebellum 4.75e-02 0.000283 0 14:103012102-14:105001723
2186 14 105235686 105262088 AKT1 yfs.blood.rnaarr 1.54e+00 0.000535 0 14:103012102-14:105001723
2254 14 102606188 102690010 WDR20 cmc.brain.rnaseq_splicing 3.61e-01 0.000304 0 14:103012102-14:105001723
12400 14 104394799 104519004 TDRD9 psychencode -1.24e+00 0.000299 0 14:103012102-14:105001723
2204 14 104179904 104180441 RP11-73M18.9 brain_frontal_cortex_ba9 3.37e+00 0.000463 0 14:103012102-14:105001723
2232 14 103798011 103798704 RP11-45P15.4 brain_cortex -1.33e+00 0.000368 0 14:103012102-14:105001723
2220 14 104200089 104313927 PPP1R13B thyroid 1.39e+00 0.000409 0 14:103012102-14:105001723
2184 14 104162690 104163500 RP11-73M18.8 brain_cerebellum 2.10e+00 0.000546 0 14:103012102-14:105001723
11712 14 103851729 103970168 MARK3 psychencode -3.50e-02 0.000540 0 14:103012102-14:105001723
2284 14 104552016 104579098 ASPG adrenal_gland 7.53e-03 0.000252 0 14:103012102-14:105001723
2168 14 104029298 104152568 KLC1 cmc.brain.rnaseq_splicing -8.66e-01 0.000683 0 14:103012102-14:105001723
11753 14 104200089 104313927 PPP1R13B psychencode -7.29e-01 0.000418 0 14:103012102-14:105001723
2192 14 104029298 104152568 KLC1 cmc.brain.rnaseq_splicing -1.67e+00 0.000505 0 14:103012102-14:105001723
2287 14 103798011 103798704 RP11-45P15.4 brain_putamen_basal_ganglia 7.44e-02 0.000249 0 14:103012102-14:105001723
2229 14 104029298 104167881 KLC1 ntr.blood.rnaarr 2.00e+00 0.000381 0 14:103012102-14:105001723
2213 14 104394816 104519004 TDRD9 cmc.brain.rnaseq_splicing 1.70e+00 0.000430 0 14:103012102-14:105001723
2274 14 103798011 103798704 RP11-45P15.4 brain_hippocampus -3.17e-01 0.000265 0 14:103012102-14:105001723
2256 14 105046021 105056852 C14orf180 brain_caudate_basal_ganglia 1.27e+00 0.000300 0 14:103012102-14:105001723
2177 14 104229140 104229614 RP11-73M18.11 thyroid 1.40e+00 0.000594 0 14:103012102-14:105001723
2275 14 102690837 102771537 MOK thyroid 5.49e-01 0.000264 0 14:103012102-14:105001723
2190 14 102783713 102809511 ZNF839 cmc.brain.rnaseq 1.12e+00 0.000512 0 14:103012102-14:105001723
2158 14 104314058 104324386 LINC00637 adrenal_gland 2.82e+00 0.000788 0 14:103012102-14:105001723
2273 14 103798011 103798704 RP11-45P15.4 brain_frontal_cortex_ba9 -1.13e+00 0.000266 0 14:103012102-14:105001723
2151 14 103799881 103811362 EIF5 yfs.blood.rnaarr -2.79e+00 0.000921 0 14:103012102-14:105001723
13227 14 103878456 103879098 RP11-600F24.2 psychencode 4.93e+00 0.039400 1 14:103012102-14:105001723
2162 14 104029299 104073860 APOPT1 brain_nucleus_accumbens_basal_ganglia 1.96e+00 0.000758 0 14:103012102-14:105001723
2133 14 104029299 104073860 APOPT1 brain_frontal_cortex_ba9 3.13e+00 0.002100 0 14:103012102-14:105001723
2225 14 102808955 102825932 CINP cmc.brain.rnaseq 9.23e-01 0.000392 0 14:103012102-14:105001723
13381 14 103798011 103798704 RP11-45P15.4 psychencode 3.05e-01 0.000254 0 14:103012102-14:105001723
2244 14 102783714 102808955 ZNF839 brain_cerebellar_hemisphere 7.79e-01 0.000328 0 14:103012102-14:105001723
2139 14 104179904 104180441 RP11-73M18.9 brain_cerebellum 4.02e+00 0.001250 0 14:103012102-14:105001723
2165 14 104177607 104179149 AL049840.1 brain_cerebellar_hemisphere 3.66e+00 0.000730 0 14:103012102-14:105001723
2248 14 104941015 105071984 TMEM179 brain_cerebellum 1.34e+00 0.000315 0 14:103012102-14:105001723
2109 14 104177607 104179149 AL049840.1 brain_cerebellum 4.88e+00 0.031400 1 14:103012102-14:105001723
2166 14 104029299 104073860 APOPT1 pituitary 1.50e+00 0.000724 0 14:103012102-14:105001723
2104 14 103985996 103989448 CKB yfs.blood.rnaarr 5.19e+00 0.146000 1 14:103012102-14:105001723
2116 14 105287538 105290055 LINC00638 brain_cortex -2.58e+00 0.010900 1 14:103012102-14:105001723
2266 14 104394816 104519004 TDRD9 cmc.brain.rnaseq -8.76e-01 0.000283 0 14:103012102-14:105001723
2132 14 103851729 103970168 MARK3 whole_blood -3.90e+00 0.002200 0 14:103012102-14:105001723
2105 14 104162690 104163500 RP11-73M18.8 brain_amygdala 5.07e+00 0.078400 1 14:103012102-14:105001723
2122 14 104177607 104179149 AL049840.1 brain_hypothalamus 4.34e+00 0.005210 1 14:103012102-14:105001723
2118 14 103985996 103989448 CKB brain_cerebellum -4.58e+00 0.008980 1 14:103012102-14:105001723
2197 14 104029299 104073860 APOPT1 brain_anterior_cingulate_cortex_ba24 1.21e+00 0.000493 0 14:103012102-14:105001723
12525 14 104022881 104029168 BAG5 psychencode -3.18e+00 0.001830 0 14:103012102-14:105001723
2188 14 103991347 103995409 RP11-600F24.7 brain_frontal_cortex_ba9 5.50e-01 0.000521 0 14:103012102-14:105001723
2230 14 104314058 104324386 LINC00637 thyroid -1.29e+00 0.000376 0 14:103012102-14:105001723
2173 14 103243813 103377837 TRAF3 brain_cortex 1.63e+00 0.000619 0 14:103012102-14:105001723
2189 14 103243813 103377837 TRAF3 yfs.blood.rnaarr 8.52e-01 0.000518 0 14:103012102-14:105001723
11838 14 102808956 102829253 CINP psychencode 2.25e+00 0.004990 1 14:103012102-14:105001723
2282 14 103243813 103377837 TRAF3 thyroid 3.61e-01 0.000253 0 14:103012102-14:105001723
2155 14 104162690 104163500 RP11-73M18.8 thyroid 3.47e+00 0.000806 0 14:103012102-14:105001723
2240 14 104029299 104073860 APOPT1 adrenal_gland 2.09e+00 0.000335 0 14:103012102-14:105001723
2233 14 104314058 104324386 LINC00637 pituitary 1.52e+00 0.000359 0 14:103012102-14:105001723
2130 14 104028233 104167888 KLC1 whole_blood 3.53e+00 0.002410 0 14:103012102-14:105001723
12171 14 103243813 103377837 TRAF3 psychencode 1.95e-01 0.000242 0 14:103012102-14:105001723
2269 14 104378624 104387903 C14orf2 cmc.brain.rnaseq_splicing -7.98e-01 0.000274 0 14:103012102-14:105001723
2270 14 102783714 102808955 ZNF839 brain_cerebellum 1.19e-01 0.000273 0 14:103012102-14:105001723
13463 14 104179904 104180586 RP11-73M18.9 psychencode 4.65e+00 0.011600 1 14:103012102-14:105001723
2238 14 103388993 103397529 AMN brain_cerebellum 6.42e-01 0.000341 0 14:103012102-14:105001723
2202 14 103991347 103995409 RP11-600F24.7 brain_cerebellum -2.33e+00 0.000479 0 14:103012102-14:105001723
2106 14 103995508 104003410 TRMT61A cmc.brain.rnaseq 4.91e+00 0.039200 1 14:103012102-14:105001723
2276 14 103798011 103798704 RP11-45P15.4 brain_amygdala 7.41e-01 0.000260 0 14:103012102-14:105001723
2124 14 104177607 104179149 AL049840.1 brain_caudate_basal_ganglia 4.34e+00 0.004280 1 14:103012102-14:105001723
2123 14 104182067 104200005 ZFYVE21 yfs.blood.rnaarr 4.41e+00 0.004700 1 14:103012102-14:105001723
12969 14 103566481 103576896 EXOC3L4 psychencode 1.47e+00 0.000628 0 14:103012102-14:105001723
2279 14 102809045 102829253 CINP brain_cerebellum 3.43e-01 0.000255 0 14:103012102-14:105001723
2110 14 103995521 104003410 TRMT61A thyroid 4.84e+00 0.030900 1 14:103012102-14:105001723
12778 14 103589779 103603776 TNFAIP2 psychencode -4.63e-01 0.000256 0 14:103012102-14:105001723
2117 14 104162690 104163500 RP11-73M18.8 brain_cortex 4.60e+00 0.009270 1 14:103012102-14:105001723
2297 14 104394816 104519004 TDRD9 cmc.brain.rnaseq_splicing 3.95e-02 0.000235 0 14:103012102-14:105001723
2293 14 103388993 103397529 AMN thyroid -1.24e-01 0.000237 0 14:103012102-14:105001723
2175 14 104177607 104179149 AL049840.1 whole_blood 3.55e+00 0.000608 0 14:103012102-14:105001723
2140 14 104029299 104073860 APOPT1 thyroid -2.52e+00 0.001170 0 14:103012102-14:105001723
2161 14 104029299 104073860 APOPT1 brain_caudate_basal_ganglia 2.23e+00 0.000778 0 14:103012102-14:105001723
2223 14 102606037 102691184 WDR20 thyroid 1.13e+00 0.000401 0 14:103012102-14:105001723
2157 14 103799881 103811362 EIF5 brain_substantia_nigra 7.40e-01 0.000791 0 14:103012102-14:105001723
2135 14 104162690 104163500 RP11-73M18.8 brain_putamen_basal_ganglia 4.04e+00 0.001400 0 14:103012102-14:105001723
11835 14 103799881 103811362 EIF5 psychencode -1.53e-02 0.000417 0 14:103012102-14:105001723
2259 14 104153913 104154464 RP11-73M18.6 brain_putamen_basal_ganglia 1.54e+00 0.000299 0 14:103012102-14:105001723
2211 14 102829300 102968818 TECPR2 brain_cerebellum -1.28e+00 0.000438 0 14:103012102-14:105001723
2103 14 104019758 104028214 RP11-894P9.2 thyroid -5.29e+00 0.233000 1 14:103012102-14:105001723
2295 14 105475910 105487485 CDCA4 thyroid -3.19e-01 0.000236 0 14:103012102-14:105001723
2222 14 102973179 102976136 ANKRD9 yfs.blood.rnaarr -8.75e-01 0.000403 0 14:103012102-14:105001723
13462 14 104162690 104163500 RP11-73M18.8 psychencode 3.75e+00 0.001080 0 14:103012102-14:105001723
2147 14 104022881 104029168 BAG5 whole_blood 2.42e+00 0.001030 0 14:103012102-14:105001723
13369 14 104941015 105071984 TMEM179 psychencode -1.34e+00 0.000312 0 14:103012102-14:105001723
2193 14 104179904 104180441 RP11-73M18.9 thyroid 3.18e+00 0.000504 0 14:103012102-14:105001723
2291 14 102973179 102976136 ANKRD9 thyroid -4.05e-01 0.000242 0 14:103012102-14:105001723
2250 14 103398716 103523799 CDC42BPB brain_cortex -1.10e+00 0.000308 0 14:103012102-14:105001723
2170 14 105155943 105185942 INF2 whole_blood -1.77e+00 0.000659 0 14:103012102-14:105001723
11761 14 103058998 103196913 RCOR1 psychencode 1.31e+00 0.000505 0 14:103012102-14:105001723
2294 14 102783714 102808955 ZNF839 brain_putamen_basal_ganglia -2.85e-01 0.000237 0 14:103012102-14:105001723
2236 14 102547075 102606099 HSP90AA1 ntr.blood.rnaarr -1.11e+00 0.000352 0 14:103012102-14:105001723
2243 14 103995521 104003410 TRMT61A adrenal_gland 2.31e+00 0.000329 0 14:103012102-14:105001723
11625 14 102783714 102809044 ZNF839 psychencode -1.65e-01 0.000236 0 14:103012102-14:105001723
2227 14 103799881 103811362 EIF5 brain_cortex 1.74e+00 0.000387 0 14:103012102-14:105001723
2111 14 103995521 104003410 TRMT61A whole_blood 4.82e+00 0.025400 1 14:103012102-14:105001723
2159 14 104163946 104181841 XRCC3 yfs.blood.rnaarr 3.49e+00 0.000780 0 14:103012102-14:105001723
12524 14 103995521 104003410 TRMT61A psychencode 4.65e+00 0.012300 1 14:103012102-14:105001723
2181 14 104029299 104073860 APOPT1 brain_cortex 9.76e-01 0.000569 0 14:103012102-14:105001723
2127 14 104179904 104180441 RP11-73M18.9 whole_blood 4.29e+00 0.003000 0 14:103012102-14:105001723
2146 14 103799881 103811362 EIF5 brain_frontal_cortex_ba9 -2.14e+00 0.001030 0 14:103012102-14:105001723
2136 14 105219437 105234831 SIVA1 brain_anterior_cingulate_cortex_ba24 1.88e+00 0.001360 0 14:103012102-14:105001723
2237 14 104163946 104181841 XRCC3 brain_cortex 2.72e+00 0.000351 0 14:103012102-14:105001723
13060 14 104177607 104179149 AL049840.1 psychencode 1.88e+00 0.000458 0 14:103012102-14:105001723
2167 14 103995521 104003410 TRMT61A brain_caudate_basal_ganglia 2.86e+00 0.000689 0 14:103012102-14:105001723
2113 14 104022881 104029168 BAG5 adrenal_gland 4.59e+00 0.017600 1 14:103012102-14:105001723
2219 14 104153913 104154464 RP11-73M18.6 brain_anterior_cingulate_cortex_ba24 1.19e+00 0.000410 0 14:103012102-14:105001723
2221 14 104162690 104163500 RP11-73M18.8 brain_hypothalamus 3.22e+00 0.000408 0 14:103012102-14:105001723
2268 14 104394799 104519004 TDRD9 brain_substantia_nigra -9.96e-01 0.000279 0 14:103012102-14:105001723
2156 14 104179904 104180441 RP11-73M18.9 brain_nucleus_accumbens_basal_ganglia 2.89e+00 0.000803 0 14:103012102-14:105001723
2292 14 103398716 103523799 CDC42BPB yfs.blood.rnaarr 5.99e-01 0.000240 0 14:103012102-14:105001723
2152 14 104022760 104029168 BAG5 ntr.blood.rnaarr -3.13e+00 0.000917 0 14:103012102-14:105001723
2119 14 102973197 102976128 ANKRD9 cmc.brain.rnaseq_splicing 2.59e+00 0.006730 1 14:103012102-14:105001723
2207 14 104179904 104180441 RP11-73M18.9 brain_putamen_basal_ganglia 2.88e+00 0.000452 0 14:103012102-14:105001723
2261 14 104320740 104346448 CTD-2134A5.4 thyroid 5.43e-02 0.000296 0 14:103012102-14:105001723
11689 14 104605060 104647231 KIF26A psychencode 1.83e+00 0.000344 0 14:103012102-14:105001723
2272 14 104378624 104387903 C14orf2 cmc.brain.rnaseq 1.07e+00 0.000270 0 14:103012102-14:105001723
2120 14 104019758 104028214 RP11-894P9.2 brain_cerebellum -4.20e+00 0.006380 1 14:103012102-14:105001723
2283 14 104378625 104394606 C14orf2 thyroid 7.17e-01 0.000252 0 14:103012102-14:105001723
12399 14 104378625 104394606 C14orf2 psychencode 4.96e-01 0.000247 0 14:103012102-14:105001723
2258 14 103058998 103196913 RCOR1 yfs.blood.rnaarr 5.17e-01 0.000299 0 14:103012102-14:105001723
2153 14 103798011 103798704 RP11-45P15.4 pituitary -2.34e+00 0.000865 0 14:103012102-14:105001723
2169 14 104022881 104029168 BAG5 pituitary 3.45e+00 0.000681 0 14:103012102-14:105001723
2200 14 104179904 104180441 RP11-73M18.9 pituitary 2.97e+00 0.000481 0 14:103012102-14:105001723
2164 14 104179904 104180441 RP11-73M18.9 brain_anterior_cingulate_cortex_ba24 3.33e+00 0.000742 0 14:103012102-14:105001723
2260 14 104394778 104519004 TDRD9 ntr.blood.rnaarr -1.09e+00 0.000296 0 14:103012102-14:105001723
2288 14 103398716 103523799 CDC42BPB thyroid -1.92e-01 0.000247 0 14:103012102-14:105001723
2163 14 104394799 104519004 TDRD9 brain_cerebellum -1.96e+00 0.000742 0 14:103012102-14:105001723
2134 14 104179904 104180441 RP11-73M18.9 brain_substantia_nigra 3.93e+00 0.001800 0 14:103012102-14:105001723
2180 14 104394799 104519004 TDRD9 brain_amygdala -2.71e+00 0.000578 0 14:103012102-14:105001723
2212 14 104394799 104519004 TDRD9 pituitary -1.59e+00 0.000432 0 14:103012102-14:105001723
2231 14 104394799 104519004 TDRD9 brain_nucleus_accumbens_basal_ganglia -2.12e+00 0.000370 0 14:103012102-14:105001723
2239 14 104394799 104519004 TDRD9 brain_cerebellar_hemisphere -1.36e+00 0.000339 0 14:103012102-14:105001723
2249 14 104394799 104519004 TDRD9 brain_cortex -1.17e+00 0.000314 0 14:103012102-14:105001723
2251 14 104394799 104519004 TDRD9 yfs.blood.rnaarr -1.19e+00 0.000308 0 14:103012102-14:105001723
2150 14 104163946 104181841 XRCC3 whole_blood 2.58e+00 0.000932 0 14:103012102-14:105001723
2252 14 104394799 104519004 TDRD9 brain_hypothalamus -1.51e+00 0.000308 0 14:103012102-14:105001723
2253 14 104394799 104519004 TDRD9 brain_caudate_basal_ganglia -1.30e+00 0.000307 0 14:103012102-14:105001723
2257 14 104394799 104519004 TDRD9 brain_putamen_basal_ganglia -1.13e+00 0.000299 0 14:103012102-14:105001723
2262 14 104394799 104519004 TDRD9 whole_blood -1.16e+00 0.000295 0 14:103012102-14:105001723
2226 14 104179904 104180441 RP11-73M18.9 brain_hippocampus 2.21e+00 0.000389 0 14:103012102-14:105001723
2263 14 104394799 104519004 TDRD9 thyroid -2.20e+00 0.000287 0 14:103012102-14:105001723
2281 14 103058998 103196913 RCOR1 whole_blood 1.24e-01 0.000253 0 14:103012102-14:105001723
2234 14 104179904 104180441 RP11-73M18.9 brain_cerebellar_hemisphere 2.92e+00 0.000358 0 14:103012102-14:105001723
2304 15 37657228 37712386 RP11-720L8.1 brain_putamen_basal_ganglia -2.00e+00 0.001130 0 15:35083251-15:37456502
2334 15 34817408 34875852 GOLGA8B thyroid -9.57e-02 0.000161 0 15:35083251-15:37456502
2307 15 35270541 35280497 ZNF770 cmc.brain.rnaseq 1.75e+00 0.000706 0 15:35083251-15:37456502
2331 15 34633919 34635365 NOP10 ntr.blood.rnaarr 3.38e-01 0.000169 0 15:35083251-15:37456502
2329 15 34817408 34875852 GOLGA8B brain_cortex -3.17e-01 0.000170 0 15:35083251-15:37456502
13016 15 34817408 34880704 GOLGA8B psychencode -1.73e+00 0.000678 0 15:35083251-15:37456502
2310 15 35270542 35280488 ZNF770 thyroid -1.64e+00 0.000587 0 15:35083251-15:37456502
2311 15 34817483 34828222 GOLGA8B cmc.brain.rnaseq -1.48e+00 0.000465 0 15:35083251-15:37456502
2330 15 37546080 37547153 RP11-597G23.1 brain_nucleus_accumbens_basal_ganglia 3.63e-01 0.000170 0 15:35083251-15:37456502
2312 15 34671269 34880704 GOLGA8A yfs.blood.rnaarr 1.39e+00 0.000413 0 15:35083251-15:37456502
2314 15 34671269 34682001 GOLGA8A cmc.brain.rnaseq -9.08e-01 0.000238 0 15:35083251-15:37456502
2313 15 34671269 34682001 GOLGA8A cmc.brain.rnaseq_splicing -1.38e+00 0.000404 0 15:35083251-15:37456502
2323 15 34817483 34828222 GOLGA8B cmc.brain.rnaseq_splicing -5.61e-01 0.000188 0 15:35083251-15:37456502
2333 15 35043233 35047166 GJD2 pituitary 1.86e-01 0.000162 0 15:35083251-15:37456502
12904 15 35270542 35280488 ZNF770 psychencode 1.50e+00 0.000477 0 15:35083251-15:37456502
2300 15 35148551 35261995 AQR cmc.brain.rnaseq 2.46e+00 0.002990 0 15:35083251-15:37456502
2306 15 34671269 34682001 GOLGA8A cmc.brain.rnaseq_splicing -1.85e+00 0.000837 0 15:35083251-15:37456502
2318 15 34817408 34875852 GOLGA8B adrenal_gland 7.39e-01 0.000207 0 15:35083251-15:37456502
12988 15 35270552 35272268 AC114546.1 psychencode 1.25e+00 0.000338 0 15:35083251-15:37456502
11622 15 35147732 35262040 AQR psychencode 2.28e+00 0.002010 0 15:35083251-15:37456502
2316 15 35047285 35105124 RP11-814P5.1 pituitary 8.24e-01 0.000226 0 15:35083251-15:37456502
12641 15 34671269 34880704 GOLGA8A psychencode -1.07e+00 0.000278 0 15:35083251-15:37456502
2327 15 34522196 34630265 SLC12A6 cmc.brain.rnaseq 4.98e-01 0.000180 0 15:35083251-15:37456502
2325 15 35509546 35838393 DPH6 brain_substantia_nigra 5.19e-01 0.000182 0 15:35083251-15:37456502
2326 15 34671272 34880704 GOLGA8A thyroid -5.19e-01 0.000182 0 15:35083251-15:37456502
12791 15 36871812 37102449 C15orf41 psychencode 3.18e-01 0.000168 0 15:35083251-15:37456502
2322 15 34817408 34875852 GOLGA8B brain_anterior_cingulate_cortex_ba24 -6.53e-01 0.000197 0 15:35083251-15:37456502
2319 15 35838396 36151202 DPH6-AS1 brain_hypothalamus -7.23e-01 0.000206 0 15:35083251-15:37456502
2302 15 35285847 35295422 RP11-463I20.3 brain_nucleus_accumbens_basal_ganglia 2.27e+00 0.001940 0 15:35083251-15:37456502
2317 15 35047285 35105124 RP11-814P5.1 brain_cortex -7.56e-01 0.000214 0 15:35083251-15:37456502
2324 15 35047285 35105124 RP11-814P5.1 brain_frontal_cortex_ba9 5.57e-01 0.000186 0 15:35083251-15:37456502
2303 15 35080297 35088340 ACTC1 pituitary 2.06e+00 0.001260 0 15:35083251-15:37456502
12715 15 34633917 34635378 NOP10 psychencode -1.10e+00 0.000290 0 15:35083251-15:37456502
2321 15 35838396 36151202 DPH6-AS1 thyroid 6.81e-01 0.000200 0 15:35083251-15:37456502
2320 15 35141338 35142596 RP11-83J16.3 thyroid 6.85e-01 0.000202 0 15:35083251-15:37456502
13242 15 35838396 36151202 DPH6-AS1 psychencode -9.26e-01 0.000243 0 15:35083251-15:37456502
2305 15 35373345 35373714 RP11-323I15.3 brain_cerebellar_hemisphere 1.85e+00 0.000839 0 15:35083251-15:37456502
2309 15 35509546 35838393 DPH6 brain_cortex 1.68e+00 0.000634 0 15:35083251-15:37456502
13380 15 35141338 35142596 RP11-83J16.3 psychencode 8.75e-01 0.000232 0 15:35083251-15:37456502
2308 15 35147732 35262040 AQR brain_caudate_basal_ganglia 1.74e+00 0.000689 0 15:35083251-15:37456502
2315 15 35413774 35414285 PRELID1P4 pituitary 8.94e-01 0.000237 0 15:35083251-15:37456502
2332 15 35147732 35262040 AQR yfs.blood.rnaarr -1.99e-01 0.000166 0 15:35083251-15:37456502
2328 15 34781203 34782772 HNRNPLP2 thyroid 4.11e-01 0.000173 0 15:35083251-15:37456502
2301 15 36871812 37102449 C15orf41 brain_cortex 2.44e+00 0.002920 0 15:35083251-15:37456502
12792 15 36871812 37102449 C15orf41 psychencode -8.41e-01 0.000532 0 15:37456502-15:38530777
13375 15 38431796 38519088 RP11-346D14.1 psychencode 1.60e+00 0.000952 0 15:37456502-15:38530777
2337 15 38544527 38649450 SPRED1 yfs.blood.rnaarr 5.14e-01 0.000240 0 15:37456502-15:38530777
2336 15 37657228 37712386 RP11-720L8.1 brain_putamen_basal_ganglia 3.68e+00 0.044400 0 15:37456502-15:38530777
12620 15 38780304 38857776 RASGRP1 psychencode 1.76e+00 0.000789 0 15:37456502-15:38530777
2335 15 37546080 37547153 RP11-597G23.1 brain_nucleus_accumbens_basal_ganglia 4.34e+00 0.583000 1 15:37456502-15:38530777
2342 15 48481234 48483258 RP11-605F22.2 brain_putamen_basal_ganglia -1.20e+00 0.000321 0 15:46618872-15:48135629
2340 15 47476298 48066420 SEMA6D brain_cerebellum 1.86e+00 0.000863 0 15:46618872-15:48135629
12251 15 47476298 48066420 SEMA6D psychencode -2.82e+00 0.007500 0 15:46618872-15:48135629
2338 15 47476402 48066420 SEMA6D cmc.brain.rnaseq_splicing -2.94e+00 0.010900 0 15:46618872-15:48135629
2344 15 48623208 48635570 DUT yfs.blood.rnaarr 5.02e-01 0.000181 0 15:46618872-15:48135629
2339 15 47476402 48066420 SEMA6D cmc.brain.rnaseq_splicing -2.59e+00 0.004220 0 15:46618872-15:48135629
2341 15 47476402 48066420 SEMA6D cmc.brain.rnaseq_splicing -1.84e+00 0.000818 0 15:46618872-15:48135629
2343 15 48431625 48470714 MYEF2 whole_blood 7.93e-01 0.000217 0 15:46618872-15:48135629
12997 15 48022341 48023132 CTD-2270N23.1 psychencode 2.17e-01 0.000469 0 15:46618872-15:48135629
2527 15 76196200 76227609 FBXO22 brain_cerebellum -3.80e-01 0.000188 0 15:76398987-15:78516053
2415 15 77400471 77712486 PEAK1 brain_hypothalamus 1.32e+00 0.000396 0 15:76398987-15:78516053
2384 15 77400471 77712486 PEAK1 brain_cerebellum 1.67e+00 0.000642 0 15:76398987-15:78516053
2440 15 77400497 77712446 PEAK1 cmc.brain.rnaseq 1.09e+00 0.000306 0 15:76398987-15:78516053
2463 15 77336359 77376326 TSPAN3 thyroid -7.44e-01 0.000252 0 15:76398987-15:78516053
2414 15 77712754 77777949 HMG20A thyroid 1.34e+00 0.000404 0 15:76398987-15:78516053
2547 15 76467232 76473827 RP11-593F23.1 thyroid -1.16e-01 0.000179 0 15:76398987-15:78516053
2439 15 76234327 76304785 NRG4 cmc.brain.rnaseq -1.09e+00 0.000309 0 15:76398987-15:78516053
2399 15 77400471 77712486 PEAK1 brain_amygdala 1.55e+00 0.000526 0 15:76398987-15:78516053
2383 15 77285700 77329673 PSTPIP1 yfs.blood.rnaarr -1.72e+00 0.000714 0 15:76398987-15:78516053
2352 15 78206559 78219188 RP11-114H24.2 brain_substantia_nigra 2.43e+00 0.003110 0 15:76398987-15:78516053
2423 15 77285700 77329673 PSTPIP1 brain_nucleus_accumbens_basal_ganglia -1.23e+00 0.000359 0 15:76398987-15:78516053
2425 15 77285700 77329673 PSTPIP1 brain_putamen_basal_ganglia -1.21e+00 0.000344 0 15:76398987-15:78516053
2483 15 77712754 77777949 HMG20A pituitary 4.51e-01 0.000221 0 15:76398987-15:78516053
2441 15 76640526 77197785 SCAPER brain_cerebellar_hemisphere 1.05e+00 0.000299 0 15:76398987-15:78516053
2501 15 77334178 77335533 RP11-797A18.4 brain_caudate_basal_ganglia 2.69e-01 0.000202 0 15:76398987-15:78516053
2506 15 77334178 77335533 RP11-797A18.4 thyroid -4.13e-01 0.000200 0 15:76398987-15:78516053
2409 15 77400471 77712486 PEAK1 pituitary 1.42e+00 0.000444 0 15:76398987-15:78516053
2349 15 77712754 77777949 HMG20A brain_nucleus_accumbens_basal_ganglia 2.55e+00 0.003740 1 15:76398987-15:78516053
2452 15 78857862 78887611 CHRNA5 brain_putamen_basal_ganglia 8.96e-01 0.000267 0 15:76398987-15:78516053
2432 15 77285700 77329673 PSTPIP1 brain_caudate_basal_ganglia 9.87e-01 0.000329 0 15:76398987-15:78516053
2433 15 77905369 78113242 LINGO1 brain_cerebellum -1.04e+00 0.000327 0 15:76398987-15:78516053
2530 15 78830023 78831288 AC027228.1 thyroid -3.12e-01 0.000186 0 15:76398987-15:78516053
12592 15 78857862 78887611 CHRNA5 psychencode -1.83e+00 0.000936 0 15:76398987-15:78516053
12277 15 77285700 77329673 PSTPIP1 psychencode -2.15e+00 0.001520 0 15:76398987-15:78516053
2484 15 77905369 78113242 LINGO1 brain_nucleus_accumbens_basal_ganglia -2.22e-01 0.000217 0 15:76398987-15:78516053
2453 15 78832747 78841604 PSMA4 thyroid -8.96e-01 0.000267 0 15:76398987-15:78516053
2364 15 78881465 78883618 RP11-650L12.2 brain_nucleus_accumbens_basal_ganglia 1.97e+00 0.001370 0 15:76398987-15:78516053
2451 15 78881465 78883618 RP11-650L12.2 brain_putamen_basal_ganglia 8.96e-01 0.000267 0 15:76398987-15:78516053
2443 15 78370150 78396947 SH2D7 brain_cortex 9.96e-01 0.000292 0 15:76398987-15:78516053
2552 15 76242805 76243485 RP11-326L17.1 brain_cerebellum 4.53e-02 0.000176 0 15:76398987-15:78516053
2550 15 76631950 76632616 RP11-685G9.2 whole_blood -8.12e-02 0.000177 0 15:76398987-15:78516053
2402 15 77400471 77712486 PEAK1 brain_cortex 1.51e+00 0.000497 0 15:76398987-15:78516053
12278 15 77712754 77777949 HMG20A psychencode 1.43e+00 0.000463 0 15:76398987-15:78516053
2475 15 78832747 78841604 PSMA4 brain_caudate_basal_ganglia 7.46e-01 0.000232 0 15:76398987-15:78516053
2503 15 78729773 78793798 IREB2 yfs.blood.rnaarr -4.70e-01 0.000201 0 15:76398987-15:78516053
11731 15 78885394 78913637 CHRNA3 psychencode -2.01e-01 0.000181 0 15:76398987-15:78516053
2445 15 77334178 77335533 RP11-797A18.4 whole_blood 9.90e-01 0.000283 0 15:76398987-15:78516053
2413 15 78206559 78219188 RP11-114H24.2 adrenal_gland 1.31e+00 0.000418 0 15:76398987-15:78516053
2450 15 77334178 77335533 RP11-797A18.4 brain_substantia_nigra -8.54e-01 0.000269 0 15:76398987-15:78516053
2488 15 77713242 77777945 HMG20A cmc.brain.rnaseq 5.44e-01 0.000213 0 15:76398987-15:78516053
2536 15 75940247 75954642 SNX33 yfs.blood.rnaarr -2.81e-01 0.000182 0 15:76398987-15:78516053
2427 15 77400471 77712486 PEAK1 brain_putamen_basal_ganglia 1.20e+00 0.000342 0 15:76398987-15:78516053
2406 15 78206559 78219188 RP11-114H24.2 brain_putamen_basal_ganglia 1.44e+00 0.000485 0 15:76398987-15:78516053
2534 15 77336359 77376326 TSPAN3 adrenal_gland -1.88e-01 0.000183 0 15:76398987-15:78516053
2388 15 77712754 77777949 HMG20A brain_cortex 1.56e+00 0.000589 0 15:76398987-15:78516053
12593 15 77905369 78113242 LINGO1 psychencode 1.44e+00 0.000457 0 15:76398987-15:78516053
2522 15 78832747 78841604 PSMA4 yfs.blood.rnaarr -3.96e-01 0.000191 0 15:76398987-15:78516053
2448 15 76640526 77197785 SCAPER adrenal_gland 9.66e-01 0.000275 0 15:76398987-15:78516053
2455 15 77334178 77335533 RP11-797A18.4 brain_amygdala -8.23e-01 0.000263 0 15:76398987-15:78516053
2492 15 76507696 76603813 ETFA whole_blood 6.01e-01 0.000210 0 15:76398987-15:78516053
2548 15 76234327 76304785 NRG4 cmc.brain.rnaseq_splicing -1.55e-01 0.000178 0 15:76398987-15:78516053
2460 15 77334178 77335533 RP11-797A18.4 brain_frontal_cortex_ba9 -7.91e-01 0.000255 0 15:76398987-15:78516053
2480 15 76507704 76603818 ETFA ntr.blood.rnaarr 7.06e-01 0.000224 0 15:76398987-15:78516053
2416 15 77934106 77943997 RP11-307C19.3 brain_cerebellum 1.30e+00 0.000385 0 15:76398987-15:78516053
2456 15 78206559 78219188 RP11-114H24.2 thyroid 8.79e-01 0.000262 0 15:76398987-15:78516053
2378 15 78206559 78219188 RP11-114H24.2 brain_cortex 1.75e+00 0.000746 0 15:76398987-15:78516053
2374 15 77400471 77712486 PEAK1 brain_cerebellar_hemisphere 1.80e+00 0.000782 0 15:76398987-15:78516053
2437 15 77400471 77712486 PEAK1 brain_substantia_nigra 1.12e+00 0.000315 0 15:76398987-15:78516053
2372 15 77817882 77826452 RP11-307C19.1 brain_substantia_nigra 1.81e+00 0.000805 0 15:76398987-15:78516053
2461 15 77334178 77335533 RP11-797A18.4 brain_hypothalamus -8.02e-01 0.000255 0 15:76398987-15:78516053
2508 15 78370150 78396947 SH2D7 adrenal_gland 2.77e-01 0.000198 0 15:76398987-15:78516053
12554 15 76196200 76227609 FBXO22 psychencode 1.53e+00 0.000545 0 15:76398987-15:78516053
2474 15 76507696 76603813 ETFA yfs.blood.rnaarr 7.67e-01 0.000234 0 15:76398987-15:78516053
2519 15 77334178 77335533 RP11-797A18.4 adrenal_gland -2.62e-01 0.000192 0 15:76398987-15:78516053
2521 15 76507696 76603813 ETFA pituitary 4.03e-01 0.000191 0 15:76398987-15:78516053
2348 15 77817882 77826452 RP11-307C19.1 brain_anterior_cingulate_cortex_ba24 2.53e+00 0.003840 1 15:76398987-15:78516053
2375 15 78832746 78841563 PSMA4 cmc.brain.rnaseq_splicing -1.70e+00 0.000777 0 15:76398987-15:78516053
2393 15 78397252 78423839 CIB2 thyroid 1.54e+00 0.000573 0 15:76398987-15:78516053
2477 15 77334178 77335533 RP11-797A18.4 brain_nucleus_accumbens_basal_ganglia -5.89e-01 0.000230 0 15:76398987-15:78516053
2473 15 77334178 77335533 RP11-797A18.4 brain_cerebellum -6.96e-01 0.000237 0 15:76398987-15:78516053
2489 15 78206559 78219188 RP11-114H24.2 brain_amygdala 6.16e-01 0.000213 0 15:76398987-15:78516053
2542 15 76507696 76603813 ETFA thyroid -1.98e-01 0.000180 0 15:76398987-15:78516053
2466 15 77334178 77335533 RP11-797A18.4 brain_anterior_cingulate_cortex_ba24 -7.56e-01 0.000247 0 15:76398987-15:78516053
2366 15 77400497 77712446 PEAK1 cmc.brain.rnaseq_splicing 2.09e+00 0.001360 0 15:76398987-15:78516053
2525 15 75890424 75918810 SNUPN thyroid -3.90e-01 0.000188 0 15:76398987-15:78516053
2362 15 76640526 77197785 SCAPER brain_nucleus_accumbens_basal_ganglia -2.10e+00 0.001510 0 15:76398987-15:78516053
2470 15 77334178 77335533 RP11-797A18.4 brain_cerebellar_hemisphere -7.24e-01 0.000241 0 15:76398987-15:78516053
2528 15 77334178 77335533 RP11-797A18.4 brain_cortex -3.07e-02 0.000187 0 15:76398987-15:78516053
2491 15 78206559 78219188 RP11-114H24.2 brain_caudate_basal_ganglia 5.53e-01 0.000211 0 15:76398987-15:78516053
2370 15 77400497 77712446 PEAK1 cmc.brain.rnaseq_splicing -1.87e+00 0.000884 0 15:76398987-15:78516053
2351 15 77817882 77826452 RP11-307C19.1 brain_cerebellum 2.47e+00 0.003300 0 15:76398987-15:78516053
2514 15 77712754 77777949 HMG20A brain_cerebellum 9.95e-02 0.000194 0 15:76398987-15:78516053
2471 15 76640526 77197785 SCAPER brain_caudate_basal_ganglia -7.66e-01 0.000238 0 15:76398987-15:78516053
2481 15 77334178 77335533 RP11-797A18.4 brain_putamen_basal_ganglia -6.26e-01 0.000224 0 15:76398987-15:78516053
2447 15 77817882 77826452 RP11-307C19.1 pituitary 6.61e-01 0.000277 0 15:76398987-15:78516053
2345 15 77817882 77826452 RP11-307C19.1 brain_nucleus_accumbens_basal_ganglia 2.93e+00 0.010600 1 15:76398987-15:78516053
2424 15 78206559 78219188 RP11-114H24.2 brain_hypothalamus 1.18e+00 0.000357 0 15:76398987-15:78516053
2408 15 77336359 77363570 TSPAN3 cmc.brain.rnaseq_splicing 1.40e+00 0.000452 0 15:76398987-15:78516053
2495 15 77337839 77363518 TSPAN3 ntr.blood.rnaarr -3.77e-01 0.000206 0 15:76398987-15:78516053
2404 15 77400497 77712446 PEAK1 cmc.brain.rnaseq_splicing -1.48e+00 0.000489 0 15:76398987-15:78516053
12281 15 78556428 78574538 DNAJA4 psychencode -3.57e-01 0.000189 0 15:76398987-15:78516053
13376 15 77861312 77901023 RP11-307C19.2 psychencode 1.37e+00 0.000443 0 15:76398987-15:78516053
13396 15 76242805 76243485 RP11-326L17.1 psychencode 1.83e-01 0.000178 0 15:76398987-15:78516053
2532 15 77336359 77376326 TSPAN3 brain_cerebellar_hemisphere 5.07e-02 0.000184 0 15:76398987-15:78516053
2490 15 77336359 77376326 TSPAN3 whole_blood -4.64e-01 0.000211 0 15:76398987-15:78516053
2387 15 77905368 77988475 LINGO1 cmc.brain.rnaseq 1.62e+00 0.000606 0 15:76398987-15:78516053
2529 15 75890423 75918719 SNUPN cmc.brain.rnaseq_splicing 3.58e-01 0.000186 0 15:76398987-15:78516053
2543 15 76640526 77197785 SCAPER brain_cortex 1.85e-01 0.000180 0 15:76398987-15:78516053
2510 15 78370150 78396947 SH2D7 brain_cerebellar_hemisphere -4.45e-01 0.000197 0 15:76398987-15:78516053
2538 15 76508628 76603810 ETFA cmc.brain.rnaseq_splicing -2.16e-01 0.000182 0 15:76398987-15:78516053
2421 15 76020030 76024493 DNM1P35 pituitary 1.22e+00 0.000360 0 15:76398987-15:78516053
2533 15 78206559 78219188 RP11-114H24.2 brain_cerebellum 2.28e-01 0.000183 0 15:76398987-15:78516053
2498 15 77334178 77335533 RP11-797A18.4 brain_hippocampus -4.10e-01 0.000205 0 15:76398987-15:78516053
2394 15 78397252 78423839 CIB2 brain_frontal_cortex_ba9 1.51e+00 0.000557 0 15:76398987-15:78516053
2457 15 76640526 77197785 SCAPER brain_cerebellum 9.10e-01 0.000259 0 15:76398987-15:78516053
13235 15 76020011 76030964 DNM1P35 psychencode -9.44e-01 0.000268 0 15:76398987-15:78516053
12279 15 76640526 77197785 SCAPER psychencode 8.49e-01 0.000250 0 15:76398987-15:78516053
2407 15 77400471 77712486 PEAK1 brain_nucleus_accumbens_basal_ganglia 1.46e+00 0.000465 0 15:76398987-15:78516053
2500 15 76640526 77176217 SCAPER cmc.brain.rnaseq 5.27e-01 0.000204 0 15:76398987-15:78516053
2367 15 77905369 78113242 LINGO1 brain_cerebellar_hemisphere -1.98e+00 0.001240 0 15:76398987-15:78516053
2458 15 78857862 78887611 CHRNA5 brain_substantia_nigra -9.12e-01 0.000259 0 15:76398987-15:78516053
12006 15 77223960 77242601 RCN2 psychencode -3.60e-01 0.000188 0 15:76398987-15:78516053
2468 15 78832746 78841563 PSMA4 cmc.brain.rnaseq_splicing 8.30e-01 0.000245 0 15:76398987-15:78516053
2554 15 78556486 78574538 DNAJA4 cmc.brain.rnaseq_splicing -1.50e-02 0.000175 0 15:76398987-15:78516053
2496 15 76352178 76521462 C15orf27 adrenal_gland 5.64e-01 0.000205 0 15:76398987-15:78516053
2381 15 77400497 77712446 SGK269 ntr.blood.rnaarr 1.72e+00 0.000716 0 15:76398987-15:78516053
2546 15 76508628 76603810 ETFA cmc.brain.rnaseq_splicing 1.26e-01 0.000179 0 15:76398987-15:78516053
2395 15 78397252 78423839 CIB2 whole_blood 1.52e+00 0.000555 0 15:76398987-15:78516053
2537 15 78206559 78219188 RP11-114H24.2 brain_cerebellar_hemisphere 1.97e-01 0.000182 0 15:76398987-15:78516053
12749 15 78370150 78397251 SH2D7 psychencode 1.51e+00 0.000543 0 15:76398987-15:78516053
2482 15 78556499 78574538 DNAJA4 brain_cerebellar_hemisphere 6.82e-01 0.000222 0 15:76398987-15:78516053
2403 15 78570177 78592136 WDR61 yfs.blood.rnaarr 1.42e+00 0.000490 0 15:76398987-15:78516053
2515 15 78570177 78592136 WDR61 brain_anterior_cingulate_cortex_ba24 3.99e-01 0.000194 0 15:76398987-15:78516053
2539 15 78570177 78592136 WDR61 brain_cortex 2.39e-01 0.000180 0 15:76398987-15:78516053
12280 15 78570177 78592136 WDR61 psychencode -2.81e+00 0.008270 1 15:76398987-15:78516053
2347 15 78575577 78591940 WDR61 cmc.brain.rnaseq 2.62e+00 0.005160 1 15:76398987-15:78516053
2429 15 78582869 78583563 RP11-762H8.2 brain_putamen_basal_ganglia 1.13e+00 0.000334 0 15:76398987-15:78516053
2469 15 78582869 78583563 RP11-762H8.2 pituitary 8.04e-01 0.000242 0 15:76398987-15:78516053
2479 15 76467232 76473827 RP11-593F23.1 pituitary -7.24e-01 0.000226 0 15:76398987-15:78516053
2356 15 78832747 78841604 PSMA4 adrenal_gland -2.21e+00 0.001810 0 15:76398987-15:78516053
2497 15 78730517 78793798 IREB2 cmc.brain.rnaseq -5.38e-01 0.000205 0 15:76398987-15:78516053
2499 15 76467232 76473827 RP11-593F23.1 adrenal_gland -5.64e-01 0.000205 0 15:76398987-15:78516053
2357 15 78232253 78236924 RP11-114H24.4 adrenal_gland 2.20e+00 0.001800 0 15:76398987-15:78516053
2398 15 78396947 78423877 CIB2 cmc.brain.rnaseq 1.45e+00 0.000527 0 15:76398987-15:78516053
2504 15 78582869 78583563 RP11-762H8.2 brain_cerebellum 5.10e-01 0.000201 0 15:76398987-15:78516053
2516 15 78582869 78583563 RP11-762H8.2 brain_cerebellar_hemisphere 3.64e-01 0.000193 0 15:76398987-15:78516053
2486 15 78857862 78887611 CHRNA5 adrenal_gland 6.18e-01 0.000215 0 15:76398987-15:78516053
12732 15 76016318 76020029 ODF3L1 psychencode -5.48e-01 0.000203 0 15:76398987-15:78516053
2526 15 78582869 78583563 RP11-762H8.2 brain_frontal_cortex_ba9 -3.55e-01 0.000188 0 15:76398987-15:78516053
2540 15 78582869 78583563 RP11-762H8.2 adrenal_gland -1.99e-01 0.000180 0 15:76398987-15:78516053
2446 15 78830023 78831288 AC027228.1 pituitary 9.82e-01 0.000281 0 15:76398987-15:78516053
2396 15 78397252 78423839 CIB2 brain_cerebellum 1.51e+00 0.000553 0 15:76398987-15:78516053
12928 15 75970672 75973093 AC105020.1 psychencode -8.68e-01 0.000254 0 15:76398987-15:78516053
13378 15 78582869 78583563 RP11-762H8.2 psychencode 2.48e+00 0.003470 1 15:76398987-15:78516053
2442 15 78632666 78640572 CRABP1 brain_hypothalamus 1.01e+00 0.000297 0 15:76398987-15:78516053
2467 15 78556428 78574538 DNAJA4 yfs.blood.rnaarr 7.52e-01 0.000245 0 15:76398987-15:78516053
2476 15 78632666 78640572 CRABP1 brain_cortex 6.20e-01 0.000230 0 15:76398987-15:78516053
13461 15 77359996 77360667 RP11-797A18.6 psychencode 2.23e+00 0.001900 0 15:76398987-15:78516053
2346 15 77400471 77712486 PEAK1 whole_blood 2.74e+00 0.006420 1 15:76398987-15:78516053
2459 15 76640526 77197785 SCAPER thyroid 8.81e-01 0.000255 0 15:76398987-15:78516053
2400 15 78397252 78423839 CIB2 brain_cerebellar_hemisphere 1.47e+00 0.000513 0 15:76398987-15:78516053
2436 15 78370150 78396947 SH2D7 brain_frontal_cortex_ba9 1.02e+00 0.000316 0 15:76398987-15:78516053
2428 15 77905369 78113242 LINGO1 thyroid -9.56e-01 0.000342 0 15:76398987-15:78516053
2435 15 77817882 77826452 RP11-307C19.1 brain_cortex 8.03e-01 0.000319 0 15:76398987-15:78516053
2518 15 76508628 76603810 ETFA cmc.brain.rnaseq_splicing 4.35e-01 0.000193 0 15:76398987-15:78516053
2379 15 77817882 77826452 RP11-307C19.1 brain_hypothalamus -1.04e+00 0.000745 0 15:76398987-15:78516053
2465 15 76640526 77176217 SCAPER cmc.brain.rnaseq_splicing -8.46e-01 0.000248 0 15:76398987-15:78516053
12234 15 78396948 78423886 CIB2 psychencode 1.21e+00 0.000365 0 15:76398987-15:78516053
2376 15 78206559 78219188 RP11-114H24.2 brain_frontal_cortex_ba9 1.62e+00 0.000766 0 15:76398987-15:78516053
2410 15 78397252 78423839 CIB2 brain_cortex 1.33e+00 0.000441 0 15:76398987-15:78516053
2444 15 76640526 77197785 SCAPER whole_blood 9.91e-01 0.000286 0 15:76398987-15:78516053
2417 15 78232253 78236924 RP11-114H24.4 thyroid 1.26e+00 0.000383 0 15:76398987-15:78516053
2386 15 77817882 77826452 RP11-307C19.1 brain_amygdala 1.63e+00 0.000618 0 15:76398987-15:78516053
2354 15 77817882 77826452 RP11-307C19.1 brain_putamen_basal_ganglia 2.31e+00 0.002160 0 15:76398987-15:78516053
2544 15 78268384 78285399 RP11-114H24.5 pituitary 2.87e-02 0.000180 0 15:76398987-15:78516053
2371 15 78397252 78423839 CIB2 brain_amygdala 1.78e+00 0.000840 0 15:76398987-15:78516053
2380 15 78397252 78423839 CIB2 brain_hypothalamus -1.40e+00 0.000741 0 15:76398987-15:78516053
2382 15 78397252 78423839 CIB2 brain_nucleus_accumbens_basal_ganglia 1.58e+00 0.000716 0 15:76398987-15:78516053
2389 15 78397252 78423839 CIB2 brain_anterior_cingulate_cortex_ba24 1.55e+00 0.000585 0 15:76398987-15:78516053
2390 15 78397252 78423839 CIB2 brain_caudate_basal_ganglia 1.55e+00 0.000585 0 15:76398987-15:78516053
2411 15 78397252 78423839 CIB2 adrenal_gland 1.32e+00 0.000432 0 15:76398987-15:78516053
2430 15 78397252 78423839 CIB2 pituitary 1.10e+00 0.000334 0 15:76398987-15:78516053
2478 15 78423840 78464291 IDH3A yfs.blood.rnaarr 6.17e-01 0.000228 0 15:76398987-15:78516053
2353 15 77400471 77712486 PEAK1 thyroid 2.34e+00 0.002320 0 15:76398987-15:78516053
2502 15 76640526 77176217 SCAPER cmc.brain.rnaseq_splicing 5.43e-01 0.000202 0 15:76398987-15:78516053
2545 15 78268384 78285399 RP11-114H24.5 thyroid 1.98e-02 0.000180 0 15:76398987-15:78516053
2485 15 77336022 77336179 RP11-797A18.3 whole_blood 4.87e-01 0.000216 0 15:76398987-15:78516053
2511 15 78276378 78370066 TBC1D2B whole_blood -3.96e-01 0.000196 0 15:76398987-15:78516053
2464 15 77359996 77360667 RP11-797A18.6 brain_cerebellar_hemisphere -8.64e-01 0.000250 0 15:76398987-15:78516053
2359 15 77400471 77712486 PEAK1 brain_caudate_basal_ganglia 2.19e+00 0.001660 0 15:76398987-15:78516053
2517 15 78276378 78370066 TBC1D2B brain_cerebellum 2.92e-01 0.000193 0 15:76398987-15:78516053
2531 15 78276378 78370066 TBC1D2B thyroid -2.14e-01 0.000185 0 15:76398987-15:78516053
12531 15 78423840 78464291 IDH3A psychencode 2.49e+00 0.003660 1 15:76398987-15:78516053
2385 15 78206559 78219188 RP11-114H24.2 pituitary 1.63e+00 0.000641 0 15:76398987-15:78516053
2454 15 78423887 78464291 IDH3A brain_cortex -8.20e-01 0.000265 0 15:76398987-15:78516053
12555 15 78276378 78370066 TBC1D2B psychencode 1.31e+00 0.000413 0 15:76398987-15:78516053
2391 15 78397252 78423839 CIB2 brain_hippocampus 1.55e+00 0.000585 0 15:76398987-15:78516053
2392 15 78397252 78423839 CIB2 brain_putamen_basal_ganglia 1.54e+00 0.000581 0 15:76398987-15:78516053
2358 15 78370150 78396947 SH2D7 brain_amygdala 2.09e+00 0.001700 0 15:76398987-15:78516053
2369 15 78441718 78462884 IDH3A cmc.brain.rnaseq 1.82e+00 0.000930 0 15:76398987-15:78516053
2535 15 78441718 78462884 IDH3A cmc.brain.rnaseq_splicing 2.49e-01 0.000183 0 15:76398987-15:78516053
2494 15 77905369 78113242 LINGO1 brain_putamen_basal_ganglia 5.26e-01 0.000206 0 15:76398987-15:78516053
2551 15 78441718 78462884 IDH3A cmc.brain.rnaseq_splicing -1.05e-01 0.000176 0 15:76398987-15:78516053
2373 15 78459810 78538030 ACSBG1 brain_hippocampus -1.63e+00 0.000805 0 15:76398987-15:78516053
2361 15 77400471 77712486 PEAK1 brain_anterior_cingulate_cortex_ba24 2.16e+00 0.001560 0 15:76398987-15:78516053
2553 15 75890424 75918810 SNUPN whole_blood 2.10e-02 0.000176 0 15:76398987-15:78516053
2520 15 76629065 76634817 ISL2 whole_blood 4.28e-01 0.000192 0 15:76398987-15:78516053
2487 15 77359996 77360667 RP11-797A18.6 thyroid -5.84e-01 0.000214 0 15:76398987-15:78516053
2377 15 78370150 78396947 SH2D7 pituitary 1.58e+00 0.000762 0 15:76398987-15:78516053
2419 15 78370150 78396947 SH2D7 brain_nucleus_accumbens_basal_ganglia 1.22e+00 0.000375 0 15:76398987-15:78516053
2365 15 77400471 77712486 PEAK1 brain_hippocampus 2.10e+00 0.001360 0 15:76398987-15:78516053
11864 15 78459810 78538030 ACSBG1 psychencode -1.76e+00 0.000798 0 15:76398987-15:78516053
2438 15 78556486 78574538 DNAJA4 cmc.brain.rnaseq -1.03e+00 0.000311 0 15:76398987-15:78516053
2493 15 77359996 77360667 RP11-797A18.6 whole_blood 4.42e-01 0.000208 0 15:76398987-15:78516053
2418 15 78206559 78219188 RP11-114H24.2 brain_nucleus_accumbens_basal_ganglia 1.26e+00 0.000383 0 15:76398987-15:78516053
2360 15 77817882 77826452 RP11-307C19.1 brain_cerebellar_hemisphere 2.16e+00 0.001620 0 15:76398987-15:78516053
2412 15 78463186 78527049 ACSBG1 cmc.brain.rnaseq_splicing 1.32e+00 0.000420 0 15:76398987-15:78516053
2512 15 78799905 78829715 AGPHD1 cmc.brain.rnaseq 1.96e-01 0.000196 0 15:76398987-15:78516053
2426 15 77336359 77376326 TSPAN3 yfs.blood.rnaarr -1.12e+00 0.000344 0 15:76398987-15:78516053
2401 15 78206559 78219188 RP11-114H24.2 brain_hippocampus 1.43e+00 0.000507 0 15:76398987-15:78516053
2422 15 76228310 76352136 NRG4 brain_anterior_cingulate_cortex_ba24 1.22e+00 0.000359 0 15:76398987-15:78516053
2505 15 76640526 77197785 SCAPER pituitary 5.29e-01 0.000201 0 15:76398987-15:78516053
2420 15 76051842 76054682 MIR4313 brain_cerebellar_hemisphere 1.24e+00 0.000363 0 15:76398987-15:78516053
2355 15 78556499 78574538 DNAJA4 thyroid 2.27e+00 0.002100 0 15:76398987-15:78516053
2449 15 76242805 76243485 RP11-326L17.1 brain_cortex -9.77e-01 0.000275 0 15:76398987-15:78516053
2472 15 77934106 77943997 RP11-307C19.3 brain_cerebellar_hemisphere 1.14e-01 0.000237 0 15:76398987-15:78516053
2397 15 77336359 77363570 TSPAN3 cmc.brain.rnaseq_splicing -1.51e+00 0.000529 0 15:76398987-15:78516053
12668 15 75931426 75941047 IMP3 psychencode -1.02e+00 0.000289 0 15:76398987-15:78516053
2434 15 76228310 76352136 NRG4 adrenal_gland 1.12e+00 0.000321 0 15:76398987-15:78516053
2368 15 77400471 77712486 PEAK1 brain_frontal_cortex_ba9 1.96e+00 0.001050 0 15:76398987-15:78516053
2509 15 75890424 75918810 SNUPN yfs.blood.rnaarr -4.96e-01 0.000197 0 15:76398987-15:78516053
2363 15 77817882 77826452 RP11-307C19.1 brain_hippocampus 2.14e+00 0.001500 0 15:76398987-15:78516053
2462 15 76228310 76352136 NRG4 brain_cerebellum -8.75e-01 0.000252 0 15:76398987-15:78516053
2507 15 76135621 76193388 UBE2Q2 cmc.brain.rnaseq_splicing -4.86e-01 0.000200 0 15:76398987-15:78516053
2549 15 76135621 76193388 UBE2Q2 cmc.brain.rnaseq 1.40e-01 0.000178 0 15:76398987-15:78516053
2405 15 77817882 77826452 RP11-307C19.1 brain_frontal_cortex_ba9 1.49e+00 0.000488 0 15:76398987-15:78516053
2431 15 76640526 77176217 SCAPER cmc.brain.rnaseq_splicing 1.14e+00 0.000330 0 15:76398987-15:78516053
2350 15 77817882 77826452 RP11-307C19.1 brain_caudate_basal_ganglia 2.49e+00 0.003400 1 15:76398987-15:78516053
2523 15 76228310 76352136 NRG4 brain_substantia_nigra 4.17e-01 0.000190 0 15:76398987-15:78516053
2513 15 76196200 76227609 FBXO22 adrenal_gland 4.56e-01 0.000195 0 15:76398987-15:78516053
2524 15 76228310 76352136 NRG4 brain_amygdala 3.70e-01 0.000189 0 15:76398987-15:78516053
2541 15 76228310 76352136 NRG4 pituitary 2.29e-01 0.000180 0 15:76398987-15:78516053
2560 16 8348494 8349774 RP11-279O17.1 thyroid 4.92e-01 0.000176 0 16:7529218-16:8338346
2557 16 8715540 8740081 METTL22 brain_cortex -1.23e+00 0.000329 0 16:7529218-16:8338346
2558 16 8715540 8740081 METTL22 thyroid 9.68e-01 0.000247 0 16:7529218-16:8338346
2559 16 8715540 8740081 METTL22 brain_cerebellum 9.06e-01 0.000234 0 16:7529218-16:8338346
11692 16 8715540 8740081 METTL22 psychencode -5.80e-01 0.000185 0 16:7529218-16:8338346
2556 16 8768422 8878432 ABAT whole_blood -1.24e+00 0.000330 0 16:7529218-16:8338346
2563 16 8768422 8878432 ABAT brain_cerebellum 5.92e-02 0.000157 0 16:7529218-16:8338346
12736 16 8768422 8878432 ABAT psychencode -1.48e-01 0.000159 0 16:7529218-16:8338346
2555 16 8768435 8878432 ABAT ntr.blood.rnaarr -1.96e+00 0.001020 0 16:7529218-16:8338346
2561 16 8768443 8878432 ABAT cmc.brain.rnaseq_splicing -4.83e-01 0.000176 0 16:7529218-16:8338346
2562 16 8768443 8878432 ABAT cmc.brain.rnaseq 2.16e-01 0.000160 0 16:7529218-16:8338346
2567 16 12756919 12897874 CPPED1 thyroid -9.32e-01 0.000240 0 16:12613098-16:13153206
11861 16 12756919 12897874 CPPED1 psychencode 2.62e+00 0.004460 0 16:12613098-16:13153206
2566 16 12995477 13334272 SHISA9 brain_cerebellum 1.01e+00 0.000259 0 16:12613098-16:13153206
11652 16 12070594 12668146 SNX29 psychencode -5.53e-01 0.000183 0 16:12613098-16:13153206
2569 16 12070601 12668146 SNX29 cmc.brain.rnaseq -1.82e-01 0.000160 0 16:12613098-16:13153206
2565 16 12756919 12897874 CPPED1 yfs.blood.rnaarr -1.36e+00 0.000391 0 16:12613098-16:13153206
2568 16 12756919 12897874 CPPED1 whole_blood -7.69e-01 0.000213 0 16:12613098-16:13153206
2564 16 12753655 12897744 CPPED1 cmc.brain.rnaseq 2.76e+00 0.006330 0 16:12613098-16:13153206
2579 16 14841923 14859270 NPIPA2 whole_blood -1.47e+00 0.000449 0 16:13154509-16:14463422
2575 16 14802801 14820195 NPIPA3 brain_nucleus_accumbens_basal_ganglia -2.18e+00 0.001530 0 16:13154509-16:14463422
13427 16 13823994 13873617 U95743.1 psychencode -7.57e-01 0.000219 0 16:13154509-16:14463422
13332 16 14914649 14918563 ABCC6P2 psychencode 2.75e+00 0.005950 0 16:13154509-16:14463422
2574 16 14841923 14859270 NPIPA2 brain_cerebellum -2.76e+00 0.006200 0 16:13154509-16:14463422
2585 16 14014013 14046205 ERCC4 cmc.brain.rnaseq -2.24e-01 0.000171 0 16:13154509-16:14463422
2570 16 14927538 14990017 NOMO1 brain_nucleus_accumbens_basal_ganglia -3.34e+00 0.033600 0 16:13154509-16:14463422
2576 16 14529557 14724124 PARN ntr.blood.rnaarr -1.78e+00 0.000778 0 16:13154509-16:14463422
2578 16 14726667 14763093 BFAR cmc.brain.rnaseq_splicing 1.64e+00 0.000570 0 16:13154509-16:14463422
2571 16 14396145 14420210 RP11-65J21.3 thyroid 3.07e+00 0.014400 0 16:13154509-16:14463422
12645 16 14014014 14046202 ERCC4 psychencode -3.58e-01 0.000178 0 16:13154509-16:14463422
13054 16 14802801 14820195 NPIPA3 psychencode 1.18e+00 0.000315 0 16:13154509-16:14463422
2584 16 14529558 14726585 PARN brain_hypothalamus 2.44e-01 0.000176 0 16:13154509-16:14463422
2581 16 14103137 14109873 CTD-2135D7.5 brain_cerebellar_hemisphere 1.13e+00 0.000316 0 16:13154509-16:14463422
2572 16 14726667 14763093 BFAR cmc.brain.rnaseq_splicing -2.88e+00 0.008420 0 16:13154509-16:14463422
13428 16 14396145 14420210 RP11-65J21.3 psychencode -1.18e+00 0.000316 0 16:13154509-16:14463422
2577 16 14841923 14859270 NPIPA2 pituitary 1.80e+00 0.000737 0 16:13154509-16:14463422
12795 16 14165178 14360630 MKL2 psychencode 4.70e-01 0.000199 0 16:13154509-16:14463422
13324 16 14841923 14859270 NPIPA2 psychencode 6.22e-01 0.000206 0 16:13154509-16:14463422
2573 16 12756919 12897874 CPPED1 thyroid 2.80e+00 0.007290 0 16:13154509-16:14463422
2580 16 12995477 13334272 SHISA9 brain_cerebellum 1.24e+00 0.000358 0 16:13154509-16:14463422
2582 16 14726672 14763093 BFAR thyroid 1.06e+00 0.000279 0 16:13154509-16:14463422
2583 16 12756919 12897874 CPPED1 yfs.blood.rnaarr -7.80e-01 0.000227 0 16:13154509-16:14463422
2586 16 12070601 12668146 SNX29 cmc.brain.rnaseq 1.34e-01 0.000168 0 16:13154509-16:14463422
13398 16 15111963 15114345 RP11-680G24.5 psychencode 1.18e+00 0.000357 0 16:14464238-16:16153189
2734 16 15188268 15203054 RP11-72I8.1 pituitary 5.96e-01 0.000254 0 16:14464238-16:16153189
2735 16 15188268 15203054 RP11-72I8.1 brain_cerebellar_hemisphere 2.20e-01 0.000252 0 16:14464238-16:16153189
2710 16 15457516 15474904 NPIPA5 brain_cerebellar_hemisphere -1.78e-01 0.000281 0 16:14464238-16:16153189
2594 16 15198178 15217355 NPIPP1 adrenal_gland 2.96e+00 0.007210 1 16:14464238-16:16153189
2605 16 15198178 15217355 NPIPP1 brain_putamen_basal_ganglia 2.26e+00 0.001360 0 16:14464238-16:16153189
2675 16 15068448 15233196 PDXDC1 thyroid -5.12e-01 0.000346 0 16:14464238-16:16153189
2672 16 15153879 15188174 RRN3 brain_hypothalamus -9.05e-01 0.000349 0 16:14464238-16:16153189
2647 16 15198178 15217355 NPIPP1 pituitary 1.55e+00 0.000480 0 16:14464238-16:16153189
2687 16 15489611 15507125 MPV17L whole_blood 1.19e+00 0.000322 0 16:14464238-16:16153189
2620 16 15737124 15820210 NDE1 brain_cortex 1.70e+00 0.000754 0 16:14464238-16:16153189
2632 16 15737124 15820210 NDE1 brain_putamen_basal_ganglia 1.52e+00 0.000603 0 16:14464238-16:16153189
2610 16 15820531 15826850 AF001548.5 brain_putamen_basal_ganglia -2.06e+00 0.001180 0 16:14464238-16:16153189
2761 16 16242785 16317379 ABCC6 brain_substantia_nigra 1.42e-01 0.000212 0 16:14464238-16:16153189
2709 16 15031271 15045913 NPIPA1 adrenal_gland 8.78e-01 0.000282 0 16:14464238-16:16153189
2704 16 15131710 15149921 NTAN1 whole_blood 9.25e-01 0.000296 0 16:14464238-16:16153189
2748 16 15188268 15203054 RP11-72I8.1 brain_hippocampus 1.01e-01 0.000238 0 16:14464238-16:16153189
2589 16 15737124 15820210 NDE1 brain_nucleus_accumbens_basal_ganglia 3.61e+00 0.055200 1 16:14464238-16:16153189
2760 16 15959576 15982447 FOPNL cmc.brain.rnaseq_splicing 4.60e-01 0.000227 0 16:14464238-16:16153189
2588 16 15131709 15149936 NTAN1 cmc.brain.rnaseq_splicing -3.83e+00 0.119000 1 16:14464238-16:16153189
2663 16 15198178 15217355 NPIPP1 brain_amygdala 1.25e+00 0.000362 0 16:14464238-16:16153189
2679 16 15198178 15217355 NPIPP1 whole_blood 1.23e+00 0.000334 0 16:14464238-16:16153189
2701 16 16043433 16236930 ABCC1 cmc.brain.rnaseq -1.07e+00 0.000299 0 16:14464238-16:16153189
2706 16 15198178 15217355 NPIPP1 brain_cortex 9.42e-01 0.000294 0 16:14464238-16:16153189
2711 16 15198178 15217355 NPIPP1 brain_caudate_basal_ganglia 7.70e-01 0.000281 0 16:14464238-16:16153189
2752 16 15489611 15507125 MPV17L thyroid -1.81e-02 0.000234 0 16:14464238-16:16153189
2750 16 15188268 15203054 RP11-72I8.1 adrenal_gland 2.03e-01 0.000235 0 16:14464238-16:16153189
2639 16 15820531 15826850 AF001548.5 adrenal_gland -1.43e+00 0.000559 0 16:14464238-16:16153189
2590 16 15111963 15114345 RP11-680G24.5 thyroid -3.50e+00 0.038000 1 16:14464238-16:16153189
2736 16 15188268 15203054 RP11-72I8.1 brain_caudate_basal_ganglia 5.26e-01 0.000250 0 16:14464238-16:16153189
2719 16 15198178 15217355 NPIPP1 brain_frontal_cortex_ba9 6.69e-01 0.000270 0 16:14464238-16:16153189
12747 16 15005408 15029565 RP11-958N24.1 psychencode -1.55e+00 0.001470 0 16:14464238-16:16153189
2662 16 15031271 15045913 NPIPA1 pituitary 3.89e-01 0.000364 0 16:14464238-16:16153189
2741 16 15489611 15507125 MPV17L adrenal_gland 5.20e-01 0.000246 0 16:14464238-16:16153189
2598 16 15528152 15718872 C16orf45 thyroid -2.66e+00 0.003250 0 16:14464238-16:16153189
2668 16 16242785 16317379 ABCC6 adrenal_gland -9.59e-01 0.000355 0 16:14464238-16:16153189
2593 16 15111963 15114345 RP11-680G24.5 brain_cerebellum -2.95e+00 0.007220 1 16:14464238-16:16153189
13397 16 15188268 15203054 RP11-72I8.1 psychencode -1.10e+00 0.000324 0 16:14464238-16:16153189
2691 16 16043434 16236931 ABCC1 whole_blood -7.68e-01 0.000319 0 16:14464238-16:16153189
2616 16 15153879 15188174 RRN3 brain_anterior_cingulate_cortex_ba24 -2.04e+00 0.000980 0 16:14464238-16:16153189
2656 16 15009314 15009413 Y_RNA brain_nucleus_accumbens_basal_ganglia -8.47e-01 0.000446 0 16:14464238-16:16153189
2702 16 15031271 15045913 NPIPA1 brain_caudate_basal_ganglia 6.04e-01 0.000299 0 16:14464238-16:16153189
2629 16 15820531 15826850 AF001548.5 brain_frontal_cortex_ba9 -1.61e+00 0.000655 0 16:14464238-16:16153189
2650 16 14841923 14859270 NPIPA2 brain_cerebellum -1.54e+00 0.000462 0 16:14464238-16:16153189
2727 16 16242785 16317379 ABCC6 whole_blood 5.00e-01 0.000256 0 16:14464238-16:16153189
2755 16 14914649 14918563 ABCC6P2 thyroid -8.98e-02 0.000233 0 16:14464238-16:16153189
2692 16 15005408 15029565 RP11-958N24.1 thyroid 9.90e-01 0.000318 0 16:14464238-16:16153189
2599 16 15131709 15149903 NTAN1 ntr.blood.rnaarr 2.59e+00 0.003170 0 16:14464238-16:16153189
2677 16 15153879 15188174 RRN3 whole_blood -6.78e-01 0.000343 0 16:14464238-16:16153189
2731 16 15198178 15217355 NPIPP1 brain_nucleus_accumbens_basal_ganglia 5.89e-01 0.000256 0 16:14464238-16:16153189
2686 16 15959576 15982447 FOPNL cmc.brain.rnaseq_splicing -1.09e+00 0.000323 0 16:14464238-16:16153189
2697 16 15031271 15045913 NPIPA1 brain_cerebellar_hemisphere 1.00e+00 0.000312 0 16:14464238-16:16153189
2661 16 14841923 14859270 NPIPA2 adrenal_gland -3.36e-01 0.000379 0 16:14464238-16:16153189
2665 16 15009314 15009413 Y_RNA thyroid -8.12e-01 0.000361 0 16:14464238-16:16153189
2753 16 15198178 15217355 NPIPP1 brain_anterior_cingulate_cortex_ba24 8.29e-02 0.000234 0 16:14464238-16:16153189
13404 16 15489611 15609205 RP11-1021N1.1 psychencode 1.95e+00 0.001230 0 16:14464238-16:16153189
2683 16 14841923 14859270 NPIPA2 whole_blood -2.11e-01 0.000328 0 16:14464238-16:16153189
2690 16 15153879 15188174 RRN3 brain_caudate_basal_ganglia 2.92e-01 0.000320 0 16:14464238-16:16153189
2746 16 15188268 15203054 RP11-72I8.1 thyroid 2.96e-01 0.000240 0 16:14464238-16:16153189
2636 16 15737124 15820210 NDE1 brain_hypothalamus 1.50e+00 0.000582 0 16:14464238-16:16153189
2739 16 15198178 15217355 NPIPP1 thyroid 6.23e-01 0.000249 0 16:14464238-16:16153189
2705 16 15068448 15233196 PDXDC1 brain_frontal_cortex_ba9 5.76e-01 0.000295 0 16:14464238-16:16153189
2743 16 15198178 15217355 NPIPP1 brain_cerebellum 4.44e-01 0.000243 0 16:14464238-16:16153189
11862 16 14726672 14763093 BFAR psychencode 1.94e-01 0.000229 0 16:14464238-16:16153189
13333 16 14914649 14918563 ABCC6P2 psychencode 1.78e-01 0.000221 0 16:14464238-16:16153189
12407 16 15131710 15149921 NTAN1 psychencode 1.31e-01 0.000246 0 16:14464238-16:16153189
2723 16 15457516 15474904 NPIPA5 brain_putamen_basal_ganglia 3.69e-01 0.000262 0 16:14464238-16:16153189
2660 16 15528152 15718872 C16orf45 adrenal_gland -8.12e-01 0.000386 0 16:14464238-16:16153189
2592 16 15959577 15982482 FOPNL thyroid 3.17e+00 0.013100 1 16:14464238-16:16153189
2595 16 16043434 16236931 ABCC1 brain_caudate_basal_ganglia 2.71e+00 0.003620 0 16:14464238-16:16153189
2688 16 15528152 15718872 C16orf45 brain_cerebellum -1.13e+00 0.000322 0 16:14464238-16:16153189
11858 16 16326352 16388668 NOMO3 psychencode -4.20e-01 0.000222 0 16:14464238-16:16153189
2630 16 15188268 15203054 RP11-72I8.1 brain_amygdala -1.73e+00 0.000608 0 16:14464238-16:16153189
13432 16 15820531 15826850 AF001548.5 psychencode -1.47e+00 0.000536 0 16:14464238-16:16153189
2624 16 15835008 15835616 AF001548.6 brain_substantia_nigra -1.67e+00 0.000688 0 16:14464238-16:16153189
2648 16 15031271 15045913 NPIPA1 brain_substantia_nigra -4.40e-01 0.000476 0 16:14464238-16:16153189
12745 16 15016659 15045915 NPIPA1 psychencode -8.33e-01 0.000338 0 16:14464238-16:16153189
2603 16 15737124 15820210 NDE1 adrenal_gland 2.27e+00 0.001520 0 16:14464238-16:16153189
2718 16 14927538 14990017 NOMO1 brain_nucleus_accumbens_basal_ganglia -5.74e-01 0.000272 0 16:14464238-16:16153189
2749 16 15198178 15217355 NPIPP1 brain_hypothalamus 2.10e-01 0.000236 0 16:14464238-16:16153189
2615 16 15820531 15826850 AF001548.5 brain_amygdala -1.89e+00 0.000994 0 16:14464238-16:16153189
2713 16 16450081 16471364 RP11-958N24.2 pituitary 7.65e-01 0.000279 0 16:14464238-16:16153189
2608 16 15737123 15820161 NDE1 ntr.blood.rnaarr -2.04e+00 0.001210 0 16:14464238-16:16153189
2758 16 16450081 16471364 RP11-958N24.2 whole_blood -1.28e-01 0.000230 0 16:14464238-16:16153189
2651 16 15005408 15029565 RP11-958N24.1 adrenal_gland 8.73e-01 0.000461 0 16:14464238-16:16153189
2655 16 15188268 15203054 RP11-72I8.1 brain_hypothalamus 1.06e+00 0.000451 0 16:14464238-16:16153189
2724 16 15188268 15203054 RP11-72I8.1 brain_cerebellum -2.21e-01 0.000261 0 16:14464238-16:16153189
2757 16 14529557 14724124 PARN ntr.blood.rnaarr 5.84e-01 0.000231 0 16:14464238-16:16153189
2714 16 15457516 15474904 NPIPA5 brain_cortex -8.88e-02 0.000277 0 16:14464238-16:16153189
2626 16 15031271 15045913 NPIPA1 brain_cortex 1.83e+00 0.000677 0 16:14464238-16:16153189
2612 16 15082116 15084017 RP11-680G24.4 adrenal_gland -1.97e+00 0.001110 0 16:14464238-16:16153189
13325 16 14841923 14859270 NPIPA2 psychencode 1.36e+00 0.000418 0 16:14464238-16:16153189
2744 16 15153879 15188174 RRN3 brain_nucleus_accumbens_basal_ganglia -9.88e-02 0.000243 0 16:14464238-16:16153189
2654 16 15005408 15029565 RP11-958N24.1 brain_nucleus_accumbens_basal_ganglia -1.30e+00 0.000454 0 16:14464238-16:16153189
2657 16 15005408 15029565 RP11-958N24.1 brain_frontal_cortex_ba9 -1.50e+00 0.000420 0 16:14464238-16:16153189
2712 16 15031271 15045913 NPIPA1 brain_putamen_basal_ganglia 1.85e-01 0.000280 0 16:14464238-16:16153189
2644 16 15031271 15045913 NPIPA1 brain_anterior_cingulate_cortex_ba24 -2.88e-01 0.000494 0 16:14464238-16:16153189
2637 16 15737124 15820210 NDE1 whole_blood 1.49e+00 0.000573 0 16:14464238-16:16153189
2659 16 15737124 15820210 NDE1 yfs.blood.rnaarr -1.14e+00 0.000390 0 16:14464238-16:16153189
2680 16 15031271 15045913 NPIPA1 brain_nucleus_accumbens_basal_ganglia 7.06e-01 0.000333 0 16:14464238-16:16153189
2587 16 15111963 15114345 RP11-680G24.5 adrenal_gland -3.90e+00 0.154000 1 16:14464238-16:16153189
2669 16 15131710 15149921 NTAN1 brain_cerebellum 1.26e+00 0.000355 0 16:14464238-16:16153189
13471 16 15198580 15225458 RP11-1186N24.5 psychencode 1.35e+00 0.000365 0 16:14464238-16:16153189
2673 16 14726667 14763093 BFAR cmc.brain.rnaseq_splicing 1.14e+00 0.000349 0 16:14464238-16:16153189
2689 16 14802801 14820195 NPIPA3 brain_nucleus_accumbens_basal_ganglia -1.19e+00 0.000321 0 16:14464238-16:16153189
2641 16 15835008 15835616 AF001548.6 whole_blood -1.46e+00 0.000540 0 16:14464238-16:16153189
2685 16 15031271 15045913 NPIPA1 whole_blood 1.11e+00 0.000324 0 16:14464238-16:16153189
2754 16 16043434 16236931 ABCC1 thyroid -2.11e-01 0.000233 0 16:14464238-16:16153189
2737 16 15457516 15474904 NPIPA5 brain_hypothalamus -3.96e-01 0.000250 0 16:14464238-16:16153189
2591 16 15082116 15084017 RP11-680G24.4 thyroid -3.29e+00 0.021300 1 16:14464238-16:16153189
2682 16 15219099 15248421 PKD1P6 brain_cortex -9.30e-01 0.000329 0 16:14464238-16:16153189
2722 16 15005408 15029565 RP11-958N24.1 whole_blood 8.88e-01 0.000265 0 16:14464238-16:16153189
2728 16 15219099 15248421 PKD1P6 whole_blood 4.02e-01 0.000256 0 16:14464238-16:16153189
2708 16 15457516 15474904 NPIPA5 brain_frontal_cortex_ba9 -2.61e-02 0.000285 0 16:14464238-16:16153189
2747 16 14726667 14763093 BFAR cmc.brain.rnaseq_splicing -5.67e-01 0.000238 0 16:14464238-16:16153189
2721 16 15153879 15188174 RRN3 brain_cerebellum -5.49e-01 0.000266 0 16:14464238-16:16153189
2667 16 15005408 15029565 RP11-958N24.1 brain_caudate_basal_ganglia -1.07e+00 0.000360 0 16:14464238-16:16153189
2742 16 15219099 15248421 PKD1P6 brain_cerebellum 2.31e-01 0.000244 0 16:14464238-16:16153189
13265 16 15219099 15248421 PKD1P6 psychencode 1.21e+00 0.000427 0 16:14464238-16:16153189
2681 16 16416162 16444447 AC138969.4 whole_blood 1.04e+00 0.000331 0 16:14464238-16:16153189
2695 16 16450081 16471364 RP11-958N24.2 thyroid 9.23e-01 0.000314 0 16:14464238-16:16153189
2751 16 14726667 14763093 BFAR cmc.brain.rnaseq_splicing -5.55e-01 0.000234 0 16:14464238-16:16153189
2614 16 16326352 16388668 NOMO3 whole_blood -1.85e+00 0.001010 0 16:14464238-16:16153189
2696 16 15528152 15718872 C16orf45 whole_blood 1.12e+00 0.000314 0 16:14464238-16:16153189
11857 16 16043434 16236931 ABCC1 psychencode -1.67e+00 0.000924 0 16:14464238-16:16153189
2740 16 15153879 15188174 RRN3 brain_cerebellar_hemisphere -2.95e-01 0.000246 0 16:14464238-16:16153189
2617 16 15031271 15045913 NPIPA1 brain_frontal_cortex_ba9 1.99e+00 0.000902 0 16:14464238-16:16153189
2729 16 15188268 15203054 RP11-72I8.1 brain_cortex 2.01e-02 0.000256 0 16:14464238-16:16153189
2730 16 14841923 14859270 NPIPA2 pituitary -2.04e-02 0.000256 0 16:14464238-16:16153189
2700 16 15457516 15474904 NPIPA5 thyroid 5.00e-01 0.000304 0 16:14464238-16:16153189
2703 16 14103137 14109873 CTD-2135D7.5 brain_cerebellar_hemisphere 9.12e-01 0.000297 0 16:14464238-16:16153189
2619 16 15820531 15826850 AF001548.5 brain_hypothalamus -1.76e+00 0.000803 0 16:14464238-16:16153189
2640 16 15737124 15820210 NDE1 thyroid 1.43e+00 0.000540 0 16:14464238-16:16153189
2621 16 15219099 15248421 PKD1P6 thyroid -1.33e+00 0.000736 0 16:14464238-16:16153189
11746 16 15153879 15188174 RRN3 psychencode -1.74e+00 0.000691 0 16:14464238-16:16153189
12540 16 15528152 15718885 C16orf45 psychencode -2.46e+00 0.001950 0 16:14464238-16:16153189
2759 16 14529558 14726585 PARN brain_hypothalamus -3.25e-01 0.000227 0 16:14464238-16:16153189
2716 16 15068448 15233196 PDXDC1 brain_cortex 6.78e-01 0.000275 0 16:14464238-16:16153189
2674 16 15068832 15233196 PDXDC1 cmc.brain.rnaseq -2.99e-01 0.000348 0 16:14464238-16:16153189
2601 16 15219099 15248421 PKD1P6 adrenal_gland -2.32e+00 0.002150 0 16:14464238-16:16153189
2698 16 15031271 15045913 NPIPA1 brain_hypothalamus 7.93e-01 0.000312 0 16:14464238-16:16153189
2613 16 15457516 15474904 NPIPA5 brain_amygdala 1.70e+00 0.001060 0 16:14464238-16:16153189
2717 16 15959576 15982447 FOPNL cmc.brain.rnaseq_splicing 8.87e-01 0.000274 0 16:14464238-16:16153189
2693 16 15031271 15045913 NPIPA1 brain_cerebellum 8.79e-01 0.000316 0 16:14464238-16:16153189
2622 16 15820531 15826850 AF001548.5 brain_cortex -1.65e+00 0.000707 0 16:14464238-16:16153189
2623 16 15457516 15474904 NPIPA5 brain_substantia_nigra 1.22e+00 0.000701 0 16:14464238-16:16153189
12796 16 14165178 14360630 MKL2 psychencode -7.53e-01 0.000255 0 16:14464238-16:16153189
2625 16 15457516 15474904 NPIPA5 pituitary 6.12e-01 0.000679 0 16:14464238-16:16153189
12406 16 15489611 15507125 MPV17L psychencode 1.02e+00 0.000387 0 16:14464238-16:16153189
2684 16 15737124 15820210 NDE1 brain_frontal_cortex_ba9 6.00e-01 0.000325 0 16:14464238-16:16153189
2725 16 15457516 15474904 NPIPA5 brain_anterior_cingulate_cortex_ba24 2.72e-01 0.000260 0 16:14464238-16:16153189
2597 16 15796991 15950887 MYH11 ntr.blood.rnaarr -2.65e+00 0.003270 0 16:14464238-16:16153189
2645 16 15457516 15474904 NPIPA5 brain_nucleus_accumbens_basal_ganglia 1.05e+00 0.000490 0 16:14464238-16:16153189
13055 16 14802801 14820195 NPIPA3 psychencode 5.58e-01 0.000258 0 16:14464238-16:16153189
2635 16 15820531 15826850 AF001548.5 brain_caudate_basal_ganglia -1.51e+00 0.000590 0 16:14464238-16:16153189
2732 16 15188268 15203054 RP11-72I8.1 brain_frontal_cortex_ba9 -9.31e-02 0.000256 0 16:14464238-16:16153189
2607 16 15737124 15820210 NDE1 brain_cerebellum 2.13e+00 0.001240 0 16:14464238-16:16153189
2652 16 15457516 15474904 NPIPA5 adrenal_gland -1.49e+00 0.000458 0 16:14464238-16:16153189
2699 16 15068832 15233196 PDXDC1 cmc.brain.rnaseq_splicing -5.49e-01 0.000307 0 16:14464238-16:16153189
2618 16 15737124 15820210 NDE1 brain_caudate_basal_ganglia 1.78e+00 0.000896 0 16:14464238-16:16153189
12194 16 15959577 15982482 FOPNL psychencode -4.91e-01 0.000255 0 16:14464238-16:16153189
13422 16 15082116 15084017 RP11-680G24.4 psychencode 1.38e+00 0.000527 0 16:14464238-16:16153189
2658 16 15457516 15474904 NPIPA5 brain_hippocampus 7.55e-01 0.000402 0 16:14464238-16:16153189
12836 16 15198178 15225458 NPIPP1 psychencode 2.06e-01 0.000239 0 16:14464238-16:16153189
2733 16 16326352 16388668 NOMO3 brain_cerebellar_hemisphere -7.30e-01 0.000254 0 16:14464238-16:16153189
2606 16 16043433 16236919 ABCC1 ntr.blood.rnaarr -2.12e+00 0.001260 0 16:14464238-16:16153189
2643 16 16425710 16444465 PKD1P1 cmc.brain.rnaseq 1.40e+00 0.000518 0 16:14464238-16:16153189
13225 16 16404198 16428047 PKD1P1 psychencode -6.48e-01 0.000249 0 16:14464238-16:16153189
12541 16 15688243 15737023 KIAA0430 psychencode -1.32e+00 0.000423 0 16:14464238-16:16153189
2671 16 15457516 15474904 NPIPA5 brain_caudate_basal_ganglia 5.05e-01 0.000349 0 16:14464238-16:16153189
2715 16 15031271 15045913 NPIPA1 brain_amygdala 1.01e-01 0.000276 0 16:14464238-16:16153189
2707 16 15031271 15045913 NPIPA1 thyroid 7.86e-01 0.000291 0 16:14464238-16:16153189
12692 16 15068448 15233196 PDXDC1 psychencode 9.36e-01 0.000340 0 16:14464238-16:16153189
2678 16 16326352 16388668 NOMO3 thyroid -1.05e+00 0.000341 0 16:14464238-16:16153189
2600 16 15068832 15233196 PDXDC1 cmc.brain.rnaseq_splicing 2.51e+00 0.002300 0 16:14464238-16:16153189
2726 16 14726672 14763093 BFAR thyroid -7.40e-01 0.000260 0 16:14464238-16:16153189
2609 16 16326388 16388668 NOMO3 cmc.brain.rnaseq 1.84e+00 0.001190 0 16:14464238-16:16153189
2676 16 15131710 15149921 NTAN1 yfs.blood.rnaarr 3.87e-01 0.000344 0 16:14464238-16:16153189
2653 16 16450081 16471364 RP11-958N24.2 brain_cerebellar_hemisphere 1.34e+00 0.000455 0 16:14464238-16:16153189
2611 16 15111963 15114345 RP11-680G24.5 brain_anterior_cingulate_cortex_ba24 -2.19e+00 0.001180 0 16:14464238-16:16153189
2642 16 15820531 15826850 AF001548.5 thyroid -1.42e+00 0.000529 0 16:14464238-16:16153189
2633 16 15820531 15826850 AF001548.5 whole_blood -1.52e+00 0.000595 0 16:14464238-16:16153189
2631 16 15820531 15826850 AF001548.5 brain_substantia_nigra -1.53e+00 0.000608 0 16:14464238-16:16153189
2756 16 15198178 15217355 NPIPP1 brain_hippocampus 1.53e-01 0.000233 0 16:14464238-16:16153189
2745 16 15457516 15474904 NPIPA5 whole_blood -1.46e-01 0.000243 0 16:14464238-16:16153189
2604 16 15153879 15188174 RRN3 pituitary 1.68e+00 0.001470 0 16:14464238-16:16153189
2720 16 15031271 15045913 NPIPA1 brain_hippocampus 4.47e-01 0.000269 0 16:14464238-16:16153189
2694 16 15457516 15474904 NPIPA5 brain_cerebellum -1.54e-01 0.000316 0 16:14464238-16:16153189
2646 16 15820531 15826850 AF001548.5 brain_cerebellar_hemisphere -1.33e+00 0.000484 0 16:14464238-16:16153189
2670 16 15068832 15132186 PDXDC1 ntr.blood.rnaarr -1.01e+00 0.000352 0 16:14464238-16:16153189
2738 16 15528351 15682115 C16orf45 ntr.blood.rnaarr -3.30e-01 0.000250 0 16:14464238-16:16153189
2627 16 15820531 15826850 AF001548.5 brain_nucleus_accumbens_basal_ganglia -1.65e+00 0.000671 0 16:14464238-16:16153189
2664 16 15153879 15188174 RRN3 adrenal_gland -9.58e-01 0.000361 0 16:14464238-16:16153189
12757 16 15457516 15474904 NPIPA5 psychencode -1.18e-01 0.000265 0 16:14464238-16:16153189
2602 16 15153878 15188158 RRN3 cmc.brain.rnaseq -1.95e+00 0.001780 0 16:14464238-16:16153189
2666 16 15153879 15188174 RRN3 brain_hippocampus -1.04e+00 0.000360 0 16:14464238-16:16153189
2638 16 15820531 15826850 AF001548.5 brain_cerebellum -1.47e+00 0.000559 0 16:14464238-16:16153189
2649 16 15820531 15826850 AF001548.5 brain_anterior_cingulate_cortex_ba24 -1.33e+00 0.000465 0 16:14464238-16:16153189
2596 16 15489610 15503543 MPV17L cmc.brain.rnaseq_splicing -2.58e+00 0.003300 0 16:14464238-16:16153189
2634 16 15820531 15826850 AF001548.5 pituitary -1.51e+00 0.000595 0 16:14464238-16:16153189
2628 16 15820531 15826850 AF001548.5 brain_hippocampus -1.59e+00 0.000656 0 16:14464238-16:16153189
2811 16 21250195 21314404 CRYM brain_putamen_basal_ganglia -1.39e+00 0.000481 0 16:20150571-16:22448267
2823 16 21250195 21314404 CRYM brain_caudate_basal_ganglia -1.21e+00 0.000360 0 16:20150571-16:22448267
11688 16 20744986 20753406 THUMPD1 psychencode -9.99e-01 0.000336 0 16:20150571-16:22448267
2824 16 21250195 21314404 CRYM brain_hypothalamus 1.23e+00 0.000354 0 16:20150571-16:22448267
2802 16 21610855 21668792 METTL9 cmc.brain.rnaseq_splicing -1.65e+00 0.000714 0 16:20150571-16:22448267
2779 16 21638063 21638723 CTB-31N19.3 whole_blood -2.33e+00 0.002330 0 16:20150571-16:22448267
2795 16 21805416 21807080 RP11-645C24.5 brain_cerebellum 2.02e+00 0.001190 0 16:20150571-16:22448267
2880 16 19717673 19726705 C16orf88 ntr.blood.rnaarr -1.37e-01 0.000188 0 16:20150571-16:22448267
2859 16 20634559 20710212 ACSM1 thyroid -3.47e-01 0.000208 0 16:20150571-16:22448267
2763 16 21651924 21663981 IGSF6 ntr.blood.rnaarr -3.14e+00 0.018800 1 16:20150571-16:22448267
2788 16 21652609 21663981 IGSF6 brain_anterior_cingulate_cortex_ba24 2.15e+00 0.001580 0 16:20150571-16:22448267
2820 16 21652609 21663981 IGSF6 whole_blood -1.28e+00 0.000409 0 16:20150571-16:22448267
2818 16 21689834 21772050 OTOA cmc.brain.rnaseq 1.37e+00 0.000422 0 16:20150571-16:22448267
2874 16 20420856 20452571 ACSM5 brain_caudate_basal_ganglia 2.82e-01 0.000193 0 16:20150571-16:22448267
2768 16 20744986 20753406 THUMPD1 brain_cerebellum -2.70e+00 0.006010 1 16:20150571-16:22448267
2772 16 21245015 21263750 ANKS4B cmc.brain.rnaseq -2.64e+00 0.004230 0 16:20150571-16:22448267
2791 16 20621565 20807446 ACSM3 pituitary -2.05e+00 0.001280 0 16:20150571-16:22448267
2825 16 21169698 21191937 TMEM159 brain_cerebellum -1.65e-01 0.000352 0 16:20150571-16:22448267
12392 16 21689835 21772050 OTOA psychencode -3.71e-01 0.000291 0 16:20150571-16:22448267
2764 16 21805416 21807080 RP11-645C24.5 brain_nucleus_accumbens_basal_ganglia 2.91e+00 0.009060 1 16:20150571-16:22448267
2794 16 21206168 21217298 AF001550.7 brain_cerebellar_hemisphere 2.02e+00 0.001230 0 16:20150571-16:22448267
2765 16 21805416 21807080 RP11-645C24.5 thyroid 2.89e+00 0.008770 1 16:20150571-16:22448267
2858 16 19727778 19868615 IQCK brain_cerebellar_hemisphere -5.40e-01 0.000213 0 16:20150571-16:22448267
2790 16 20634559 20710212 ACSM1 brain_cerebellar_hemisphere 1.95e+00 0.001390 0 16:20150571-16:22448267
2798 16 20791515 20907703 ERI2 thyroid -1.99e+00 0.001170 0 16:20150571-16:22448267
2766 16 21805416 21807080 RP11-645C24.5 brain_putamen_basal_ganglia 2.80e+00 0.006880 1 16:20150571-16:22448267
2777 16 20744986 20753406 THUMPD1 whole_blood 2.28e+00 0.002470 0 16:20150571-16:22448267
2845 16 21807950 21830495 RRN3P1 cmc.brain.rnaseq 7.57e-01 0.000250 0 16:20150571-16:22448267
2770 16 21805416 21807080 RP11-645C24.5 whole_blood 2.67e+00 0.004860 1 16:20150571-16:22448267
2776 16 20744986 20753406 THUMPD1 brain_frontal_cortex_ba9 -2.33e+00 0.002530 0 16:20150571-16:22448267
2789 16 20744986 20753406 THUMPD1 brain_cerebellar_hemisphere -2.13e+00 0.001540 0 16:20150571-16:22448267
2782 16 21805416 21807080 RP11-645C24.5 brain_cortex 2.28e+00 0.002020 0 16:20150571-16:22448267
2784 16 21805416 21807080 RP11-645C24.5 brain_hippocampus 2.27e+00 0.001930 0 16:20150571-16:22448267
2814 16 22097120 22103552 RP11-101E7.2 brain_cerebellar_hemisphere -5.13e-01 0.000451 0 16:20150571-16:22448267
2882 16 19772561 19777421 CTD-2380F24.1 brain_amygdala 1.24e-01 0.000188 0 16:20150571-16:22448267
2817 16 19868908 19897489 GPRC5B brain_nucleus_accumbens_basal_ganglia 1.34e+00 0.000435 0 16:20150571-16:22448267
12869 16 20791515 20911671 ERI2 psychencode -2.33e+00 0.002380 0 16:20150571-16:22448267
11859 16 21250195 21314404 CRYM psychencode 1.33e+00 0.000435 0 16:20150571-16:22448267
2803 16 20634559 20710212 ACSM1 pituitary 1.56e+00 0.000707 0 16:20150571-16:22448267
2805 16 21805416 21807080 RP11-645C24.5 brain_hypothalamus 1.68e+00 0.000679 0 16:20150571-16:22448267
2830 16 21169698 21191937 TMEM159 thyroid 1.17e+00 0.000341 0 16:20150571-16:22448267
2835 16 21807950 21830495 RRN3P1 cmc.brain.rnaseq_splicing -9.80e-01 0.000307 0 16:20150571-16:22448267
2785 16 21805416 21807080 RP11-645C24.5 brain_caudate_basal_ganglia 2.27e+00 0.001910 0 16:20150571-16:22448267
13405 16 19772494 19777421 CTD-2380F24.1 psychencode 2.83e-01 0.000196 0 16:20150571-16:22448267
12638 16 19727778 19868907 IQCK psychencode -1.88e-01 0.000196 0 16:20150571-16:22448267
2799 16 20744986 20753406 THUMPD1 yfs.blood.rnaarr 1.81e+00 0.001010 0 16:20150571-16:22448267
2773 16 20869396 20911706 DCUN1D3 yfs.blood.rnaarr 2.50e+00 0.004180 0 16:20150571-16:22448267
11848 16 20911190 20936328 LYRM1 psychencode -1.66e+00 0.000764 0 16:20150571-16:22448267
2793 16 21413558 21452040 NPIPB3 brain_nucleus_accumbens_basal_ganglia 2.08e+00 0.001250 0 16:20150571-16:22448267
12587 16 21413558 21459888 NPIPB3 psychencode 3.14e-01 0.000195 0 16:20150571-16:22448267
2778 16 21458004 21531765 CTD-2547E10.2 brain_hypothalamus 2.38e+00 0.002340 0 16:20150571-16:22448267
2838 16 19772561 19777421 CTD-2380F24.1 brain_nucleus_accumbens_basal_ganglia 9.42e-01 0.000298 0 16:20150571-16:22448267
11863 16 19566562 19718115 C16orf62 psychencode -3.93e-01 0.000200 0 16:20150571-16:22448267
2819 16 20911556 20936328 LYRM1 cmc.brain.rnaseq_splicing -1.28e+00 0.000414 0 16:20150571-16:22448267
2834 16 19868908 19897489 GPRC5B brain_cerebellum 1.01e+00 0.000318 0 16:20150571-16:22448267
2822 16 21169911 21191937 TMEM159 cmc.brain.rnaseq 8.49e-01 0.000370 0 16:20150571-16:22448267
2807 16 21805416 21807080 RP11-645C24.5 brain_frontal_cortex_ba9 1.54e+00 0.000595 0 16:20150571-16:22448267
2771 16 20807661 20911561 ERI2 cmc.brain.rnaseq_splicing -2.61e+00 0.004680 0 16:20150571-16:22448267
2806 16 20911190 20936328 LYRM1 brain_cerebellar_hemisphere 1.60e+00 0.000634 0 16:20150571-16:22448267
2800 16 21208773 21225831 ZP2 brain_cerebellum 1.83e+00 0.000917 0 16:20150571-16:22448267
2846 16 20866247 20880302 DCUN1D3 brain_cerebellum 1.81e-01 0.000245 0 16:20150571-16:22448267
2869 16 20634559 20710212 ACSM1 adrenal_gland 2.25e-01 0.000199 0 16:20150571-16:22448267
2832 16 22298359 22300059 RP11-141O15.1 brain_frontal_cortex_ba9 9.08e-01 0.000330 0 16:20150571-16:22448267
2801 16 21805416 21807080 RP11-645C24.5 brain_cerebellar_hemisphere 1.74e+00 0.000746 0 16:20150571-16:22448267
2861 16 20634559 20710212 ACSM1 whole_blood -1.56e-01 0.000207 0 16:20150571-16:22448267
2850 16 20817999 20860987 AC004381.6 brain_cerebellar_hemisphere 5.70e-01 0.000234 0 16:20150571-16:22448267
2847 16 19772561 19777421 CTD-2380F24.1 brain_hypothalamus -7.02e-01 0.000236 0 16:20150571-16:22448267
2826 16 21845890 21877629 NPIPB4 thyroid -1.21e+00 0.000351 0 16:20150571-16:22448267
11597 16 20817751 20860987 AC004381.6 psychencode -8.29e-01 0.000253 0 16:20150571-16:22448267
2860 16 19772561 19777421 CTD-2380F24.1 brain_anterior_cingulate_cortex_ba24 4.99e-01 0.000208 0 16:20150571-16:22448267
2796 16 21169698 21191937 TMEM159 brain_amygdala 2.02e+00 0.001190 0 16:20150571-16:22448267
2837 16 22217591 22300066 EEF2K cmc.brain.rnaseq 1.02e+00 0.000306 0 16:20150571-16:22448267
2870 16 20634559 20710212 ACSM1 brain_hippocampus -1.00e-02 0.000198 0 16:20150571-16:22448267
2781 16 20634559 20710212 ACSM1 brain_cerebellum 2.22e+00 0.002130 0 16:20150571-16:22448267
2812 16 21805416 21807080 RP11-645C24.5 adrenal_gland 1.41e+00 0.000481 0 16:20150571-16:22448267
12789 16 21845890 21892148 NPIPB4 psychencode -1.92e+00 0.000934 0 16:20150571-16:22448267
2783 16 21169698 21191937 TMEM159 adrenal_gland 2.24e+00 0.001980 0 16:20150571-16:22448267
2840 16 20621565 20807446 ACSM3 thyroid -9.03e-01 0.000294 0 16:20150571-16:22448267
2848 16 19868908 19897489 GPRC5B brain_caudate_basal_ganglia 6.92e-01 0.000235 0 16:20150571-16:22448267
11613 16 21169698 21191937 TMEM159 psychencode 1.21e+00 0.000365 0 16:20150571-16:22448267
2851 16 21458004 21531765 CTD-2547E10.2 thyroid -4.23e-01 0.000232 0 16:20150571-16:22448267
2786 16 21805416 21807080 RP11-645C24.5 pituitary 2.25e+00 0.001870 0 16:20150571-16:22448267
11860 16 22217603 22298554 EEF2K psychencode 1.11e+00 0.000334 0 16:20150571-16:22448267
12702 16 21458004 21531765 CTD-2547E10.2 psychencode -1.95e+00 0.001130 0 16:20150571-16:22448267
11596 16 20621565 20808903 ACSM3 psychencode 2.55e+00 0.004200 0 16:20150571-16:22448267
12832 16 20866247 20911706 DCUN1D3 psychencode 2.75e+00 0.006840 1 16:20150571-16:22448267
2774 16 21608539 21668794 METTL9 whole_blood -2.38e+00 0.002610 0 16:20150571-16:22448267
2815 16 22177618 22203075 SDR42E2 brain_cortex 1.45e+00 0.000445 0 16:20150571-16:22448267
2856 16 22308695 22346424 POLR3E cmc.brain.rnaseq_splicing -5.63e-01 0.000217 0 16:20150571-16:22448267
2804 16 22103862 22168287 VWA3A cmc.brain.rnaseq_splicing -1.53e+00 0.000703 0 16:20150571-16:22448267
2836 16 20420856 20452571 ACSM5 adrenal_gland 1.04e+00 0.000306 0 16:20150571-16:22448267
11668 16 22308730 22346424 POLR3E psychencode 1.09e+00 0.000306 0 16:20150571-16:22448267
2862 16 19727778 19868615 IQCK brain_cerebellum 4.36e-01 0.000206 0 16:20150571-16:22448267
2816 16 22357257 22444986 CDR2 brain_substantia_nigra 1.21e+00 0.000436 0 16:20150571-16:22448267
2842 16 21807951 21831731 RRN3P1 adrenal_gland 6.94e-01 0.000269 0 16:20150571-16:22448267
2865 16 22357257 22448486 CDR2 yfs.blood.rnaarr 3.74e-01 0.000204 0 16:20150571-16:22448267
2877 16 19714902 19729016 KNOP1 whole_blood -1.87e-01 0.000189 0 16:20150571-16:22448267
2843 16 20634559 20710212 ACSM1 brain_hypothalamus 7.97e-01 0.000263 0 16:20150571-16:22448267
2863 16 22430090 22448905 RRN3P3 thyroid -4.24e-01 0.000205 0 16:20150571-16:22448267
2855 16 20744985 20753199 THUMPD1 cmc.brain.rnaseq -4.52e-01 0.000222 0 16:20150571-16:22448267
2829 16 22177618 22203075 SDR42E2 pituitary 1.22e+00 0.000344 0 16:20150571-16:22448267
2876 16 20744986 20753406 THUMPD1 thyroid -1.73e-01 0.000189 0 16:20150571-16:22448267
13187 16 22448329 22503541 SMG1P1 psychencode 1.44e+00 0.000519 0 16:20150571-16:22448267
2841 16 22449037 22503541 SMG1P1 brain_cerebellum 8.87e-01 0.000283 0 16:20150571-16:22448267
2849 16 22449037 22503541 SMG1P1 brain_cerebellar_hemisphere 7.51e-01 0.000234 0 16:20150571-16:22448267
12751 16 20420856 20452658 ACSM5 psychencode -3.68e-01 0.000203 0 16:20150571-16:22448267
2787 16 21169698 21191937 TMEM159 yfs.blood.rnaarr 2.13e+00 0.001660 0 16:20150571-16:22448267
2780 16 20817999 20860987 AC004381.6 brain_cerebellum 2.21e+00 0.002210 0 16:20150571-16:22448267
2864 16 22449037 22503541 SMG1P1 thyroid 4.46e-01 0.000205 0 16:20150571-16:22448267
2866 16 22449037 22503541 SMG1P1 brain_hypothalamus 3.87e-01 0.000201 0 16:20150571-16:22448267
12642 16 22103859 22168287 VWA3A psychencode -1.31e+00 0.000391 0 16:20150571-16:22448267
2868 16 19772561 19777421 CTD-2380F24.1 brain_frontal_cortex_ba9 -3.33e-01 0.000201 0 16:20150571-16:22448267
2871 16 22449037 22503541 SMG1P1 pituitary -1.72e-01 0.000198 0 16:20150571-16:22448267
2769 16 20744986 20753406 THUMPD1 adrenal_gland 2.60e+00 0.005360 1 16:20150571-16:22448267
2879 16 22449037 22503541 SMG1P1 whole_blood 6.36e-02 0.000189 0 16:20150571-16:22448267
2867 16 19772561 19777421 CTD-2380F24.1 brain_cortex -3.33e-01 0.000201 0 16:20150571-16:22448267
2854 16 20634559 20710212 ACSM1 brain_frontal_cortex_ba9 3.47e-01 0.000228 0 16:20150571-16:22448267
2878 16 20420855 20452281 ACSM5 cmc.brain.rnaseq 8.36e-03 0.000189 0 16:20150571-16:22448267
12760 16 22177618 22203075 SDR42E2 psychencode 5.91e-01 0.000219 0 16:20150571-16:22448267
2813 16 22557019 22588186 RP11-368J21.3 brain_anterior_cingulate_cortex_ba24 -1.33e+00 0.000464 0 16:20150571-16:22448267
2833 16 21805416 21807080 RP11-645C24.5 brain_amygdala 1.07e+00 0.000318 0 16:20150571-16:22448267
2844 16 19714902 19729016 KNOP1 brain_substantia_nigra -8.13e-01 0.000252 0 16:20150571-16:22448267
2831 16 21807951 21831731 RRN3P1 pituitary 1.02e+00 0.000337 0 16:20150571-16:22448267
13402 16 22298029 22300059 RP11-141O15.1 psychencode 1.36e+00 0.000480 0 16:20150571-16:22448267
2808 16 21807951 21831731 RRN3P1 brain_cerebellar_hemisphere 1.62e+00 0.000595 0 16:20150571-16:22448267
2881 16 19727777 19868859 IQCK cmc.brain.rnaseq 1.25e-01 0.000188 0 16:20150571-16:22448267
2852 16 20420856 20452571 ACSM5 brain_cerebellum 6.69e-01 0.000231 0 16:20150571-16:22448267
2853 16 21807950 21830495 RRN3P1 cmc.brain.rnaseq_splicing 3.86e-01 0.000230 0 16:20150571-16:22448267
2792 16 21206168 21217298 AF001550.7 brain_cerebellum 2.03e+00 0.001260 0 16:20150571-16:22448267
2797 16 20547548 20587749 ACSM2B thyroid -1.89e+00 0.001170 0 16:20150571-16:22448267
2809 16 21807951 21831731 RRN3P1 brain_cerebellum 1.57e+00 0.000582 0 16:20150571-16:22448267
12785 16 21890659 21930477 RP11-645C24.2 psychencode -2.42e+00 0.002620 0 16:20150571-16:22448267
2839 16 21805416 21807080 RP11-645C24.5 brain_anterior_cingulate_cortex_ba24 8.79e-01 0.000296 0 16:20150571-16:22448267
2775 16 21891094 21930477 RP11-645C24.2 thyroid -2.33e+00 0.002540 0 16:20150571-16:22448267
2872 16 20598007 20618429 RP11-143N13.1 thyroid -3.17e-01 0.000196 0 16:20150571-16:22448267
2762 16 21995186 22012433 PDZD9 brain_hypothalamus -3.67e+00 0.101000 1 16:20150571-16:22448267
2810 16 21995186 22012433 PDZD9 brain_frontal_cortex_ba9 6.98e-01 0.000503 0 16:20150571-16:22448267
2827 16 21608539 21668794 METTL9 yfs.blood.rnaarr -9.65e-01 0.000351 0 16:20150571-16:22448267
2857 16 21807951 21831731 RRN3P1 brain_caudate_basal_ganglia -1.63e-02 0.000214 0 16:20150571-16:22448267
2767 16 20621565 20807446 ACSM3 brain_nucleus_accumbens_basal_ganglia 2.73e+00 0.006750 1 16:20150571-16:22448267
12786 16 22018959 22098855 C16orf52 psychencode 3.67e-01 0.000245 0 16:20150571-16:22448267
2828 16 21807951 21831731 RRN3P1 thyroid 8.15e-01 0.000345 0 16:20150571-16:22448267
2821 16 21169698 21191937 TMEM159 brain_hypothalamus 1.31e+00 0.000399 0 16:20150571-16:22448267
2873 16 20420856 20452571 ACSM5 brain_nucleus_accumbens_basal_ganglia 2.19e-01 0.000193 0 16:20150571-16:22448267
13243 16 21807951 21831731 RRN3P1 psychencode -7.74e-01 0.000314 0 16:20150571-16:22448267
2875 16 20420856 20452571 ACSM5 thyroid -2.71e-01 0.000192 0 16:20150571-16:22448267
2928 16 68344877 68392230 PRMT7 brain_anterior_cingulate_cortex_ba24 2.08e+00 0.001270 0 16:65938566-16:68841030
2932 16 68344877 68392230 PRMT7 whole_blood 1.96e+00 0.001050 0 16:65938566-16:68841030
2939 16 68344877 68392230 PRMT7 brain_caudate_basal_ganglia 1.83e+00 0.000815 0 16:65938566-16:68841030
2994 16 68344877 68392230 PRMT7 brain_hypothalamus 1.15e+00 0.000367 0 16:65938566-16:68841030
2927 16 67466595 67468931 AC009061.1 thyroid 2.13e+00 0.001340 0 16:65938566-16:68841030
2926 16 68344876 68391169 PRMT7 cmc.brain.rnaseq_splicing 2.15e+00 0.001390 0 16:65938566-16:68841030
3049 16 67471922 67515140 ATP6V0D1 brain_cerebellum 5.06e-01 0.000250 0 16:65938566-16:68841030
2959 16 67552321 67580691 FAM65A brain_cerebellar_hemisphere 1.59e+00 0.000554 0 16:65938566-16:68841030
3041 16 68262449 68270487 ESRP2 ntr.blood.rnaarr -4.42e-02 0.000256 0 16:65938566-16:68841030
12426 16 67423712 67427438 TPPP3 psychencode -1.06e+00 0.000311 0 16:65938566-16:68841030
12429 16 67516474 67517716 AGRP psychencode 1.13e+00 0.000337 0 16:65938566-16:68841030
2915 16 68344876 68391169 PRMT7 cmc.brain.rnaseq_splicing -2.30e+00 0.002000 1 16:65938566-16:68841030
2910 16 68344877 68392230 PRMT7 brain_putamen_basal_ganglia 2.39e+00 0.002360 1 16:65938566-16:68841030
2923 16 67428322 67450736 ZDHHC1 yfs.blood.rnaarr 2.22e+00 0.001530 0 16:65938566-16:68841030
2977 16 67182443 67185117 B3GNT9 brain_cortex -8.25e-01 0.000423 0 16:65938566-16:68841030
2909 16 67218269 67224107 EXOC3L1 thyroid 2.44e+00 0.002520 1 16:65938566-16:68841030
2921 16 68344877 68392230 PRMT7 brain_cerebellum 2.22e+00 0.001600 0 16:65938566-16:68841030
3020 16 67226072 67232821 E2F4 yfs.blood.rnaarr 3.79e-01 0.000293 0 16:65938566-16:68841030
3090 16 67552321 67580691 FAM65A brain_cerebellum -1.72e-02 0.000206 0 16:65938566-16:68841030
12851 16 67209505 67217943 KIAA0895L psychencode -1.41e+00 0.000615 0 16:65938566-16:68841030
2925 16 67428322 67450377 ZDHHC1 thyroid 2.21e+00 0.001500 0 16:65938566-16:68841030
3064 16 67233014 67237932 ELMO3 whole_blood -7.31e-02 0.000230 0 16:65938566-16:68841030
3077 16 67423711 67427421 TPPP3 cmc.brain.rnaseq -2.89e-01 0.000214 0 16:65938566-16:68841030
2943 16 68344877 68392230 PRMT7 brain_amygdala 1.75e+00 0.000723 0 16:65938566-16:68841030
2967 16 67143865 67182442 C16orf70 cmc.brain.rnaseq_splicing 1.52e+00 0.000492 0 16:65938566-16:68841030
2952 16 67596310 67673086 CTCF brain_nucleus_accumbens_basal_ganglia 1.65e+00 0.000613 0 16:65938566-16:68841030
3003 16 67209644 67217943 KIAA0895L brain_cerebellum -1.02e+00 0.000333 0 16:65938566-16:68841030
3050 16 67182004 67184902 B3GNT9 cmc.brain.rnaseq -4.29e-02 0.000250 0 16:65938566-16:68841030
12286 16 67204057 67209643 NOL3 psychencode 1.99e-01 0.000204 0 16:65938566-16:68841030
2969 16 68263163 68272005 ESRP2 thyroid 1.37e+00 0.000470 0 16:65938566-16:68841030
2995 16 68263163 68272005 ESRP2 brain_putamen_basal_ganglia -1.22e+00 0.000367 0 16:65938566-16:68841030
2953 16 68344877 68392230 PRMT7 thyroid 1.63e+00 0.000611 0 16:65938566-16:68841030
2973 16 68344876 68391169 PRMT7 cmc.brain.rnaseq -6.53e-01 0.000438 0 16:65938566-16:68841030
2938 16 67323403 67360666 KCTD19 thyroid 1.91e+00 0.000862 0 16:65938566-16:68841030
2990 16 68344876 68391169 PRMT7 cmc.brain.rnaseq_splicing 1.23e+00 0.000389 0 16:65938566-16:68841030
2941 16 66836778 66907159 NAE1 brain_cerebellum 1.62e+00 0.000743 0 16:65938566-16:68841030
3088 16 69221032 69342955 SNTB2 brain_cerebellum 6.02e-02 0.000206 0 16:65938566-16:68841030
3058 16 67209644 67217943 KIAA0895L brain_cortex -4.13e-01 0.000236 0 16:65938566-16:68841030
12216 16 67193834 67198473 FBXL8 psychencode -4.17e-01 0.000263 0 16:65938566-16:68841030
3011 16 66503769 66513034 CTD-2258A20.5 thyroid -9.03e-01 0.000307 0 16:65938566-16:68841030
11847 16 67197288 67203848 HSF4 psychencode -1.87e+00 0.000860 0 16:65938566-16:68841030
3085 16 69165194 69265033 CIRH1A brain_amygdala -2.31e-01 0.000208 0 16:65938566-16:68841030
3042 16 69221010 69342954 SNTB2 ntr.blood.rnaarr 7.49e-01 0.000255 0 16:65938566-16:68841030
11855 16 68298433 68335722 SLC7A6 psychencode -1.88e+00 0.000914 0 16:65938566-16:68841030
2956 16 69221032 69342955 SNTB2 yfs.blood.rnaarr -1.58e+00 0.000583 0 16:65938566-16:68841030
3083 16 69221049 69342955 SNTB2 cmc.brain.rnaseq_splicing -6.75e-02 0.000211 0 16:65938566-16:68841030
2955 16 68344877 68392230 PRMT7 brain_hippocampus 1.62e+00 0.000588 0 16:65938566-16:68841030
11851 16 67596310 67673086 CTCF psychencode 2.30e+00 0.001800 0 16:65938566-16:68841030
12183 16 68344877 68392466 PRMT7 psychencode 6.84e-01 0.000252 0 16:65938566-16:68841030
3035 16 68771128 68869451 CDH1 brain_putamen_basal_ganglia 5.51e-01 0.000265 0 16:65938566-16:68841030
3093 16 68771128 68869451 CDH1 thyroid 2.37e-01 0.000204 0 16:65938566-16:68841030
3086 16 66613351 66622178 CMTM2 brain_hypothalamus 9.61e-02 0.000207 0 16:65938566-16:68841030
12428 16 67471917 67515140 ATP6V0D1 psychencode -5.22e-01 0.000239 0 16:65938566-16:68841030
2908 16 68344877 68392230 PRMT7 brain_nucleus_accumbens_basal_ganglia 2.47e+00 0.002790 1 16:65938566-16:68841030
3094 16 69139467 69151571 HAS3 brain_nucleus_accumbens_basal_ganglia -9.96e-04 0.000204 0 16:65938566-16:68841030
3061 16 68856490 68856973 FTLP14 thyroid 6.13e-01 0.000234 0 16:65938566-16:68841030
3025 16 69151911 69166493 CHTF8 cmc.brain.rnaseq_splicing 8.83e-01 0.000281 0 16:65938566-16:68841030
3069 16 69165194 69265033 CIRH1A thyroid -5.12e-01 0.000226 0 16:65938566-16:68841030
3081 16 69165194 69265033 CIRH1A yfs.blood.rnaarr -1.41e-01 0.000211 0 16:65938566-16:68841030
12968 16 67226072 67232821 E2F4 psychencode 2.11e-01 0.000207 0 16:65938566-16:68841030
3098 16 66613351 66622178 CMTM2 yfs.blood.rnaarr 2.48e-02 0.000199 0 16:65938566-16:68841030
3080 16 69165194 69265033 CIRH1A pituitary -3.54e-01 0.000212 0 16:65938566-16:68841030
3059 16 68771194 68869444 CDH1 cmc.brain.rnaseq -2.90e-01 0.000235 0 16:65938566-16:68841030
3012 16 66503769 66513034 CTD-2258A20.5 pituitary -9.20e-01 0.000306 0 16:65938566-16:68841030
3047 16 66637777 66647795 CMTM3 whole_blood -6.09e-01 0.000251 0 16:65938566-16:68841030
2945 16 68021664 68113223 DUS2 brain_nucleus_accumbens_basal_ganglia 1.73e+00 0.000708 0 16:65938566-16:68841030
3060 16 67233014 67237932 ELMO3 yfs.blood.rnaarr 4.63e-01 0.000235 0 16:65938566-16:68841030
2940 16 68009565 68014661 DPEP3 ntr.blood.rnaarr -1.74e+00 0.000751 0 16:65938566-16:68841030
11694 16 67063019 67134961 CBFB psychencode -1.52e+00 0.000533 0 16:65938566-16:68841030
2965 16 67198474 67203848 HSF4 whole_blood -1.12e+00 0.000498 0 16:65938566-16:68841030
12651 16 67464555 67471456 HSD11B2 psychencode -1.95e+00 0.000927 0 16:65938566-16:68841030
12097 16 67696848 67701168 ENKD1 psychencode 1.49e+00 0.000507 0 16:65938566-16:68841030
12431 16 67700719 67702661 C16orf86 psychencode -2.76e+00 0.005430 1 16:65938566-16:68841030
3029 16 68009566 68014732 DPEP3 whole_blood -1.41e-01 0.000271 0 16:65938566-16:68841030
2930 16 68298433 68335722 SLC7A6 whole_blood -2.01e+00 0.001130 0 16:65938566-16:68841030
2907 16 68118654 68255187 NFATC3 whole_blood -2.52e+00 0.003240 1 16:65938566-16:68841030
11642 16 68771128 68869451 CDH1 psychencode 9.12e-02 0.000213 0 16:65938566-16:68841030
2998 16 67233014 67237932 ELMO3 pituitary -9.57e-01 0.000361 0 16:65938566-16:68841030
2935 16 68021297 68034489 DPEP2 whole_blood 1.93e+00 0.000972 0 16:65938566-16:68841030
3028 16 68021664 68113223 DUS2 brain_amygdala 4.74e-01 0.000276 0 16:65938566-16:68841030
2931 16 68246304 68255574 RP11-96D1.5 thyroid -2.03e+00 0.001110 0 16:65938566-16:68841030
2954 16 68279207 68294961 PLA2G15 thyroid 1.56e+00 0.000599 0 16:65938566-16:68841030
3076 16 68771128 68869451 CDH1 brain_caudate_basal_ganglia 1.02e-01 0.000215 0 16:65938566-16:68841030
2996 16 68021297 68034489 DPEP2 yfs.blood.rnaarr 1.10e+00 0.000366 0 16:65938566-16:68841030
2936 16 68056846 68113226 DUS2L cmc.brain.rnaseq 1.93e+00 0.000960 0 16:65938566-16:68841030
11671 16 68670092 68756519 CDH3 psychencode 9.82e-01 0.000295 0 16:65938566-16:68841030
3017 16 66503769 66513034 CTD-2258A20.5 whole_blood -9.29e-01 0.000299 0 16:65938566-16:68841030
2978 16 67471921 67515142 ATP6V0D1 ntr.blood.rnaarr -1.31e+00 0.000410 0 16:65938566-16:68841030
3024 16 69221032 69342955 SNTB2 brain_caudate_basal_ganglia -5.37e-01 0.000282 0 16:65938566-16:68841030
2890 16 66442427 66446038 LINC00920 brain_hippocampus -2.77e+00 0.007490 1 16:65938566-16:68841030
2951 16 67428322 67450377 ZDHHC1 pituitary 1.68e+00 0.000614 0 16:65938566-16:68841030
2986 16 66995140 67009051 CES3 brain_cerebellar_hemisphere -1.21e+00 0.000398 0 16:65938566-16:68841030
2895 16 66442427 66446038 LINC00920 whole_blood 2.66e+00 0.005660 1 16:65938566-16:68841030
2894 16 68021664 68113223 DUS2 brain_cortex 2.77e+00 0.005680 1 16:65938566-16:68841030
3039 16 67696848 67700667 ENKD1 brain_cerebellar_hemisphere 4.02e-01 0.000260 0 16:65938566-16:68841030
3032 16 68118654 68263162 NFATC3 yfs.blood.rnaarr 2.40e-01 0.000268 0 16:65938566-16:68841030
2984 16 67973653 67977376 LCAT pituitary 1.23e+00 0.000402 0 16:65938566-16:68841030
3022 16 68021292 68027160 DPEP2 ntr.blood.rnaarr 4.19e-01 0.000288 0 16:65938566-16:68841030
3034 16 68118653 68263162 NFATC3 cmc.brain.rnaseq -1.23e-01 0.000266 0 16:65938566-16:68841030
2957 16 66613351 66622178 CMTM2 thyroid -1.37e+00 0.000572 0 16:65938566-16:68841030
3057 16 67233014 67237932 ELMO3 adrenal_gland 4.25e-01 0.000236 0 16:65938566-16:68841030
2914 16 67708434 67753324 GFOD2 thyroid 2.24e+00 0.002070 1 16:65938566-16:68841030
3004 16 67233014 67237932 ELMO3 brain_cerebellar_hemisphere -1.12e+00 0.000328 0 16:65938566-16:68841030
2971 16 67708435 67753273 GFOD2 cmc.brain.rnaseq -1.42e+00 0.000458 0 16:65938566-16:68841030
3033 16 67977529 68003504 SLC12A4 whole_blood -2.94e-02 0.000267 0 16:65938566-16:68841030
2897 16 66442427 66446038 LINC00920 brain_caudate_basal_ganglia -2.64e+00 0.005460 1 16:65938566-16:68841030
3007 16 67233014 67237932 ELMO3 brain_cerebellum -1.10e+00 0.000320 0 16:65938566-16:68841030
2883 16 68118654 68255187 NFATC3 brain_caudate_basal_ganglia -3.46e+00 0.046600 1 16:65938566-16:68841030
3051 16 67973653 67978034 LCAT yfs.blood.rnaarr 2.76e-01 0.000249 0 16:65938566-16:68841030
2980 16 66638178 66647795 CMTM3 ntr.blood.rnaarr 1.25e+00 0.000409 0 16:65938566-16:68841030
2944 16 68056846 68113223 DUS2L ntr.blood.rnaarr 1.72e+00 0.000709 0 16:65938566-16:68841030
3010 16 66648653 66730610 CMTM4 thyroid -5.54e-01 0.000308 0 16:65938566-16:68841030
3091 16 66875336 66875725 RP11-61A14.1 brain_cerebellum -1.42e-01 0.000206 0 16:65938566-16:68841030
3055 16 66503501 66516740 BEAN1 ntr.blood.rnaarr -6.21e-01 0.000237 0 16:65938566-16:68841030
2983 16 67840976 67861971 TSNAXIP1 cmc.brain.rnaseq 1.19e+00 0.000403 0 16:65938566-16:68841030
2917 16 68118654 68255187 NFATC3 brain_hypothalamus -2.28e+00 0.001890 0 16:65938566-16:68841030
2999 16 67241042 67260951 LRRC29 brain_cortex 1.04e+00 0.000346 0 16:65938566-16:68841030
2989 16 67360701 67419106 LRRC36 brain_substantia_nigra 1.29e+00 0.000390 0 16:65938566-16:68841030
3046 16 66503769 66513034 CTD-2258A20.5 brain_cerebellar_hemisphere 5.53e-01 0.000252 0 16:65938566-16:68841030
3089 16 66516775 66519706 AC132186.1 whole_blood -2.78e-01 0.000206 0 16:65938566-16:68841030
3066 16 68258616 68259871 RP11-96D1.10 thyroid -2.78e-01 0.000228 0 16:65938566-16:68841030
3045 16 67428322 67450377 ZDHHC1 whole_blood 5.86e-01 0.000252 0 16:65938566-16:68841030
3018 16 67233014 67237932 ELMO3 brain_amygdala -5.40e-01 0.000297 0 16:65938566-16:68841030
2963 16 68344877 68392230 PRMT7 pituitary 4.96e-01 0.000527 0 16:65938566-16:68841030
3048 16 67241042 67260951 LRRC29 brain_amygdala 7.24e-01 0.000251 0 16:65938566-16:68841030
2922 16 68021649 68113223 DUS2L yfs.blood.rnaarr 2.18e+00 0.001530 0 16:65938566-16:68841030
12756 16 66648653 66730610 CMTM4 psychencode -1.36e-01 0.000200 0 16:65938566-16:68841030
3068 16 66754796 66785701 DYNC1LI2 yfs.blood.rnaarr 2.25e-01 0.000226 0 16:65938566-16:68841030
3084 16 66754796 66785654 DYNC1LI2 brain_substantia_nigra 3.13e-01 0.000209 0 16:65938566-16:68841030
3019 16 68344877 68392230 PRMT7 adrenal_gland 4.09e-01 0.000295 0 16:65938566-16:68841030
3062 16 66541906 66586447 TK2 yfs.blood.rnaarr -5.57e-01 0.000233 0 16:65938566-16:68841030
2899 16 66442427 66446038 LINC00920 brain_cortex -2.61e+00 0.005000 1 16:65938566-16:68841030
3075 16 67209644 67217943 KIAA0895L brain_caudate_basal_ganglia 5.06e-01 0.000218 0 16:65938566-16:68841030
3079 16 66541906 66586447 TK2 whole_blood -3.54e-01 0.000212 0 16:65938566-16:68841030
12775 16 68563993 68609975 ZFP90 psychencode 6.53e-01 0.000240 0 16:65938566-16:68841030
12622 16 66912492 66929657 PDP2 psychencode 2.51e-01 0.000211 0 16:65938566-16:68841030
12430 16 67678822 67691472 RLTPR psychencode 2.23e+00 0.001600 0 16:65938566-16:68841030
12130 16 67241042 67260951 LRRC29 psychencode 1.37e+00 0.000484 0 16:65938566-16:68841030
2902 16 66442427 66446038 LINC00920 brain_putamen_basal_ganglia -2.50e+00 0.003760 1 16:65938566-16:68841030
3065 16 66965959 66968303 FAM96B adrenal_gland -2.18e-01 0.000228 0 16:65938566-16:68841030
2898 16 68021664 68113223 DUS2 brain_anterior_cingulate_cortex_ba24 2.71e+00 0.005320 1 16:65938566-16:68841030
12621 16 66968347 66978999 CES2 psychencode 2.46e-02 0.000203 0 16:65938566-16:68841030
3096 16 66836780 66864879 NAE1 cmc.brain.rnaseq_splicing -7.74e-03 0.000199 0 16:65938566-16:68841030
2929 16 68021297 68034489 DPEP2 brain_hypothalamus 2.01e+00 0.001140 0 16:65938566-16:68841030
12427 16 67428322 67450736 ZDHHC1 psychencode -8.39e-01 0.000264 0 16:65938566-16:68841030
2950 16 67471922 67515140 ATP6V0D1 whole_blood -1.73e+00 0.000652 0 16:65938566-16:68841030
2948 16 67757005 67840555 RANBP10 brain_cerebellum -1.75e+00 0.000680 0 16:65938566-16:68841030
2961 16 67691473 67694713 ACD whole_blood -1.57e+00 0.000547 0 16:65938566-16:68841030
3014 16 67708434 67753324 GFOD2 brain_cortex 2.54e-01 0.000301 0 16:65938566-16:68841030
2979 16 68279207 68294961 PLA2G15 adrenal_gland 1.22e+00 0.000410 0 16:65938566-16:68841030
3078 16 66836778 66907159 NAE1 yfs.blood.rnaarr -3.91e-01 0.000214 0 16:65938566-16:68841030
2934 16 67360701 67419106 LRRC36 thyroid 1.98e+00 0.000985 0 16:65938566-16:68841030
3027 16 67973653 67977376 LCAT brain_cerebellum -1.62e-01 0.000277 0 16:65938566-16:68841030
2896 16 68118654 68255187 NFATC3 pituitary -2.75e+00 0.005490 1 16:65938566-16:68841030
2901 16 68021664 68113223 DUS2 brain_caudate_basal_ganglia 2.64e+00 0.004460 1 16:65938566-16:68841030
2933 16 66785702 66788643 RP11-61A14.4 brain_substantia_nigra 1.84e+00 0.000996 0 16:65938566-16:68841030
2988 16 66995140 67009051 CES3 brain_cerebellum -1.20e+00 0.000394 0 16:65938566-16:68841030
2920 16 68258616 68259871 RP11-96D1.10 brain_nucleus_accumbens_basal_ganglia -2.21e+00 0.001680 0 16:65938566-16:68841030
2904 16 66442427 66446038 LINC00920 brain_substantia_nigra -2.48e+00 0.003720 1 16:65938566-16:68841030
3097 16 66836780 66864879 NAE1 cmc.brain.rnaseq_splicing 1.38e-01 0.000199 0 16:65938566-16:68841030
2993 16 67471916 67515089 ATP6V0D1 cmc.brain.rnaseq -1.26e+00 0.000368 0 16:65938566-16:68841030
2912 16 68021664 68113223 DUS2 whole_blood 2.38e+00 0.002300 1 16:65938566-16:68841030
2962 16 67471917 67515140 ATP6V0D1 yfs.blood.rnaarr -1.58e+00 0.000530 0 16:65938566-16:68841030
2905 16 66442427 66446038 LINC00920 brain_nucleus_accumbens_basal_ganglia -2.44e+00 0.003360 1 16:65938566-16:68841030
2887 16 66442427 66446038 LINC00920 brain_amygdala -2.95e+00 0.012300 1 16:65938566-16:68841030
3082 16 66541906 66586447 TK2 thyroid -2.67e-01 0.000211 0 16:65938566-16:68841030
3009 16 68344877 68392230 PRMT7 brain_cerebellar_hemisphere 7.11e-01 0.000312 0 16:65938566-16:68841030
2997 16 68279207 68294961 PLA2G15 whole_blood 9.43e-01 0.000365 0 16:65938566-16:68841030
3087 16 66400533 66438686 CDH5 brain_putamen_basal_ganglia -3.57e-01 0.000206 0 16:65938566-16:68841030
2970 16 68344877 68392230 PRMT7 brain_frontal_cortex_ba9 1.38e+00 0.000470 0 16:65938566-16:68841030
12534 16 66541906 66586447 TK2 psychencode -1.48e-01 0.000206 0 16:65938566-16:68841030
2916 16 67464555 67471456 HSD11B2 brain_frontal_cortex_ba9 -2.32e+00 0.001940 0 16:65938566-16:68841030
2968 16 66442427 66446038 LINC00920 brain_anterior_cingulate_cortex_ba24 -1.38e+00 0.000491 0 16:65938566-16:68841030
2991 16 67218269 67224107 EXOC3L1 brain_cortex -6.91e-01 0.000389 0 16:65938566-16:68841030
2987 16 66764993 66765688 RP11-63M22.2 brain_cerebellum 1.03e+00 0.000396 0 16:65938566-16:68841030
2974 16 67973653 67977376 LCAT adrenal_gland 1.31e+00 0.000434 0 16:65938566-16:68841030
3092 16 66764993 66765688 RP11-63M22.2 brain_cortex -1.47e-01 0.000205 0 16:65938566-16:68841030
13400 16 66923072 66924996 RP11-61A14.3 psychencode -2.80e-01 0.000247 0 16:65938566-16:68841030
2946 16 67977529 68003504 SLC12A4 adrenal_gland 1.69e+00 0.000701 0 16:65938566-16:68841030
2966 16 68118654 68255187 NFATC3 brain_frontal_cortex_ba9 -1.39e+00 0.000497 0 16:65938566-16:68841030
3074 16 66543110 66584315 TK2 ntr.blood.rnaarr -4.34e-01 0.000221 0 16:65938566-16:68841030
2918 16 68392457 68482591 SMPD3 brain_cerebellum -2.28e+00 0.001870 0 16:65938566-16:68841030
3070 16 67360701 67419106 LRRC36 brain_cerebellar_hemisphere 3.24e-01 0.000223 0 16:65938566-16:68841030
2903 16 68118654 68255187 NFATC3 brain_nucleus_accumbens_basal_ganglia -2.56e+00 0.003750 1 16:65938566-16:68841030
3052 16 67063019 67134961 CBFB thyroid 6.26e-01 0.000240 0 16:65938566-16:68841030
3044 16 67261016 67263181 TMEM208 brain_hippocampus 6.65e-01 0.000253 0 16:65938566-16:68841030
13236 16 66442427 66446038 LINC00920 psychencode -2.94e+00 0.012000 1 16:65938566-16:68841030
11856 16 68279207 68294961 PLA2G15 psychencode 1.44e-01 0.000249 0 16:65938566-16:68841030
2906 16 68118654 68255187 NFATC3 brain_cerebellum -2.52e+00 0.003330 1 16:65938566-16:68841030
2964 16 67862059 67881361 CENPT cmc.brain.rnaseq_splicing 1.53e+00 0.000505 0 16:65938566-16:68841030
2892 16 66400533 66438686 CDH5 thyroid 2.70e+00 0.006060 1 16:65938566-16:68841030
3001 16 66586470 66600195 CKLF ntr.blood.rnaarr -1.06e+00 0.000337 0 16:65938566-16:68841030
3030 16 66461200 66527432 BEAN1 thyroid -7.66e-01 0.000270 0 16:65938566-16:68841030
12425 16 66836778 66907159 NAE1 psychencode -1.44e-01 0.000220 0 16:65938566-16:68841030
3037 16 67973653 67977376 LCAT whole_blood 1.47e-01 0.000263 0 16:65938566-16:68841030
3073 16 66461200 66527432 BEAN1 brain_cortex 5.54e-01 0.000221 0 16:65938566-16:68841030
3056 16 66400533 66438686 CDH5 brain_anterior_cingulate_cortex_ba24 5.53e-01 0.000237 0 16:65938566-16:68841030
3038 16 68392457 68482591 SMPD3 thyroid -2.90e-01 0.000262 0 16:65938566-16:68841030
2891 16 68021664 68113223 DUS2 brain_frontal_cortex_ba9 2.78e+00 0.006310 1 16:65938566-16:68841030
13185 16 67182008 67185117 B3GNT9 psychencode 6.62e-01 0.000234 0 16:65938566-16:68841030
2886 16 68021664 68113223 DUS2 thyroid 3.05e+00 0.012500 1 16:65938566-16:68841030
3095 16 66461200 66527432 BEAN1 whole_blood -2.10e-01 0.000203 0 16:65938566-16:68841030
3008 16 68344877 68392466 PRMT7 yfs.blood.rnaarr 3.62e-01 0.000313 0 16:65938566-16:68841030
11854 16 68392231 68482591 SMPD3 psychencode 2.42e+00 0.002430 1 16:65938566-16:68841030
12217 16 67271586 67306093 SLC9A5 psychencode -1.01e+00 0.000286 0 16:65938566-16:68841030
2937 16 67464555 67471456 HSD11B2 thyroid 1.89e+00 0.000926 0 16:65938566-16:68841030
2976 16 68279246 68294961 PLA2G15 cmc.brain.rnaseq -1.26e+00 0.000432 0 16:65938566-16:68841030
2913 16 68298086 68335751 SLC7A6 ntr.blood.rnaarr -2.35e+00 0.002090 1 16:65938566-16:68841030
3054 16 67263290 67281561 FHOD1 yfs.blood.rnaarr 7.30e-01 0.000239 0 16:65938566-16:68841030
2947 16 67204057 67209504 NOL3 brain_hippocampus 1.50e+00 0.000695 0 16:65938566-16:68841030
2888 16 68118654 68255187 NFATC3 thyroid -2.92e+00 0.010000 1 16:65938566-16:68841030
12533 16 66461200 66527432 BEAN1 psychencode 1.56e+00 0.000606 0 16:65938566-16:68841030
2985 16 68298433 68335722 SLC7A6 thyroid 1.17e+00 0.000400 0 16:65938566-16:68841030
2911 16 68392457 68482591 SMPD3 brain_cerebellar_hemisphere -2.37e+00 0.002310 1 16:65938566-16:68841030
2919 16 68344877 68392230 PRMT7 brain_cortex 2.27e+00 0.001780 0 16:65938566-16:68841030
2893 16 68021664 68113223 DUS2 brain_putamen_basal_ganglia 2.78e+00 0.005750 1 16:65938566-16:68841030
12682 16 67218269 67224107 EXOC3L1 psychencode 5.95e-01 0.000228 0 16:65938566-16:68841030
2924 16 68298433 68335722 SLC7A6 yfs.blood.rnaarr -2.19e+00 0.001510 0 16:65938566-16:68841030
3063 16 67263292 67281561 FHOD1 whole_blood 6.85e-01 0.000233 0 16:65938566-16:68841030
3072 16 68563993 68609975 ZFP90 brain_cortex 2.46e-01 0.000221 0 16:65938566-16:68841030
2958 16 66942025 66952887 CDH16 thyroid 1.50e+00 0.000564 0 16:65938566-16:68841030
12558 16 68021649 68113223 DUS2 psychencode 2.57e+00 0.003610 1 16:65938566-16:68841030
13382 16 68350704 68352939 RP11-96D1.3 psychencode -1.70e+00 0.000613 0 16:65938566-16:68841030
3021 16 67471922 67515140 ATP6V0D1 adrenal_gland -9.87e-01 0.000288 0 16:65938566-16:68841030
12288 16 67708434 67753324 GFOD2 psychencode -2.26e+00 0.001710 0 16:65938566-16:68841030
12853 16 67311413 67323402 PLEKHG4 psychencode 2.42e+00 0.002410 1 16:65938566-16:68841030
13388 16 68607685 68623415 RP11-615I2.1 psychencode 8.43e-01 0.000264 0 16:65938566-16:68841030
3026 16 67209644 67217943 KIAA0895L brain_cerebellar_hemisphere -7.41e-01 0.000280 0 16:65938566-16:68841030
3040 16 68564047 68601039 ZFP90 cmc.brain.rnaseq 7.35e-01 0.000256 0 16:65938566-16:68841030
2884 16 68021664 68113223 DUS2 brain_cerebellum 3.20e+00 0.019200 1 16:65938566-16:68841030
3043 16 68678150 68732957 CDH3 cmc.brain.rnaseq 8.01e-01 0.000254 0 16:65938566-16:68841030
3071 16 68563993 68609975 ZFP90 brain_caudate_basal_ganglia 5.26e-01 0.000222 0 16:65938566-16:68841030
12557 16 68021297 68034489 DPEP2 psychencode 1.36e+00 0.000420 0 16:65938566-16:68841030
2900 16 67757005 67840555 RANBP10 brain_caudate_basal_ganglia -2.69e+00 0.004580 1 16:65938566-16:68841030
11705 16 68118654 68263162 NFATC3 psychencode -1.37e+00 0.000498 0 16:65938566-16:68841030
2942 16 67757005 67840555 RANBP10 thyroid -1.79e+00 0.000727 0 16:65938566-16:68841030
3006 16 68573115 68601032 ZFP90 ntr.blood.rnaarr -1.07e+00 0.000322 0 16:65938566-16:68841030
11852 16 67694849 67696681 PARD6A psychencode -1.93e+00 0.000931 0 16:65938566-16:68841030
3000 16 68771128 68869451 CDH1 brain_hippocampus 1.08e+00 0.000339 0 16:65938566-16:68841030
2960 16 67757005 67840555 RANBP10 brain_cortex -1.55e+00 0.000550 0 16:65938566-16:68841030
11849 16 67840668 67866051 TSNAXIP1 psychencode 1.59e+00 0.000586 0 16:65938566-16:68841030
3036 16 67696848 67700667 ENKD1 brain_cerebellum 4.16e-01 0.000264 0 16:65938566-16:68841030
2982 16 68563993 68609975 ZFP90 yfs.blood.rnaarr -1.32e+00 0.000405 0 16:65938566-16:68841030
2975 16 68344876 68391169 PRMT7 cmc.brain.rnaseq_splicing 1.34e+00 0.000432 0 16:65938566-16:68841030
2889 16 68118654 68255187 NFATC3 brain_cortex -2.96e+00 0.009710 1 16:65938566-16:68841030
3002 16 67963582 67966317 CTRL whole_blood -3.64e-01 0.000335 0 16:65938566-16:68841030
12287 16 67757005 67840555 RANBP10 psychencode -2.48e+00 0.002750 1 16:65938566-16:68841030
2992 16 67906926 67918406 EDC4 whole_blood 6.35e-01 0.000384 0 16:65938566-16:68841030
2949 16 67840668 67866051 TSNAXIP1 brain_anterior_cingulate_cortex_ba24 1.61e+00 0.000659 0 16:65938566-16:68841030
3005 16 67840668 67866051 TSNAXIP1 brain_frontal_cortex_ba9 1.00e+00 0.000326 0 16:65938566-16:68841030
2885 16 67757005 67840555 RANBP10 brain_frontal_cortex_ba9 -3.18e+00 0.017300 1 16:65938566-16:68841030
2972 16 68670092 68756519 CDH3 brain_hypothalamus 1.43e+00 0.000453 0 16:65938566-16:68841030
2981 16 68670092 68756519 CDH3 brain_cortex 1.30e+00 0.000408 0 16:65938566-16:68841030
3013 16 68563993 68609975 ZFP90 whole_blood -1.00e+00 0.000303 0 16:65938566-16:68841030
3015 16 67840668 67866051 TSNAXIP1 adrenal_gland 8.56e-02 0.000301 0 16:65938566-16:68841030
3053 16 68670092 68756519 CDH3 pituitary 6.56e-01 0.000239 0 16:65938566-16:68841030
3067 16 68563993 68609975 ZFP90 brain_anterior_cingulate_cortex_ba24 5.64e-01 0.000226 0 16:65938566-16:68841030
3016 16 68563993 68609975 ZFP90 brain_frontal_cortex_ba9 9.73e-01 0.000299 0 16:65938566-16:68841030
3023 16 67840668 67866051 TSNAXIP1 brain_cerebellar_hemisphere 4.95e-01 0.000285 0 16:65938566-16:68841030
3031 16 67840668 67866051 TSNAXIP1 thyroid 7.25e-01 0.000269 0 16:65938566-16:68841030
3166 16 71481500 71496998 ZNF23 thyroid -2.32e+00 0.000325 0 16:71054116-16:72935146
3111 16 71481505 71523217 ZNF23 cmc.brain.rnaseq_splicing -2.67e+00 0.002120 0 16:71054116-16:72935146
3118 16 71928322 71962906 KIAA0174 ntr.blood.rnaarr -3.29e+00 0.001240 0 16:71054116-16:72935146
13408 16 71952815 71959638 RP11-498D10.5 psychencode -2.24e+00 0.000509 0 16:71054116-16:72935146
3106 16 71919136 71962913 IST1 thyroid -3.89e+00 0.003350 0 16:71054116-16:72935146
3199 16 70841286 71264625 HYDIN cmc.brain.rnaseq_splicing -2.01e-01 0.000235 0 16:71054116-16:72935146
3114 16 71481500 71496998 ZNF23 brain_caudate_basal_ganglia -3.39e+00 0.001780 0 16:71054116-16:72935146
3134 16 71963441 72033877 PKD1L3 pituitary -2.83e+00 0.000445 0 16:71054116-16:72935146
3160 16 71315292 71323618 CMTR2 thyroid -7.70e-02 0.000331 0 16:71054116-16:72935146
12184 16 70695107 70719969 MTSS1L psychencode 6.17e-01 0.000228 0 16:71054116-16:72935146
3190 16 71762913 71843104 AP1G1 brain_substantia_nigra -1.40e+00 0.000266 0 16:71054116-16:72935146
3099 16 72042487 72058954 DHODH adrenal_gland -3.99e+00 0.013100 1 16:71054116-16:72935146
3172 16 72038936 72040442 ATP5A1P3 brain_hypothalamus -1.80e-02 0.000319 0 16:71054116-16:72935146
11853 16 70721342 70835064 VAC14 psychencode -5.09e-01 0.000232 0 16:71054116-16:72935146
13006 16 70789001 70807154 VAC14-AS1 psychencode -7.16e-01 0.000288 0 16:71054116-16:72935146
3188 16 70841286 71264625 HYDIN cmc.brain.rnaseq_splicing 2.08e+00 0.000278 0 16:71054116-16:72935146
3150 16 71963441 72033877 PKD1L3 thyroid 1.05e-01 0.000368 0 16:71054116-16:72935146
3139 16 71919136 71962913 IST1 adrenal_gland -2.00e+00 0.000421 0 16:71054116-16:72935146
12704 16 71315292 71323618 CMTR2 psychencode 3.84e-01 0.000258 0 16:71054116-16:72935146
13430 16 70835986 70836743 RP11-424M24.5 psychencode -9.61e-01 0.000242 0 16:71054116-16:72935146
3125 16 71481500 71496998 ZNF23 brain_cerebellar_hemisphere -1.98e+00 0.000690 0 16:71054116-16:72935146
12410 16 71498453 71598992 ZNF19 psychencode 2.82e+00 0.000523 0 16:71054116-16:72935146
3120 16 71499845 71598992 ZNF19 adrenal_gland 3.42e+00 0.000913 0 16:71054116-16:72935146
3148 16 71678851 71749743 PHLPP2 cmc.brain.rnaseq_splicing -2.01e+00 0.000388 0 16:71054116-16:72935146
3113 16 71481505 71523217 ZNF23 cmc.brain.rnaseq_splicing 2.31e+00 0.001810 0 16:71054116-16:72935146
3112 16 72042487 72058954 DHODH brain_amygdala -3.64e+00 0.001950 0 16:71054116-16:72935146
3144 16 71499845 71598992 ZNF19 brain_putamen_basal_ganglia 2.46e+00 0.000405 0 16:71054116-16:72935146
12409 16 70841281 71264625 HYDIN psychencode -3.01e-01 0.000251 0 16:71054116-16:72935146
3130 16 72042487 72058954 DHODH brain_caudate_basal_ganglia -1.12e+00 0.000536 0 16:71054116-16:72935146
3180 16 72042487 72058954 DHODH brain_hypothalamus -9.93e-01 0.000296 0 16:71054116-16:72935146
3156 16 71481500 71496998 ZNF23 pituitary -2.16e+00 0.000338 0 16:71054116-16:72935146
3141 16 72042487 72058954 DHODH brain_putamen_basal_ganglia 8.54e-02 0.000416 0 16:71054116-16:72935146
12562 16 71481500 71496998 ZNF23 psychencode -2.80e+00 0.001120 0 16:71054116-16:72935146
3145 16 71497161 71498452 RP11-510M2.2 brain_putamen_basal_ganglia 5.54e-01 0.000405 0 16:71054116-16:72935146
3185 16 71315292 71323618 FTSJD1 yfs.blood.rnaarr 4.38e-01 0.000287 0 16:71054116-16:72935146
3138 16 72042642 72059316 DHODH cmc.brain.rnaseq 1.92e-02 0.000422 0 16:71054116-16:72935146
3159 16 72072000 72127539 TXNL4B cmc.brain.rnaseq -3.09e-01 0.000334 0 16:71054116-16:72935146
3154 16 71497161 71498452 RP11-510M2.2 thyroid -1.79e+00 0.000341 0 16:71054116-16:72935146
11850 16 72042487 72058954 DHODH psychencode 4.09e-01 0.000277 0 16:71054116-16:72935146
3146 16 72078188 72128295 TXNL4B brain_anterior_cingulate_cortex_ba24 -5.56e-01 0.000402 0 16:71054116-16:72935146
3123 16 72042487 72058954 DHODH brain_cerebellar_hemisphere -6.30e-01 0.000781 0 16:71054116-16:72935146
3186 16 71919136 71962913 IST1 brain_amygdala -1.45e+00 0.000284 0 16:71054116-16:72935146
3175 16 72078188 72128295 TXNL4B brain_substantia_nigra 1.66e-01 0.000316 0 16:71054116-16:72935146
3189 16 71499845 71598992 ZNF19 thyroid -1.22e-02 0.000274 0 16:71054116-16:72935146
3198 16 70841286 71264625 HYDIN cmc.brain.rnaseq 2.30e-01 0.000237 0 16:71054116-16:72935146
3115 16 72127745 72146811 DHX38 ntr.blood.rnaarr 3.03e+00 0.001630 0 16:71054116-16:72935146
3178 16 71963441 72033877 PKD1L3 adrenal_gland -2.19e+00 0.000303 0 16:71054116-16:72935146
3119 16 71762904 71842976 AP1G1 cmc.brain.rnaseq_splicing 1.04e-01 0.001190 0 16:71054116-16:72935146
3149 16 72127614 72146811 DHX38 cmc.brain.rnaseq 2.13e+00 0.000380 0 16:71054116-16:72935146
13501 16 73094144 73094658 RP11-346C20.4 psychencode -1.39e+00 0.000565 0 16:71054116-16:72935146
3187 16 71481512 71496126 ZNF23 ntr.blood.rnaarr -6.84e-01 0.000281 0 16:71054116-16:72935146
3132 16 71762913 71843104 AP1G1 adrenal_gland -1.83e+00 0.000470 0 16:71054116-16:72935146
13395 16 72459847 72463072 AC004158.3 psychencode 7.30e-01 0.000415 0 16:71054116-16:72935146
3195 16 71499845 71598992 ZNF19 brain_substantia_nigra 1.16e+00 0.000240 0 16:71054116-16:72935146
3140 16 71481500 71496998 ZNF23 brain_putamen_basal_ganglia -8.60e-01 0.000417 0 16:71054116-16:72935146
3133 16 71559136 71572649 CHST4 adrenal_gland -2.52e+00 0.000461 0 16:71054116-16:72935146
12613 16 71392616 71424341 CALB2 psychencode 7.83e-01 0.000229 0 16:71054116-16:72935146
12539 16 71762913 71843104 AP1G1 psychencode -2.66e+00 0.000466 0 16:71054116-16:72935146
3143 16 71481500 71496998 ZNF23 brain_amygdala -2.09e+00 0.000408 0 16:71054116-16:72935146
3162 16 72042487 72058954 DHODH brain_nucleus_accumbens_basal_ganglia 5.30e-01 0.000330 0 16:71054116-16:72935146
12012 16 72146056 72210777 PMFBP1 psychencode -5.21e+00 0.959000 1 16:71054116-16:72935146
3182 16 72088507 72094955 HP ntr.blood.rnaarr 1.06e+00 0.000291 0 16:71054116-16:72935146
13383 16 72823142 72825522 RP5-991G20.4 psychencode -2.26e+00 0.000882 0 16:71054116-16:72935146
3153 16 72097123 72111145 HPR brain_amygdala 1.02e-01 0.000345 0 16:71054116-16:72935146
3121 16 71879894 71917113 ATXN1L adrenal_gland -3.37e+00 0.000911 0 16:71054116-16:72935146
13419 16 72088522 72111145 HPR psychencode -1.30e+00 0.000285 0 16:71054116-16:72935146
3104 16 71660064 71676017 MARVELD3 pituitary 3.53e-01 0.005400 0 16:71054116-16:72935146
3194 16 71315292 71323618 CMTR2 whole_blood -6.62e-01 0.000241 0 16:71054116-16:72935146
3161 16 72097123 72111145 HPR brain_nucleus_accumbens_basal_ganglia -1.92e-02 0.000330 0 16:71054116-16:72935146
3192 16 71497161 71498452 RP11-510M2.2 pituitary 1.03e+00 0.000254 0 16:71054116-16:72935146
3163 16 72097123 72111145 HPR brain_cortex 4.93e-02 0.000328 0 16:71054116-16:72935146
12282 16 72127461 72146811 DHX38 psychencode 1.20e+00 0.000297 0 16:71054116-16:72935146
3155 16 72088491 72094954 HP brain_anterior_cingulate_cortex_ba24 6.83e-01 0.000339 0 16:71054116-16:72935146
3131 16 71660064 71676017 MARVELD3 brain_cerebellar_hemisphere -1.98e+00 0.000507 0 16:71054116-16:72935146
3176 16 72088491 72094954 HP yfs.blood.rnaarr 8.02e-01 0.000315 0 16:71054116-16:72935146
3193 16 72078188 72128295 TXNL4B brain_cortex 1.51e+00 0.000248 0 16:71054116-16:72935146
12284 16 71660064 71676017 MARVELD3 psychencode -3.04e+00 0.000447 0 16:71054116-16:72935146
3197 16 73094659 73096215 RP11-346C20.3 brain_substantia_nigra -8.50e-01 0.000237 0 16:71054116-16:72935146
3137 16 72088491 72094954 HP whole_blood 1.02e+00 0.000425 0 16:71054116-16:72935146
3124 16 71605923 71612090 RP11-432I5.1 pituitary -2.29e-01 0.000709 0 16:71054116-16:72935146
3184 16 72042487 72058954 DHODH brain_cortex -6.65e-01 0.000288 0 16:71054116-16:72935146
3108 16 71671738 71758604 PHLPP2 yfs.blood.rnaarr 1.84e+00 0.002750 0 16:71054116-16:72935146
12283 16 72078188 72128330 TXNL4B psychencode -1.45e+00 0.000360 0 16:71054116-16:72935146
3165 16 72097123 72111145 HPR brain_anterior_cingulate_cortex_ba24 6.07e-02 0.000326 0 16:71054116-16:72935146
3135 16 71879894 71891231 ATXN1L yfs.blood.rnaarr -7.68e-02 0.000444 0 16:71054116-16:72935146
3126 16 72127769 72146811 DHX38 adrenal_gland 1.34e+00 0.000615 0 16:71054116-16:72935146
3164 16 71762913 71843104 AP1G1 brain_amygdala 6.32e-01 0.000328 0 16:71054116-16:72935146
11644 16 71671738 71758604 PHLPP2 psychencode -2.44e+00 0.000402 0 16:71054116-16:72935146
12716 16 71879899 71962913 IST1 psychencode -1.91e+00 0.000311 0 16:71054116-16:72935146
3167 16 72097123 72111145 HPR brain_hypothalamus 1.87e-01 0.000324 0 16:71054116-16:72935146
3103 16 72097123 72111145 HPR whole_blood 2.90e+00 0.006940 0 16:71054116-16:72935146
3151 16 71481500 71496998 ZNF23 brain_hippocampus -1.51e+00 0.000349 0 16:71054116-16:72935146
3168 16 72097123 72111145 HPR brain_hippocampus 1.43e-01 0.000322 0 16:71054116-16:72935146
3169 16 72097123 72111145 HPR brain_frontal_cortex_ba9 1.30e-01 0.000321 0 16:71054116-16:72935146
3170 16 72097123 72111145 HPR brain_cerebellar_hemisphere 1.68e-01 0.000320 0 16:71054116-16:72935146
3171 16 72097123 72111145 HPR brain_cerebellum 1.12e-01 0.000320 0 16:71054116-16:72935146
3100 16 71678654 71758604 PHLPP2 brain_cerebellum 4.73e-01 0.010100 0 16:71054116-16:72935146
3107 16 71660064 71676017 MARVELD3 thyroid 7.87e-01 0.003170 0 16:71054116-16:72935146
3191 16 72088491 72094954 HP brain_putamen_basal_ganglia 4.64e-01 0.000261 0 16:71054116-16:72935146
3101 16 71657611 71660719 RP11-432I5.2 thyroid -3.45e+00 0.009760 0 16:71054116-16:72935146
3173 16 72097123 72111145 HPR brain_caudate_basal_ganglia 1.80e-01 0.000319 0 16:71054116-16:72935146
13353 16 72088491 72094954 HP psychencode 7.41e-01 0.000483 0 16:71054116-16:72935146
3177 16 72097123 72111145 HPR brain_putamen_basal_ganglia 2.60e-01 0.000315 0 16:71054116-16:72935146
3117 16 71660064 71676017 MARVELD3 brain_cerebellum -2.68e+00 0.001420 0 16:71054116-16:72935146
3102 16 71678654 71758604 PHLPP2 thyroid 5.27e-01 0.009360 0 16:71054116-16:72935146
3105 16 71678654 71758604 PHLPP2 adrenal_gland -7.52e-01 0.005180 0 16:71054116-16:72935146
3128 16 72042487 72058954 DHODH thyroid -2.94e+00 0.000586 0 16:71054116-16:72935146
3179 16 72097123 72111145 HPR brain_substantia_nigra 2.05e-01 0.000300 0 16:71054116-16:72935146
3129 16 71678654 71758604 PHLPP2 whole_blood -1.95e+00 0.000540 0 16:71054116-16:72935146
3127 16 72042487 72058954 DHODH brain_frontal_cortex_ba9 -1.40e+00 0.000591 0 16:71054116-16:72935146
13431 16 71963914 71965102 RP11-498D10.6 psychencode -8.15e-01 0.000233 0 16:71054116-16:72935146
3109 16 71660064 71676017 MARVELD3 brain_hypothalamus -3.79e+00 0.002380 0 16:71054116-16:72935146
3152 16 71678654 71758604 PHLPP2 brain_putamen_basal_ganglia -1.51e+00 0.000348 0 16:71054116-16:72935146
3196 16 73094144 73094368 RP11-346C20.4 brain_anterior_cingulate_cortex_ba24 -3.88e-01 0.000238 0 16:71054116-16:72935146
3157 16 71599563 71611033 TAT brain_cortex -1.40e+00 0.000338 0 16:71054116-16:72935146
3136 16 72042487 72058954 DHODH brain_hippocampus -1.88e+00 0.000432 0 16:71054116-16:72935146
3110 16 71660064 71676017 MARVELD3 brain_caudate_basal_ganglia -2.65e+00 0.002220 0 16:71054116-16:72935146
3181 16 71919136 71962913 IST1 brain_caudate_basal_ganglia -2.13e+00 0.000292 0 16:71054116-16:72935146
3183 16 71678654 71758604 PHLPP2 pituitary -1.67e+00 0.000291 0 16:71054116-16:72935146
3142 16 72042487 72058954 DHODH brain_cerebellum 5.05e-01 0.000415 0 16:71054116-16:72935146
3116 16 71678851 71749743 PHLPP2 cmc.brain.rnaseq -2.72e+00 0.001610 0 16:71054116-16:72935146
3122 16 71660055 71675868 MARVELD3 cmc.brain.rnaseq -3.18e+00 0.000882 0 16:71054116-16:72935146
3174 16 72097124 72111145 HPR cmc.brain.rnaseq -1.49e-03 0.000318 0 16:71054116-16:72935146
3158 16 72127461 72146811 DHX38 yfs.blood.rnaarr 6.44e-01 0.000336 0 16:71054116-16:72935146
3147 16 71678851 71749743 PHLPP2 cmc.brain.rnaseq_splicing -2.53e+00 0.000401 0 16:71054116-16:72935146
3238 16 75327596 75467383 CFDP1 brain_cerebellum 5.05e-01 0.000181 0 16:72935201-16:74971452
3239 16 75327596 75467383 CFDP1 brain_cortex 5.05e-01 0.000181 0 16:72935201-16:74971452
3216 16 75327607 75467387 CFDP1 cmc.brain.rnaseq_splicing 1.08e+00 0.000283 0 16:72935201-16:74971452
3207 16 74655292 74700779 RFWD3 brain_hippocampus 1.26e+00 0.000347 0 16:72935201-16:74971452
12573 16 74705753 74734858 MLKL psychencode 4.49e-01 0.000176 0 16:72935201-16:74971452
3227 16 75413716 75415158 RP11-252K23.2 adrenal_gland 8.25e-01 0.000222 0 16:72935201-16:74971452
3232 16 74705753 74734858 MLKL yfs.blood.rnaarr -6.47e-01 0.000198 0 16:72935201-16:74971452
3203 16 74339100 74369244 AC009120.6 brain_cortex -1.60e+00 0.000558 0 16:72935201-16:74971452
3222 16 75145758 75150669 LDHD thyroid 9.63e-01 0.000252 0 16:72935201-16:74971452
3208 16 74655292 74700779 RFWD3 brain_caudate_basal_ganglia 1.22e+00 0.000329 0 16:72935201-16:74971452
3261 16 75413716 75415158 RP11-252K23.2 brain_hippocampus -5.01e-02 0.000160 0 16:72935201-16:74971452
3221 16 74481325 74483790 RP11-252A24.7 brain_hippocampus 9.73e-01 0.000253 0 16:72935201-16:74971452
12543 16 75145758 75150669 LDHD psychencode -6.45e-01 0.000195 0 16:72935201-16:74971452
3202 16 75182390 75206134 ZFP1 brain_caudate_basal_ganglia 1.65e+00 0.000603 0 16:72935201-16:74971452
3212 16 75182390 75206134 ZFP1 brain_anterior_cingulate_cortex_ba24 -1.10e+00 0.000287 0 16:72935201-16:74971452
3210 16 75327596 75467383 CFDP1 yfs.blood.rnaarr 1.18e+00 0.000316 0 16:72935201-16:74971452
3231 16 74481325 74483790 RP11-252A24.7 brain_caudate_basal_ganglia -7.31e-01 0.000207 0 16:72935201-16:74971452
3244 16 74655292 74700779 RFWD3 thyroid 3.12e-01 0.000168 0 16:72935201-16:74971452
3217 16 75182390 75206134 ZFP1 brain_nucleus_accumbens_basal_ganglia 1.07e+00 0.000277 0 16:72935201-16:74971452
3248 16 72816784 73093597 ZFHX3 yfs.blood.rnaarr 2.75e-01 0.000165 0 16:72935201-16:74971452
3250 16 75032914 75144892 ZNRF1 cmc.brain.rnaseq 2.30e-01 0.000164 0 16:72935201-16:74971452
3245 16 75182390 75206134 ZFP1 brain_hippocampus 2.77e-01 0.000166 0 16:72935201-16:74971452
3213 16 74655292 74700779 RFWD3 brain_cortex 1.10e+00 0.000287 0 16:72935201-16:74971452
3220 16 74339100 74369244 AC009120.6 brain_caudate_basal_ganglia -1.02e+00 0.000264 0 16:72935201-16:74971452
3234 16 74442529 74455290 CLEC18B brain_cerebellar_hemisphere -5.78e-01 0.000187 0 16:72935201-16:74971452
3235 16 75262928 75301951 BCAR1 whole_blood -5.75e-01 0.000187 0 16:72935201-16:74971452
13393 16 74481325 74483790 RP11-252A24.7 psychencode -6.98e-01 0.000203 0 16:72935201-16:74971452
3243 16 74339100 74369244 AC009120.6 brain_anterior_cingulate_cortex_ba24 -3.29e-01 0.000169 0 16:72935201-16:74971452
3246 16 74907468 75034071 WDR59 brain_cerebellum 2.76e-01 0.000166 0 16:72935201-16:74971452
3215 16 74655292 74700779 RFWD3 brain_amygdala 1.09e+00 0.000283 0 16:72935201-16:74971452
3228 16 75182390 75206134 ZFP1 brain_cerebellum 8.23e-01 0.000222 0 16:72935201-16:74971452
3252 16 74655292 74700779 RFWD3 yfs.blood.rnaarr -1.55e-01 0.000163 0 16:72935201-16:74971452
3205 16 74485856 74641012 GLG1 yfs.blood.rnaarr -1.38e+00 0.000402 0 16:72935201-16:74971452
3219 16 74485856 74641012 GLG1 thyroid -1.04e+00 0.000275 0 16:72935201-16:74971452
3258 16 74746853 74808729 FA2H thyroid 8.27e-02 0.000160 0 16:72935201-16:74971452
3253 16 74655292 74700779 RFWD3 whole_blood 1.39e-01 0.000162 0 16:72935201-16:74971452
3224 16 74485856 74641012 GLG1 whole_blood -9.39e-01 0.000244 0 16:72935201-16:74971452
3240 16 74485856 74641012 GLG1 brain_cortex 4.46e-01 0.000176 0 16:72935201-16:74971452
12285 16 74442529 74455368 CLEC18B psychencode -3.40e-01 0.000169 0 16:72935201-16:74971452
3226 16 74876485 74877781 RP11-787D11.1 thyroid 8.21e-01 0.000222 0 16:72935201-16:74971452
13386 16 74339100 74369244 AC009120.6 psychencode -1.26e+00 0.000345 0 16:72935201-16:74971452
13412 16 74088050 74330660 AC009120.4 psychencode 6.02e-01 0.000191 0 16:72935201-16:74971452
13197 16 74346507 74347288 AC009120.3 psychencode -8.66e-01 0.000230 0 16:72935201-16:74971452
3204 16 74456018 74469152 RP11-252A24.5 brain_cerebellum -1.49e+00 0.000475 0 16:72935201-16:74971452
13005 16 74366300 74402138 RP11-252A24.2 psychencode -4.28e-01 0.000175 0 16:72935201-16:74971452
13384 16 72823142 72825522 RP5-991G20.4 psychencode 1.08e-01 0.000160 0 16:72935201-16:74971452
3255 16 74366303 74402153 LOC283922 cmc.brain.rnaseq -2.83e-02 0.000161 0 16:72935201-16:74971452
3223 16 74366512 74394757 RP11-252A24.2 thyroid 9.27e-01 0.000249 0 16:72935201-16:74971452
3201 16 74401360 74403724 RP11-252A24.3 brain_caudate_basal_ganglia -1.95e+00 0.001010 0 16:72935201-16:74971452
3229 16 75182390 75206134 ZFP1 brain_hypothalamus 7.94e-01 0.000217 0 16:72935201-16:74971452
3200 16 74330673 74340186 PSMD7 yfs.blood.rnaarr 2.40e+00 0.002650 0 16:72935201-16:74971452
13502 16 73094144 73094658 RP11-346C20.4 psychencode 3.38e-01 0.000168 0 16:72935201-16:74971452
3256 16 74655292 74700779 RFWD3 pituitary 3.43e-02 0.000160 0 16:72935201-16:74971452
3249 16 73094144 73094368 RP11-346C20.4 brain_anterior_cingulate_cortex_ba24 -2.66e-01 0.000165 0 16:72935201-16:74971452
3233 16 75145758 75150669 LDHD whole_blood 6.20e-01 0.000192 0 16:72935201-16:74971452
11764 16 74485856 74641012 GLG1 psychencode -1.68e+00 0.000626 0 16:72935201-16:74971452
3251 16 73094659 73096215 RP11-346C20.3 brain_substantia_nigra -2.18e-01 0.000163 0 16:72935201-16:74971452
3237 16 75182390 75206134 ZFP1 brain_cortex 5.30e-01 0.000183 0 16:72935201-16:74971452
3241 16 75182390 75206134 ZFP1 yfs.blood.rnaarr 4.04e-01 0.000173 0 16:72935201-16:74971452
3257 16 74655292 74700779 RFWD3 brain_nucleus_accumbens_basal_ganglia 1.21e-03 0.000160 0 16:72935201-16:74971452
3209 16 74481325 74641042 GLG1 cmc.brain.rnaseq -1.21e+00 0.000325 0 16:72935201-16:74971452
3218 16 74655292 74700779 RFWD3 brain_cerebellar_hemisphere 1.06e+00 0.000276 0 16:72935201-16:74971452
3247 16 74401360 74403724 RP11-252A24.3 thyroid 1.83e-01 0.000166 0 16:72935201-16:74971452
3260 16 74401360 74403724 RP11-252A24.3 pituitary 1.01e-02 0.000160 0 16:72935201-16:74971452
3206 16 74655292 74700779 RFWD3 brain_cerebellum 1.35e+00 0.000387 0 16:72935201-16:74971452
13399 16 74401360 74403724 RP11-252A24.3 psychencode -1.07e+00 0.000278 0 16:72935201-16:74971452
3259 16 74705753 74734858 MLKL thyroid -5.03e-02 0.000160 0 16:72935201-16:74971452
12574 16 74655292 74700779 RFWD3 psychencode 1.97e-01 0.000163 0 16:72935201-16:74971452
3211 16 74655296 74700779 RFWD3 cmc.brain.rnaseq 1.16e+00 0.000308 0 16:72935201-16:74971452
3225 16 74655292 74700779 RFWD3 brain_putamen_basal_ganglia 8.98e-01 0.000236 0 16:72935201-16:74971452
3236 16 74655292 74700779 RFWD3 adrenal_gland 5.44e-01 0.000185 0 16:72935201-16:74971452
3263 16 74705753 74734858 MLKL whole_blood -9.53e-03 0.000160 0 16:72935201-16:74971452
3230 16 74655296 74700892 RFWD3 ntr.blood.rnaarr 7.51e-01 0.000215 0 16:72935201-16:74971452
3262 16 74907468 75034071 WDR59 yfs.blood.rnaarr 8.07e-02 0.000160 0 16:72935201-16:74971452
3242 16 74701404 74702604 RP11-144N1.1 pituitary 4.01e-01 0.000172 0 16:72935201-16:74971452
3214 16 74705753 74734858 MLKL adrenal_gland 1.08e+00 0.000285 0 16:72935201-16:74971452
3254 16 74705752 74710949 MLKL ntr.blood.rnaarr -1.35e-01 0.000162 0 16:72935201-16:74971452
3423 17 27717482 27878922 TAOK1 brain_hypothalamus 2.36e+00 0.000315 0 17:27334244-17:29786491
3295 17 27401933 27405875 TIAF1 thyroid -3.43e+00 0.001440 0 17:27334244-17:29786491
3478 17 27887718 27894155 ABHD15 brain_cerebellum -3.50e-01 0.000252 0 17:27334244-17:29786491
3481 17 27900487 27921072 GIT1 thyroid -4.58e-02 0.000250 0 17:27334244-17:29786491
3360 17 27582854 27621136 NUFIP2 yfs.blood.rnaarr -8.26e-01 0.000442 0 17:27334244-17:29786491
3489 17 27717482 27878922 TAOK1 thyroid 1.57e-01 0.000247 0 17:27334244-17:29786491
3491 17 27900486 27916610 GIT1 cmc.brain.rnaseq_splicing -1.75e-01 0.000247 0 17:27334244-17:29786491
3417 17 27900487 27921072 GIT1 whole_blood -2.89e-01 0.000328 0 17:27334244-17:29786491
3479 17 27948635 27949272 RP11-68I3.10 thyroid -2.79e-01 0.000251 0 17:27334244-17:29786491
3371 17 28395650 28396649 RP11-1148O4.1 brain_cerebellum 1.47e+00 0.000413 0 17:27334244-17:29786491
11903 17 27582854 27621136 NUFIP2 psychencode -3.92e-01 0.000964 0 17:27334244-17:29786491
3300 17 27401933 27405875 TIAF1 brain_cortex -2.63e+00 0.001200 0 17:27334244-17:29786491
3454 17 28256218 28435470 EFCAB5 brain_cerebellum 8.41e-01 0.000274 0 17:27334244-17:29786491
3309 17 27717942 27878921 TAOK1 cmc.brain.rnaseq -2.17e+00 0.000759 0 17:27334244-17:29786491
3450 17 27952955 28257246 SSH2 ntr.blood.rnaarr 8.20e-01 0.000278 0 17:27334244-17:29786491
3313 17 27401933 27405875 TIAF1 brain_putamen_basal_ganglia -3.13e+00 0.000678 0 17:27334244-17:29786491
13443 17 28395650 28396649 RP11-1148O4.1 psychencode 1.12e+00 0.000296 0 17:27334244-17:29786491
12564 17 27941774 27949925 CORO6 psychencode -1.42e+00 0.000291 0 17:27334244-17:29786491
3469 17 27893070 27900175 TP53I13 thyroid -4.69e-02 0.000262 0 17:27334244-17:29786491
3494 17 28256218 28435470 EFCAB5 brain_cortex 5.52e-01 0.000246 0 17:27334244-17:29786491
3476 17 28521337 28563020 SLC6A4 adrenal_gland -7.12e-01 0.000254 0 17:27334244-17:29786491
3342 17 27401933 27405875 TIAF1 whole_blood -2.80e+00 0.000480 0 17:27334244-17:29786491
3374 17 28442539 28513493 NSRP1 brain_cerebellum 1.51e+00 0.000402 0 17:27334244-17:29786491
3289 17 27401933 27405875 TIAF1 brain_anterior_cingulate_cortex_ba24 -3.63e+00 0.001530 0 17:27334244-17:29786491
3270 17 27030215 27038872 PROCA1 brain_cerebellar_hemisphere -4.23e+00 0.015000 1 17:27334244-17:29786491
3294 17 27895738 27900175 TP53I13 cmc.brain.rnaseq 1.55e+00 0.001440 0 17:27334244-17:29786491
3318 17 27224798 27230089 DHRS13 cmc.brain.rnaseq -2.43e+00 0.000615 0 17:27334244-17:29786491
3381 17 27952956 28257294 SSH2 yfs.blood.rnaarr 1.47e+00 0.000383 0 17:27334244-17:29786491
3444 17 27952956 28257294 SSH2 whole_blood 1.05e+00 0.000282 0 17:27334244-17:29786491
11717 17 26904588 26926297 SPAG5 psychencode -7.42e-01 0.000493 0 17:27334244-17:29786491
3301 17 27401933 27405875 TIAF1 brain_nucleus_accumbens_basal_ganglia -3.51e+00 0.001180 0 17:27334244-17:29786491
3498 17 27887565 27894155 ABHD15 yfs.blood.rnaarr 1.12e-01 0.000243 0 17:27334244-17:29786491
3285 17 27041299 27045447 RAB34 adrenal_gland 1.32e+00 0.001720 1 17:27334244-17:29786491
3365 17 27400527 27507407 MYO18A cmc.brain.rnaseq_splicing -2.41e+00 0.000433 0 17:27334244-17:29786491
3283 17 26904592 26925653 SPAG5 thyroid -2.17e+00 0.001860 1 17:27334244-17:29786491
3296 17 27401933 27405875 TIAF1 brain_caudate_basal_ganglia -3.60e+00 0.001410 0 17:27334244-17:29786491
12563 17 27224799 27230089 DHRS13 psychencode 8.09e-01 0.000252 0 17:27334244-17:29786491
3308 17 27041299 27045447 RAB34 brain_cerebellum 1.94e+00 0.000773 0 17:27334244-17:29786491
3328 17 28395650 28396649 RP11-1148O4.1 thyroid 1.34e+00 0.000528 0 17:27334244-17:29786491
3278 17 27030215 27038872 PROCA1 brain_anterior_cingulate_cortex_ba24 -1.24e+00 0.002040 1 17:27334244-17:29786491
3275 17 27887688 27894042 ABHD15 cmc.brain.rnaseq -1.04e+00 0.004200 1 17:27334244-17:29786491
3311 17 27030215 27038872 PROCA1 adrenal_gland 2.11e+00 0.000710 0 17:27334244-17:29786491
3357 17 29224354 29233838 TEFM adrenal_gland 1.66e+00 0.000452 0 17:27334244-17:29786491
12670 17 27530441 27531492 TWF1P1 psychencode 1.73e+00 0.000754 0 17:27334244-17:29786491
3321 17 28705941 28796675 CPD cmc.brain.rnaseq 1.96e+00 0.000587 0 17:27334244-17:29786491
3271 17 27030215 27038872 PROCA1 brain_nucleus_accumbens_basal_ganglia -3.81e+00 0.012600 1 17:27334244-17:29786491
3350 17 29335515 29420145 RP11-848P1.9 thyroid 1.19e+00 0.000461 0 17:27334244-17:29786491
3363 17 27041299 27045447 RAB34 yfs.blood.rnaarr 1.30e-01 0.000438 0 17:27334244-17:29786491
13038 17 27400537 27418537 TIAF1 psychencode -1.39e+00 0.002160 1 17:27334244-17:29786491
3495 17 29158988 29222887 ATAD5 pituitary -4.26e-01 0.000246 0 17:27334244-17:29786491
3361 17 29190939 29191958 RP13-753N3.1 brain_putamen_basal_ganglia -1.92e+00 0.000441 0 17:27334244-17:29786491
3279 17 27400538 27467407 MYO18A ntr.blood.rnaarr 1.84e+00 0.002040 1 17:27334244-17:29786491
3467 17 27941780 27949925 CORO6 thyroid -3.91e-01 0.000264 0 17:27334244-17:29786491
3470 17 27573881 27581512 CRYBA1 brain_cerebellar_hemisphere -6.09e-01 0.000260 0 17:27334244-17:29786491
3280 17 27400527 27507407 MYO18A cmc.brain.rnaseq_splicing 3.66e+00 0.001920 1 17:27334244-17:29786491
3394 17 27030215 27038872 PROCA1 thyroid -1.63e+00 0.000361 0 17:27334244-17:29786491
3419 17 30187923 30228784 UTP6 thyroid -1.11e+00 0.000318 0 17:27334244-17:29786491
3369 17 29190939 29191958 RP13-753N3.1 thyroid -1.70e+00 0.000420 0 17:27334244-17:29786491
3339 17 29295803 29326929 RNF135 brain_cortex -1.78e+00 0.000486 0 17:27334244-17:29786491
3304 17 27052915 27070473 NEK8 pituitary -2.57e+00 0.000891 0 17:27334244-17:29786491
3287 17 27401933 27405875 TIAF1 brain_frontal_cortex_ba9 -3.65e+00 0.001640 0 17:27334244-17:29786491
12909 17 27046411 27051377 RPL23A psychencode 1.66e+00 0.000358 0 17:27334244-17:29786491
3415 17 29421945 29709134 NF1 brain_nucleus_accumbens_basal_ganglia 1.44e+00 0.000330 0 17:27334244-17:29786491
12649 17 29158988 29222887 ATAD5 psychencode -1.27e-01 0.000235 0 17:27334244-17:29786491
3276 17 27206353 27224697 FLOT2 brain_cerebellar_hemisphere 1.93e+00 0.002570 1 17:27334244-17:29786491
3297 17 26928845 26929302 RP11-192H23.8 brain_cortex -1.06e+00 0.001370 0 17:27334244-17:29786491
3291 17 27400527 27507407 MYO18A cmc.brain.rnaseq_splicing 3.61e+00 0.001470 0 17:27334244-17:29786491
11905 17 28575218 28619074 BLMH psychencode -8.56e-01 0.000729 0 17:27334244-17:29786491
3330 17 27941780 27949925 CORO6 brain_cortex -4.97e-01 0.000525 0 17:27334244-17:29786491
3434 17 28575218 28619060 BLMH whole_blood 1.12e+00 0.000298 0 17:27334244-17:29786491
3461 17 27893070 27900175 TP53I13 whole_blood -2.12e-01 0.000271 0 17:27334244-17:29786491
3352 17 28804380 28854610 GOSR1 brain_frontal_cortex_ba9 -1.55e+00 0.000457 0 17:27334244-17:29786491
12614 17 29224354 29233838 TEFM psychencode 1.66e+00 0.000387 0 17:27334244-17:29786491
3452 17 29119390 29119851 CTD-2349P21.9 brain_cortex -7.81e-01 0.000277 0 17:27334244-17:29786491
3380 17 28705923 28797007 CPD yfs.blood.rnaarr -5.86e-01 0.000385 0 17:27334244-17:29786491
3504 17 28705948 28795699 CPD ntr.blood.rnaarr 4.13e-01 0.000240 0 17:27334244-17:29786491
3288 17 27941780 27949925 CORO6 whole_blood -1.57e+00 0.001580 0 17:27334244-17:29786491
3428 17 29421945 29709134 NF1 brain_amygdala 1.07e+00 0.000307 0 17:27334244-17:29786491
3455 17 29421945 29709134 NF1 brain_caudate_basal_ganglia 9.68e-01 0.000274 0 17:27334244-17:29786491
3472 17 28804380 28854610 GOSR1 brain_cerebellar_hemisphere 4.15e-01 0.000258 0 17:27334244-17:29786491
12652 17 29096406 29151794 CRLF3 psychencode 1.53e+00 0.000369 0 17:27334244-17:29786491
3272 17 27030215 27038872 PROCA1 brain_putamen_basal_ganglia -3.66e+00 0.007540 1 17:27334244-17:29786491
12581 17 27887565 27894155 ABHD15 psychencode 3.33e-01 0.000271 0 17:27334244-17:29786491
3364 17 28804425 28853832 GOSR1 cmc.brain.rnaseq_splicing -1.72e+00 0.000435 0 17:27334244-17:29786491
3320 17 28804380 28854610 GOSR1 brain_anterior_cingulate_cortex_ba24 -1.74e+00 0.000599 0 17:27334244-17:29786491
3441 17 27887718 27894155 ABHD15 brain_nucleus_accumbens_basal_ganglia 2.00e-01 0.000283 0 17:27334244-17:29786491
11906 17 28705923 28797007 CPD psychencode 1.96e+00 0.000583 0 17:27334244-17:29786491
3502 17 29119390 29119851 CTD-2349P21.9 brain_hippocampus -2.68e-01 0.000241 0 17:27334244-17:29786491
3268 17 27401933 27405875 TIAF1 brain_amygdala -4.40e+00 0.021000 1 17:27334244-17:29786491
3503 17 28256218 28435470 EFCAB5 thyroid -9.00e-02 0.000241 0 17:27334244-17:29786491
3307 17 28804380 28854610 GOSR1 brain_putamen_basal_ganglia -1.87e+00 0.000775 0 17:27334244-17:29786491
3356 17 28442539 28513493 NSRP1 brain_cerebellar_hemisphere 1.64e+00 0.000454 0 17:27334244-17:29786491
3332 17 28804380 28854610 GOSR1 thyroid -1.81e+00 0.000523 0 17:27334244-17:29786491
11751 17 26880401 26898890 PIGS psychencode -1.59e+00 0.000320 0 17:27334244-17:29786491
3506 17 28927814 28942998 SMURF2P1 brain_cerebellum -8.44e-02 0.000238 0 17:27334244-17:29786491
3509 17 28927814 28942998 SMURF2P1 brain_hippocampus 2.44e-01 0.000236 0 17:27334244-17:29786491
3493 17 28956698 28964482 LRRC37BP1 thyroid -7.90e-01 0.000246 0 17:27334244-17:29786491
3505 17 28956698 28964482 LRRC37BP1 pituitary -5.15e-01 0.000239 0 17:27334244-17:29786491
3416 17 28256218 28435470 EFCAB5 brain_anterior_cingulate_cortex_ba24 1.35e+00 0.000329 0 17:27334244-17:29786491
3510 17 28927814 28942998 SMURF2P1 thyroid -9.10e-02 0.000236 0 17:27334244-17:29786491
3402 17 29158988 29222887 ATAD5 thyroid -1.40e+00 0.000349 0 17:27334244-17:29786491
3265 17 27400528 27507430 MYO18A adrenal_gland -4.89e+00 0.197000 1 17:27334244-17:29786491
3396 17 29158988 29222887 ATAD5 brain_nucleus_accumbens_basal_ganglia -1.56e+00 0.000360 0 17:27334244-17:29786491
3487 17 29421945 29709134 NF1 thyroid 6.47e-01 0.000247 0 17:27334244-17:29786491
3327 17 28804380 28854610 GOSR1 pituitary -1.68e+00 0.000533 0 17:27334244-17:29786491
3507 17 28956698 28964482 LRRC37BP1 whole_blood -5.34e-02 0.000237 0 17:27334244-17:29786491
3430 17 28256218 28435470 EFCAB5 brain_cerebellar_hemisphere 9.73e-01 0.000304 0 17:27334244-17:29786491
12676 17 30264037 30328064 SUZ12 psychencode -1.07e+00 0.000319 0 17:27334244-17:29786491
3290 17 29233362 29286340 ADAP2 yfs.blood.rnaarr -1.95e+00 0.001490 0 17:27334244-17:29786491
3445 17 26925808 26944393 SPAG5-AS1 thyroid 5.55e-01 0.000282 0 17:27334244-17:29786491
3447 17 30264037 30328064 SUZ12 pituitary 7.57e-01 0.000280 0 17:27334244-17:29786491
3432 17 26941458 26972472 KIAA0100 whole_blood -3.09e-01 0.000300 0 17:27334244-17:29786491
3511 17 28956698 28964482 LRRC37BP1 brain_cerebellum -8.15e-02 0.000235 0 17:27334244-17:29786491
3393 17 29036317 29117926 SUZ12P brain_cerebellar_hemisphere 1.54e+00 0.000362 0 17:27334244-17:29786491
3366 17 30187923 30228784 UTP6 yfs.blood.rnaarr -1.38e+00 0.000432 0 17:27334244-17:29786491
3302 17 28951335 28953825 SH3GL1P2 cmc.brain.rnaseq -1.65e+00 0.000979 0 17:27334244-17:29786491
3326 17 29298670 29300330 RP11-848P1.2 thyroid -1.48e+00 0.000542 0 17:27334244-17:29786491
13437 17 29053323 29054582 CTD-2349P21.6 psychencode 1.52e+00 0.000342 0 17:27334244-17:29786491
13270 17 28956698 28964482 LRRC37BP1 psychencode 2.04e+00 0.000633 0 17:27334244-17:29786491
12870 17 29421945 29709134 NF1 psychencode -1.12e+00 0.000652 0 17:27334244-17:29786491
12442 17 27051366 27054953 TLCD1 psychencode 1.60e+00 0.000420 0 17:27334244-17:29786491
3421 17 29644578 29648902 EVI2A whole_blood -1.25e+00 0.000316 0 17:27334244-17:29786491
3267 17 27401933 27405875 TIAF1 brain_hippocampus -4.57e+00 0.042500 1 17:27334244-17:29786491
3370 17 29224354 29233838 TEFM thyroid 1.32e+00 0.000414 0 17:27334244-17:29786491
3335 17 28442539 28513493 NSRP1 whole_blood -1.85e+00 0.000501 0 17:27334244-17:29786491
3367 17 28804380 28854610 GOSR1 brain_substantia_nigra -1.10e+00 0.000431 0 17:27334244-17:29786491
3436 17 29056487 29058220 CTD-2349P21.5 brain_hypothalamus 1.36e+00 0.000296 0 17:27334244-17:29786491
3403 17 29190939 29191958 RP13-753N3.1 brain_hypothalamus -1.51e+00 0.000349 0 17:27334244-17:29786491
3453 17 29056487 29058220 CTD-2349P21.5 brain_caudate_basal_ganglia 1.03e+00 0.000275 0 17:27334244-17:29786491
13441 17 29460200 29465536 RP11-142O6.1 psychencode 2.64e-01 0.000243 0 17:27334244-17:29786491
3375 17 28804380 28854610 GOSR1 brain_cerebellum -1.40e+00 0.000399 0 17:27334244-17:29786491
13434 17 29056487 29058220 CTD-2349P21.5 psychencode 1.16e+00 0.000285 0 17:27334244-17:29786491
13436 17 28951431 28952512 SH3GL1P2 psychencode -8.28e-01 0.000336 0 17:27334244-17:29786491
3486 17 28575218 28619074 BLMH yfs.blood.rnaarr 7.51e-01 0.000248 0 17:27334244-17:29786491
3317 17 29036317 29117926 SUZ12P brain_amygdala 1.98e+00 0.000648 0 17:27334244-17:29786491
3305 17 29096406 29151794 CRLF3 brain_anterior_cingulate_cortex_ba24 2.23e+00 0.000864 0 17:27334244-17:29786491
3376 17 29224354 29233838 TEFM brain_frontal_cortex_ba9 1.62e+00 0.000397 0 17:27334244-17:29786491
3377 17 29224354 29233838 TEFM brain_cerebellar_hemisphere 1.59e+00 0.000397 0 17:27334244-17:29786491
3325 17 29036317 29117926 SUZ12P brain_substantia_nigra 1.77e+00 0.000548 0 17:27334244-17:29786491
3314 17 28804380 28854610 GOSR1 brain_nucleus_accumbens_basal_ganglia -1.75e+00 0.000666 0 17:27334244-17:29786491
3475 17 29421944 29704695 NF1 cmc.brain.rnaseq -1.85e-01 0.000254 0 17:27334244-17:29786491
3354 17 28900490 28903481 AC006050.2 brain_amygdala -1.80e+00 0.000456 0 17:27334244-17:29786491
3312 17 29096406 29151794 CRLF3 thyroid 2.07e+00 0.000698 0 17:27334244-17:29786491
3323 17 29096406 29151794 CRLF3 pituitary 1.78e+00 0.000570 0 17:27334244-17:29786491
3406 17 29248698 29286340 ADAP2 brain_cerebellum -1.55e+00 0.000343 0 17:27334244-17:29786491
3399 17 29224354 29233838 TEFM brain_nucleus_accumbens_basal_ganglia 1.55e+00 0.000356 0 17:27334244-17:29786491
3284 17 27401933 27405875 TIAF1 brain_cerebellum -3.69e+00 0.001780 1 17:27334244-17:29786491
3333 17 29096406 29151794 CRLF3 brain_cerebellum 1.59e+00 0.000520 0 17:27334244-17:29786491
3344 17 28804380 28854610 GOSR1 brain_cortex -1.59e+00 0.000477 0 17:27334244-17:29786491
3355 17 29224354 29233838 TEFM brain_cortex 1.65e+00 0.000456 0 17:27334244-17:29786491
3382 17 29036317 29117926 SUZ12P brain_cortex 1.51e+00 0.000383 0 17:27334244-17:29786491
3449 17 29036317 29117926 SUZ12P brain_anterior_cingulate_cortex_ba24 1.18e+00 0.000279 0 17:27334244-17:29786491
3378 17 28900490 28903481 AC006050.2 brain_nucleus_accumbens_basal_ganglia -1.64e+00 0.000388 0 17:27334244-17:29786491
3401 17 29224354 29233838 TEFM brain_putamen_basal_ganglia 1.53e+00 0.000353 0 17:27334244-17:29786491
3480 17 28804425 28853832 GOSR1 cmc.brain.rnaseq -5.61e-01 0.000250 0 17:27334244-17:29786491
3404 17 29224354 29233838 TEFM brain_anterior_cingulate_cortex_ba24 1.51e+00 0.000349 0 17:27334244-17:29786491
12143 17 29599031 29624557 OMG psychencode -1.69e+00 0.000712 0 17:27334244-17:29786491
3425 17 29644578 29648902 EVI2A thyroid -1.16e+00 0.000313 0 17:27334244-17:29786491
3484 17 28956698 28964482 LRRC37BP1 brain_substantia_nigra 9.19e-01 0.000248 0 17:27334244-17:29786491
12142 17 29644578 29648902 EVI2A psychencode -9.81e-01 0.000272 0 17:27334244-17:29786491
3411 17 29718641 29865229 RAB11FIP4 ntr.blood.rnaarr -1.21e+00 0.000337 0 17:27334244-17:29786491
3384 17 29036317 29117926 SUZ12P whole_blood 1.49e+00 0.000380 0 17:27334244-17:29786491
3303 17 26900133 26904282 ALDOC yfs.blood.rnaarr -7.88e-01 0.000906 0 17:27334244-17:29786491
3282 17 29718642 29865236 RAB11FIP4 thyroid -2.23e+00 0.001890 1 17:27334244-17:29786491
3490 17 28927814 28942998 SMURF2P1 brain_substantia_nigra 5.22e-01 0.000247 0 17:27334244-17:29786491
3413 17 29119390 29119851 CTD-2349P21.9 brain_cerebellum 9.25e-01 0.000336 0 17:27334244-17:29786491
3315 17 29718642 29865236 RAB11FIP4 whole_blood -1.51e+00 0.000656 0 17:27334244-17:29786491
3508 17 29718642 29865236 RAB11FIP4 brain_cerebellum 2.63e-01 0.000236 0 17:27334244-17:29786491
3488 17 27895738 27900175 TP53I13 cmc.brain.rnaseq_splicing 8.97e-02 0.000247 0 17:27334244-17:29786491
11907 17 28804380 28854610 GOSR1 psychencode -1.70e+00 0.000539 0 17:27334244-17:29786491
3465 17 28804380 28854610 GOSR1 adrenal_gland -1.12e+00 0.000266 0 17:27334244-17:29786491
3319 17 28804380 28854610 GOSR1 brain_hypothalamus -1.60e+00 0.000606 0 17:27334244-17:29786491
3337 17 28956698 28964482 LRRC37BP1 brain_putamen_basal_ganglia 1.68e+00 0.000495 0 17:27334244-17:29786491
3362 17 29224354 29233838 TEFM brain_cerebellum 1.80e+00 0.000438 0 17:27334244-17:29786491
3299 17 27941780 27949925 CORO6 brain_cerebellar_hemisphere -1.41e+00 0.001300 0 17:27334244-17:29786491
3389 17 28900490 28903481 AC006050.2 brain_frontal_cortex_ba9 -1.50e+00 0.000370 0 17:27334244-17:29786491
3429 17 30178883 30186356 COPRS thyroid -1.08e+00 0.000304 0 17:27334244-17:29786491
3410 17 28900490 28903481 AC006050.2 brain_putamen_basal_ganglia -1.42e+00 0.000337 0 17:27334244-17:29786491
3438 17 29630784 29641130 EVI2B whole_blood -1.39e+00 0.000294 0 17:27334244-17:29786491
3439 17 28956698 28964482 LRRC37BP1 brain_cerebellar_hemisphere 8.41e-01 0.000293 0 17:27334244-17:29786491
3336 17 29096406 29151794 CRLF3 brain_cerebellar_hemisphere 1.85e+00 0.000500 0 17:27334244-17:29786491
3400 17 28575218 28619060 BLMH brain_cerebellum 1.52e+00 0.000355 0 17:27334244-17:29786491
3338 17 29096406 29151794 CRLF3 brain_cortex 1.79e+00 0.000494 0 17:27334244-17:29786491
3324 17 27206353 27224697 FLOT2 brain_cerebellum 1.11e+00 0.000565 0 17:27334244-17:29786491
3298 17 27401933 27405875 TIAF1 brain_hypothalamus -3.57e+00 0.001330 0 17:27334244-17:29786491
11718 17 27071002 27077974 TRAF4 psychencode -8.88e-01 0.000351 0 17:27334244-17:29786491
3348 17 28804380 28854610 GOSR1 whole_blood -1.75e+00 0.000463 0 17:27334244-17:29786491
3347 17 29096406 29151794 CRLF3 brain_nucleus_accumbens_basal_ganglia 1.63e+00 0.000470 0 17:27334244-17:29786491
3405 17 29036317 29117926 SUZ12P brain_hypothalamus 1.49e+00 0.000348 0 17:27334244-17:29786491
3483 17 29119390 29119851 CTD-2349P21.9 thyroid 5.17e-02 0.000249 0 17:27334244-17:29786491
3492 17 30178883 30186356 COPRS brain_cortex -4.47e-01 0.000247 0 17:27334244-17:29786491
3292 17 27400528 27507430 MYO18A thyroid 7.13e-02 0.001440 0 17:27334244-17:29786491
3427 17 29036317 29117926 SUZ12P brain_nucleus_accumbens_basal_ganglia 1.25e+00 0.000307 0 17:27334244-17:29786491
3512 17 30178883 30186356 COPRS adrenal_gland -1.81e-01 0.000235 0 17:27334244-17:29786491
3277 17 26975373 26989186 SDF2 ntr.blood.rnaarr -2.81e+00 0.002540 1 17:27334244-17:29786491
3349 17 29096406 29151794 CRLF3 brain_substantia_nigra 1.55e+00 0.000463 0 17:27334244-17:29786491
3368 17 28256218 28435470 EFCAB5 whole_blood 1.69e+00 0.000421 0 17:27334244-17:29786491
3286 17 29224354 29233838 TEFM pituitary 2.33e+00 0.001690 0 17:27334244-17:29786491
3408 17 29036317 29117926 SUZ12P brain_cerebellum 1.41e+00 0.000342 0 17:27334244-17:29786491
3351 17 29096406 29151794 CRLF3 brain_frontal_cortex_ba9 1.68e+00 0.000459 0 17:27334244-17:29786491
3346 17 29224354 29233838 TEFM brain_hypothalamus 1.95e+00 0.000474 0 17:27334244-17:29786491
3409 17 29224354 29233838 TEFM brain_hippocampus 1.43e+00 0.000339 0 17:27334244-17:29786491
3385 17 29036317 29117926 SUZ12P adrenal_gland 1.39e+00 0.000379 0 17:27334244-17:29786491
3388 17 28900490 28903481 AC006050.2 brain_cerebellar_hemisphere -1.49e+00 0.000373 0 17:27334244-17:29786491
3418 17 28900490 28903481 AC006050.2 brain_hypothalamus -1.31e+00 0.000326 0 17:27334244-17:29786491
3462 17 27582857 27621166 NUFIP2 ntr.blood.rnaarr -9.77e-01 0.000267 0 17:27334244-17:29786491
3466 17 27400528 27507430 MYO18A whole_blood 7.33e-01 0.000265 0 17:27334244-17:29786491
12182 17 27181956 27188085 ERAL1 psychencode 5.37e-01 0.000360 0 17:27334244-17:29786491
3459 17 29119390 29119851 CTD-2349P21.9 brain_frontal_cortex_ba9 4.26e-01 0.000271 0 17:27334244-17:29786491
3322 17 28804380 28854610 GOSR1 brain_caudate_basal_ganglia -1.68e+00 0.000574 0 17:27334244-17:29786491
3464 17 29096406 29151794 CRLF3 brain_caudate_basal_ganglia 7.68e-01 0.000267 0 17:27334244-17:29786491
3264 17 27401933 27405875 TIAF1 adrenal_gland -5.10e+00 0.524000 1 17:27334244-17:29786491
3422 17 29056487 29058220 CTD-2349P21.5 thyroid 1.31e+00 0.000315 0 17:27334244-17:29786491
3316 17 29224354 29233838 TEFM brain_caudate_basal_ganglia 2.08e+00 0.000653 0 17:27334244-17:29786491
11908 17 26873725 26879686 UNC119 psychencode 3.81e+00 0.015700 1 17:27334244-17:29786491
3457 17 28900490 28903481 AC006050.2 brain_anterior_cingulate_cortex_ba24 -1.13e+00 0.000273 0 17:27334244-17:29786491
3341 17 29224354 29233838 TEFM brain_substantia_nigra 1.70e+00 0.000485 0 17:27334244-17:29786491
3383 17 29096406 29151794 CRLF3 brain_hypothalamus 1.56e+00 0.000382 0 17:27334244-17:29786491
3443 17 29335515 29420145 RP11-848P1.9 brain_substantia_nigra 9.48e-01 0.000282 0 17:27334244-17:29786491
3414 17 27900487 27921072 GIT1 yfs.blood.rnaarr -9.81e-01 0.000332 0 17:27334244-17:29786491
3426 17 29036317 29117926 SUZ12P brain_putamen_basal_ganglia 1.29e+00 0.000308 0 17:27334244-17:29786491
3373 17 28903482 28964484 LRRC37BP1 cmc.brain.rnaseq 1.75e+00 0.000412 0 17:27334244-17:29786491
3433 17 27206353 27224697 FLOT2 thyroid 2.16e+00 0.000299 0 17:27334244-17:29786491
3448 17 29036317 29117926 SUZ12P brain_hippocampus 1.06e+00 0.000279 0 17:27334244-17:29786491
13009 17 28903482 28999807 AC005562.1 psychencode 4.12e-01 0.000263 0 17:27334244-17:29786491
3331 17 29056487 29058220 CTD-2349P21.5 brain_amygdala 1.98e+00 0.000524 0 17:27334244-17:29786491
3266 17 27030215 27038872 PROCA1 yfs.blood.rnaarr -4.84e+00 0.152000 1 17:27334244-17:29786491
3420 17 29036317 29117926 SUZ12P thyroid 1.33e+00 0.000316 0 17:27334244-17:29786491
3473 17 27952956 28257294 SSH2 thyroid 2.92e-01 0.000258 0 17:27334244-17:29786491
3424 17 29036317 29117926 SUZ12P pituitary 1.21e+00 0.000313 0 17:27334244-17:29786491
3458 17 29036317 29117926 SUZ12P brain_caudate_basal_ganglia 1.00e+00 0.000271 0 17:27334244-17:29786491
3359 17 27941780 27949925 CORO6 brain_putamen_basal_ganglia 2.10e+00 0.000449 0 17:27334244-17:29786491
3353 17 29190939 29191958 RP13-753N3.1 brain_substantia_nigra -1.77e+00 0.000457 0 17:27334244-17:29786491
3440 17 28956698 28964482 LRRC37BP1 brain_hippocampus 8.27e-01 0.000290 0 17:27334244-17:29786491
12289 17 27952956 28257294 SSH2 psychencode 4.82e-01 0.000252 0 17:27334244-17:29786491
3395 17 28891075 28892594 RP11-218M11.1 thyroid -1.48e+00 0.000361 0 17:27334244-17:29786491
3474 17 27952964 28257018 SSH2 cmc.brain.rnaseq 2.01e-01 0.000255 0 17:27334244-17:29786491
12656 17 28256218 28435470 EFCAB5 psychencode 1.07e+00 0.000310 0 17:27334244-17:29786491
3269 17 27030215 27038872 PROCA1 brain_amygdala -4.39e+00 0.020100 1 17:27334244-17:29786491
3499 17 29630784 29641130 EVI2B yfs.blood.rnaarr 9.20e-02 0.000243 0 17:27334244-17:29786491
3334 17 26880404 26898890 PIGS ntr.blood.rnaarr 1.21e+00 0.000504 0 17:27334244-17:29786491
3437 17 28891075 28892594 RP11-218M11.1 brain_cerebellar_hemisphere 8.08e-01 0.000295 0 17:27334244-17:29786491
13442 17 29119390 29119851 CTD-2349P21.9 psychencode -5.67e-01 0.000296 0 17:27334244-17:29786491
3387 17 29096406 29151794 CRLF3 brain_amygdala -7.00e-01 0.000376 0 17:27334244-17:29786491
3460 17 29643427 29648767 EVI2A cmc.brain.rnaseq_splicing -4.36e-01 0.000271 0 17:27334244-17:29786491
3281 17 27225902 27230089 DHRS13 brain_cerebellum -1.89e-01 0.001910 1 17:27334244-17:29786491
3293 17 27401933 27405875 TIAF1 brain_cerebellar_hemisphere -3.60e+00 0.001440 0 17:27334244-17:29786491
3431 17 29119390 29119851 CTD-2349P21.9 brain_cerebellar_hemisphere 7.66e-01 0.000302 0 17:27334244-17:29786491
3306 17 29295803 29326929 RNF135 whole_blood 1.59e+00 0.000864 0 17:27334244-17:29786491
3274 17 27030215 27038872 PROCA1 brain_cortex 1.97e+00 0.004700 1 17:27334244-17:29786491
3446 17 28927814 28942998 SMURF2P1 brain_cerebellar_hemisphere 7.57e-01 0.000281 0 17:27334244-17:29786491
3412 17 27941780 27949925 CORO6 brain_nucleus_accumbens_basal_ganglia -1.21e+00 0.000337 0 17:27334244-17:29786491
3407 17 29109701 29151778 CRLF3 cmc.brain.rnaseq 1.50e+00 0.000343 0 17:27334244-17:29786491
3500 17 28927814 28942998 SMURF2P1 brain_frontal_cortex_ba9 5.21e-01 0.000243 0 17:27334244-17:29786491
3345 17 29644578 29648902 EVI2A pituitary -1.38e+00 0.000476 0 17:27334244-17:29786491
3310 17 27971814 27972865 RP11-68I3.11 thyroid -6.44e-01 0.000722 0 17:27334244-17:29786491
11904 17 27900487 27921072 GIT1 psychencode -6.83e-01 0.000253 0 17:27334244-17:29786491
3343 17 28900490 28903481 AC006050.2 brain_hippocampus -1.81e+00 0.000477 0 17:27334244-17:29786491
3372 17 29056487 29058220 CTD-2349P21.5 pituitary 1.58e+00 0.000413 0 17:27334244-17:29786491
3397 17 29096406 29151794 CRLF3 whole_blood 1.47e+00 0.000358 0 17:27334244-17:29786491
3435 17 29109701 29151778 CRLF3 ntr.blood.rnaarr 1.20e+00 0.000298 0 17:27334244-17:29786491
3391 17 28268622 28435470 EFCAB5 cmc.brain.rnaseq 1.17e+00 0.000364 0 17:27334244-17:29786491
3485 17 29119390 29119851 CTD-2349P21.9 brain_hypothalamus -5.13e-01 0.000248 0 17:27334244-17:29786491
3442 17 28956698 28964482 LRRC37BP1 brain_frontal_cortex_ba9 1.28e+00 0.000283 0 17:27334244-17:29786491
3482 17 29119390 29119851 CTD-2349P21.9 brain_caudate_basal_ganglia -5.73e-01 0.000249 0 17:27334244-17:29786491
3456 17 28927814 28942998 SMURF2P1 pituitary 1.64e-01 0.000273 0 17:27334244-17:29786491
3386 17 29056487 29058220 CTD-2349P21.5 brain_anterior_cingulate_cortex_ba24 1.60e+00 0.000376 0 17:27334244-17:29786491
3379 17 29644578 29648902 EVI2A yfs.blood.rnaarr -1.49e+00 0.000387 0 17:27334244-17:29786491
3501 17 29119390 29119851 CTD-2349P21.9 brain_putamen_basal_ganglia -3.81e-01 0.000242 0 17:27334244-17:29786491
3358 17 28256218 28435470 EFCAB5 brain_hypothalamus 1.47e+00 0.000451 0 17:27334244-17:29786491
3497 17 27941780 27949925 CORO6 brain_cerebellum 3.11e-01 0.000244 0 17:27334244-17:29786491
3273 17 27206356 27224715 FLOT2 cmc.brain.rnaseq_splicing -3.99e+00 0.005100 1 17:27334244-17:29786491
3496 17 29119390 29119851 CTD-2349P21.9 brain_nucleus_accumbens_basal_ganglia -3.19e-01 0.000245 0 17:27334244-17:29786491
3390 17 29056487 29058220 CTD-2349P21.5 brain_cortex 1.54e+00 0.000368 0 17:27334244-17:29786491
3471 17 29036317 29117926 SUZ12P brain_frontal_cortex_ba9 9.10e-01 0.000259 0 17:27334244-17:29786491
3451 17 29096406 29151794 CRLF3 yfs.blood.rnaarr 1.09e+00 0.000278 0 17:27334244-17:29786491
13435 17 29036317 29117926 SUZ12P psychencode 1.25e+00 0.000309 0 17:27334244-17:29786491
3392 17 29056487 29058220 CTD-2349P21.5 brain_nucleus_accumbens_basal_ganglia 1.57e+00 0.000364 0 17:27334244-17:29786491
3398 17 29056487 29058220 CTD-2349P21.5 brain_cerebellum 1.47e+00 0.000357 0 17:27334244-17:29786491
3463 17 29119390 29119851 CTD-2349P21.9 brain_amygdala 2.30e-01 0.000267 0 17:27334244-17:29786491
3468 17 29119390 29119851 CTD-2349P21.9 brain_anterior_cingulate_cortex_ba24 4.16e-01 0.000263 0 17:27334244-17:29786491
3340 17 28900490 28903481 AC006050.2 brain_cortex -1.81e+00 0.000485 0 17:27334244-17:29786491
3477 17 29119390 29119851 CTD-2349P21.9 pituitary -8.58e-01 0.000253 0 17:27334244-17:29786491
3329 17 27030215 27038872 PROCA1 brain_cerebellum 4.54e-02 0.000528 0 17:27334244-17:29786491
3513 18 34409079 34805288 KIAA1328 cmc.brain.rnaseq_splicing 4.34e+00 0.403000 1 18:35075250-18:36365021
11841 18 34823010 35146000 CELF4 psychencode 3.77e+00 0.044000 0 18:35075250-18:36365021
3515 18 34814082 34816205 RP11-95O2.1 brain_hippocampus 3.88e+00 0.065400 0 18:35075250-18:36365021
3516 18 34826853 34827148 RP11-95O2.5 brain_putamen_basal_ganglia 3.67e+00 0.030000 0 18:35075250-18:36365021
3519 18 34826853 34827148 RP11-95O2.5 brain_caudate_basal_ganglia 2.11e+00 0.000610 0 18:35075250-18:36365021
3518 18 34409069 34812135 KIAA1328 yfs.blood.rnaarr 5.79e-01 0.000997 0 18:35075250-18:36365021
13455 18 34814082 34816205 RP11-95O2.1 psychencode -3.59e-01 0.000265 0 18:35075250-18:36365021
3517 18 34823007 35146000 CELF4 cmc.brain.rnaseq 3.55e+00 0.020900 0 18:35075250-18:36365021
3514 18 34823010 35146000 CELF4 brain_anterior_cingulate_cortex_ba24 4.13e+00 0.174000 1 18:35075250-18:36365021
3520 18 34823010 35146000 CELF4 thyroid -8.99e-02 0.000326 0 18:35075250-18:36365021
3521 18 37421138 37504804 RP11-636O21.1 brain_hypothalamus -1.90e+00 0.000912 0 18:36365883-18:37683573
3532 18 42792960 43263072 SLC14A2 adrenal_gland -5.97e-01 0.000325 0 18:39892648-18:42921854
3537 18 43304092 43332485 SLC14A1 brain_hypothalamus 2.11e-01 0.000232 0 18:39892648-18:42921854
3539 18 39535171 39667794 PIK3C3 brain_amygdala 2.01e-01 0.000228 0 18:39892648-18:42921854
3530 18 43304092 43332485 SLC14A1 thyroid 8.24e-01 0.000386 0 18:39892648-18:42921854
3540 18 39535171 39667794 PIK3C3 whole_blood 2.56e-01 0.000228 0 18:39892648-18:42921854
3527 18 43304091 43332485 SLC14A1 cmc.brain.rnaseq_splicing -1.38e+00 0.000570 0 18:39892648-18:42921854
3538 18 39739247 40271387 LINC00907 brain_cerebellum 2.61e-01 0.000230 0 18:39892648-18:42921854
3529 18 43304091 43332485 SLC14A1 ntr.blood.rnaarr 1.19e+00 0.000396 0 18:39892648-18:42921854
3528 18 39535171 39667794 PIK3C3 yfs.blood.rnaarr 1.35e+00 0.000530 0 18:39892648-18:42921854
3531 18 39535171 39667794 PIK3C3 brain_nucleus_accumbens_basal_ganglia -8.57e-01 0.000337 0 18:39892648-18:42921854
3536 18 39535171 39667794 PIK3C3 brain_anterior_cingulate_cortex_ba24 -9.71e-02 0.000241 0 18:39892648-18:42921854
3526 18 43304091 43332485 SLC14A1 cmc.brain.rnaseq -1.59e+00 0.000864 0 18:39892648-18:42921854
3534 18 39535198 39661446 PIK3C3 cmc.brain.rnaseq_splicing -8.42e-01 0.000276 0 18:39892648-18:42921854
13454 18 39739247 40271387 LINC00907 psychencode 3.12e-01 0.000328 0 18:39892648-18:42921854
3524 18 40323182 40695657 RIT2 cmc.brain.rnaseq 3.13e+00 0.004770 0 18:39892648-18:42921854
11722 18 39535171 39667794 PIK3C3 psychencode -6.34e-01 0.000320 0 18:39892648-18:42921854
3523 18 40847843 40857615 SYT4 brain_amygdala 3.97e+00 0.077200 0 18:39892648-18:42921854
3533 18 43304091 43332485 SLC14A1 cmc.brain.rnaseq_splicing 7.12e-01 0.000288 0 18:39892648-18:42921854
3535 18 43304091 43332485 SLC14A1 cmc.brain.rnaseq_splicing 3.67e-01 0.000248 0 18:39892648-18:42921854
12191 18 40847843 40857615 SYT4 psychencode 4.47e+00 0.599000 1 18:39892648-18:42921854
3522 18 40847856 40857615 SYT4 cmc.brain.rnaseq 4.04e+00 0.100000 0 18:39892648-18:42921854
13451 18 42256892 42259682 RP11-456K23.1 psychencode 2.49e+00 0.003390 0 18:39892648-18:42921854
3525 18 43304092 43332485 SLC14A1 brain_putamen_basal_ganglia 1.92e+00 0.001040 0 18:39892648-18:42921854
3559 18 47309869 47340330 ACAA2 brain_cerebellum -3.49e-01 0.000209 0 18:47731522-18:51061758
3555 18 48554764 48611415 SMAD4 thyroid -5.42e-01 0.000235 0 18:47731522-18:51061758
11737 18 48405419 48474691 ME2 psychencode -1.54e+00 0.000579 0 18:47731522-18:51061758
3551 18 48633124 48633416 RN7SL695P brain_substantia_nigra 8.24e-01 0.000279 0 18:47731522-18:51061758
13204 18 48633124 48633416 RN7SL695P psychencode 1.29e+00 0.000431 0 18:47731522-18:51061758
3558 18 48321489 48351754 MRO cmc.brain.rnaseq_splicing -3.57e-01 0.000209 0 18:47731522-18:51061758
3543 18 49866541 51062273 DCC cmc.brain.rnaseq 2.49e+00 0.001850 0 18:47731522-18:51061758
3557 18 48405436 48474260 ME2 ntr.blood.rnaarr 2.62e-01 0.000213 0 18:47731522-18:51061758
3554 18 47340393 47377429 SCARNA17 brain_hypothalamus -5.76e-01 0.000239 0 18:47731522-18:51061758
12560 18 47349183 47721463 MYO5B psychencode -4.90e-01 0.000241 0 18:47731522-18:51061758
3542 18 48700920 48744674 MEX3C thyroid -2.85e+00 0.007270 0 18:47731522-18:51061758
3545 18 47753563 47792892 CCDC11 thyroid 1.19e+00 0.000415 0 18:47731522-18:51061758
3560 18 47753563 47792892 CCDC11 brain_cerebellar_hemisphere 2.40e-01 0.000206 0 18:47731522-18:51061758
3546 18 48700920 48744674 MEX3C yfs.blood.rnaarr -1.28e+00 0.000408 0 18:47731522-18:51061758
3548 18 48700920 48744674 MEX3C adrenal_gland -9.68e-01 0.000321 0 18:47731522-18:51061758
3552 18 48494410 48611415 SMAD4 yfs.blood.rnaarr -8.29e-01 0.000274 0 18:47731522-18:51061758
3544 18 49866541 51062273 DCC cmc.brain.rnaseq_splicing 1.75e+00 0.000591 0 18:47731522-18:51061758
3547 18 47309869 47340330 ACAA2 brain_anterior_cingulate_cortex_ba24 -1.20e+00 0.000385 0 18:47731522-18:51061758
3550 18 47808713 47814674 CXXC1 yfs.blood.rnaarr -8.95e-01 0.000294 0 18:47731522-18:51061758
3566 18 47808713 47814674 CXXC1 adrenal_gland 5.43e-03 0.000202 0 18:47731522-18:51061758
12389 18 47808713 47814674 CXXC1 psychencode -9.72e-01 0.000313 0 18:47731522-18:51061758
12653 18 48700920 48744674 MEX3C psychencode -1.04e+00 0.000321 0 18:47731522-18:51061758
13082 18 48872619 49088939 RP11-267C16.1 psychencode 1.81e+00 0.000960 0 18:47731522-18:51061758
3561 18 47901365 47920543 SKA1 brain_cerebellum -1.95e-01 0.000204 0 18:47731522-18:51061758
3565 18 48321489 48351754 MRO cmc.brain.rnaseq_splicing -3.96e-02 0.000202 0 18:47731522-18:51061758
12290 18 48494361 48514491 ELAC1 psychencode -3.93e-01 0.000223 0 18:47731522-18:51061758
3563 18 48324574 48351772 MRO adrenal_gland -1.19e-01 0.000203 0 18:47731522-18:51061758
3556 18 48321489 48351754 MRO cmc.brain.rnaseq -4.51e-01 0.000231 0 18:47731522-18:51061758
12390 18 47901365 47920543 SKA1 psychencode -3.19e-01 0.000220 0 18:47731522-18:51061758
3549 18 48086483 48258196 MAPK4 cmc.brain.rnaseq_splicing -7.70e-01 0.000309 0 18:47731522-18:51061758
3564 18 48324574 48351772 MRO brain_hypothalamus -2.34e-02 0.000202 0 18:47731522-18:51061758
12815 18 49866542 51057784 DCC psychencode 2.49e+00 0.001850 0 18:47731522-18:51061758
12198 18 48324574 48351772 MRO psychencode -3.94e-01 0.000227 0 18:47731522-18:51061758
13439 18 48959807 48961153 RP11-267C16.2 psychencode 2.04e+00 0.001900 0 18:47731522-18:51061758
3553 18 48405419 48474691 ME2 yfs.blood.rnaarr -7.63e-01 0.000252 0 18:47731522-18:51061758
3562 18 48405419 48474691 ME2 whole_blood -4.75e-02 0.000203 0 18:47731522-18:51061758
3541 18 49866541 51062273 DCC cmc.brain.rnaseq_splicing -4.21e+00 0.470000 0 18:47731522-18:51061758
3596 18 51795774 51847636 POLI brain_cortex -1.85e+00 0.000874 0 18:51554430-18:55213838
11842 18 51795774 51847636 POLI psychencode -2.97e+00 0.009050 0 18:51554430-18:55213838
11770 18 54264439 54318831 TXNL1 psychencode -1.05e+00 0.000439 0 18:51554430-18:55213838
3607 18 51795848 51824604 POLI cmc.brain.rnaseq_splicing 6.56e-01 0.000340 0 18:51554430-18:55213838
3584 18 52568739 52626739 CCDC68 cmc.brain.rnaseq -2.70e+00 0.004410 0 18:51554430-18:55213838
3593 18 54318906 54698828 WDR7 thyroid 1.80e+00 0.001010 0 18:51554430-18:55213838
3625 18 55019720 55036161 ST8SIA3 cmc.brain.rnaseq -1.31e-02 0.000227 0 18:51554430-18:55213838
3623 18 55212072 55253969 FECH cmc.brain.rnaseq -1.30e-01 0.000231 0 18:51554430-18:55213838
3599 18 53709366 53763550 RP11-456O19.2 brain_hippocampus 1.01e+00 0.000591 0 18:51554430-18:55213838
12026 18 55102917 55158529 ONECUT2 psychencode -5.81e-01 0.000344 0 18:51554430-18:55213838
3619 18 52495707 52562747 RAB27B cmc.brain.rnaseq_splicing -8.93e-01 0.000247 0 18:51554430-18:55213838
3624 18 54318906 54698828 WDR7 pituitary 9.19e-02 0.000231 0 18:51554430-18:55213838
3618 18 52568739 52626739 CCDC68 cmc.brain.rnaseq_splicing 8.68e-01 0.000249 0 18:51554430-18:55213838
3587 18 51795774 51847636 POLI brain_putamen_basal_ganglia -2.38e+00 0.002220 0 18:51554430-18:55213838
3617 18 52568740 52626739 CCDC68 thyroid -9.09e-01 0.000250 0 18:51554430-18:55213838
3597 18 55212073 55254000 FECH ntr.blood.rnaarr -1.66e+00 0.000853 0 18:51554430-18:55213838
3588 18 51795774 51847636 POLI brain_anterior_cingulate_cortex_ba24 -2.40e+00 0.002000 0 18:51554430-18:55213838
3600 18 54264439 54318831 TXNL1 thyroid -9.90e-01 0.000451 0 18:51554430-18:55213838
3612 18 54264439 54318831 TXNL1 yfs.blood.rnaarr 5.76e-01 0.000283 0 18:51554430-18:55213838
3591 18 51850728 51884286 STARD6 brain_hippocampus 2.14e+00 0.001570 0 18:51554430-18:55213838
3598 18 51795774 51847636 POLI brain_amygdala -1.82e+00 0.000704 0 18:51554430-18:55213838
3592 18 51850728 51884286 STARD6 brain_anterior_cingulate_cortex_ba24 2.34e+00 0.001300 0 18:51554430-18:55213838
3608 18 51795848 51824604 POLI cmc.brain.rnaseq_splicing 1.24e+00 0.000316 0 18:51554430-18:55213838
12532 18 52568740 52626739 CCDC68 psychencode -1.89e+00 0.003690 0 18:51554430-18:55213838
3579 18 53670844 53858493 CTD-2008L17.2 thyroid -2.50e+00 0.007510 0 18:51554430-18:55213838
3577 18 51795774 51847636 POLI brain_hippocampus -3.29e+00 0.013700 0 18:51554430-18:55213838
3601 18 54318573 54697025 WDR7 ntr.blood.rnaarr -1.07e+00 0.000412 0 18:51554430-18:55213838
3613 18 54318906 54698828 WDR7 brain_cortex -1.98e-01 0.000275 0 18:51554430-18:55213838
3620 18 51884287 51908404 C18orf54 cmc.brain.rnaseq -9.28e-03 0.000247 0 18:51554430-18:55213838
3595 18 51850728 51884286 STARD6 brain_cortex 1.96e+00 0.000893 0 18:51554430-18:55213838
11769 18 54318574 54698828 WDR7 psychencode -1.11e+00 0.000416 0 18:51554430-18:55213838
3626 18 54318615 54697036 WDR7 cmc.brain.rnaseq 3.38e-01 0.000227 0 18:51554430-18:55213838
3610 18 51795848 51824604 POLI cmc.brain.rnaseq_splicing -3.70e-01 0.000303 0 18:51554430-18:55213838
3586 18 51795848 51824604 POLI cmc.brain.rnaseq_splicing -2.96e+00 0.003070 0 18:51554430-18:55213838
12547 18 51884287 51911588 C18orf54 psychencode -1.20e-03 0.000273 0 18:51554430-18:55213838
3574 18 51795774 51847636 POLI brain_cerebellar_hemisphere -3.17e+00 0.015200 0 18:51554430-18:55213838
3583 18 51884335 51911588 C18orf54 whole_blood 3.12e+00 0.004410 0 18:51554430-18:55213838
3616 18 51884335 51911588 C18orf54 brain_cerebellar_hemisphere -1.44e-02 0.000255 0 18:51554430-18:55213838
12663 18 55018044 55038962 ST8SIA3 psychencode -1.23e+00 0.000474 0 18:51554430-18:55213838
3581 18 52889562 53332018 TCF4 yfs.blood.rnaarr -9.76e-01 0.005130 0 18:51554430-18:55213838
12816 18 49866542 51057784 DCC psychencode 1.34e+00 0.000310 0 18:51554430-18:55213838
3567 18 51795774 51847636 POLI brain_substantia_nigra -4.02e+00 0.074400 1 18:51554430-18:55213838
3571 18 51679079 51751158 MBD2 pituitary 3.14e+00 0.017400 1 18:51554430-18:55213838
3602 18 55215515 55254004 FECH yfs.blood.rnaarr 8.86e-01 0.000409 0 18:51554430-18:55213838
11690 18 55215515 55254004 FECH psychencode 8.47e-01 0.000358 0 18:51554430-18:55213838
3582 18 51795848 51824604 POLI cmc.brain.rnaseq -2.75e+00 0.004970 0 18:51554430-18:55213838
3615 18 52568739 52626739 CCDC68 cmc.brain.rnaseq_splicing -4.81e-01 0.000256 0 18:51554430-18:55213838
3590 18 54318906 54698828 WDR7 adrenal_gland -1.73e+00 0.001610 0 18:51554430-18:55213838
3578 18 51795774 51847636 POLI brain_caudate_basal_ganglia -2.95e+00 0.009470 0 18:51554430-18:55213838
3589 18 51795774 51847636 POLI brain_nucleus_accumbens_basal_ganglia -2.30e+00 0.001680 0 18:51554430-18:55213838
3614 18 55102916 55158530 ONECUT2 cmc.brain.rnaseq -1.53e-01 0.000259 0 18:51554430-18:55213838
12867 18 52889562 53332018 TCF4 psychencode -4.72e+00 0.491000 1 18:51554430-18:55213838
3570 18 51795774 51847636 POLI whole_blood -3.23e+00 0.017900 1 18:51554430-18:55213838
3594 18 51679079 51751158 MBD2 thyroid 2.57e+00 0.000995 0 18:51554430-18:55213838
3569 18 51795774 51847636 POLI brain_cerebellum -3.21e+00 0.019000 1 18:51554430-18:55213838
3605 18 55297534 55336528 RP11-35G9.3 thyroid -6.54e-01 0.000368 0 18:51554430-18:55213838
3611 18 51795774 51847636 POLI pituitary -8.71e-01 0.000292 0 18:51554430-18:55213838
13445 18 55297534 55405276 RP11-35G9.3 psychencode -1.65e+00 0.000688 0 18:51554430-18:55213838
3622 18 54318906 54698828 WDR7 brain_cerebellum 6.01e-01 0.000235 0 18:51554430-18:55213838
11657 18 55711599 56068772 NEDD4L psychencode 1.45e+00 0.000610 0 18:51554430-18:55213838
3580 18 51795774 51847636 POLI thyroid -2.89e+00 0.007370 0 18:51554430-18:55213838
3609 18 55212072 55253969 FECH cmc.brain.rnaseq_splicing 9.03e-01 0.000314 0 18:51554430-18:55213838
3604 18 49866541 51062273 DCC cmc.brain.rnaseq 1.17e+00 0.000369 0 18:51554430-18:55213838
3603 18 55212072 55253969 FECH cmc.brain.rnaseq_splicing -1.34e+00 0.000404 0 18:51554430-18:55213838
12636 18 51850728 51884334 STARD6 psychencode 2.20e+00 0.001420 0 18:51554430-18:55213838
3585 18 51850728 51884286 STARD6 brain_putamen_basal_ganglia 3.27e+00 0.003170 0 18:51554430-18:55213838
13450 18 53443958 53448952 RP11-397A16.2 psychencode -3.64e+00 0.104000 1 18:51554430-18:55213838
3606 18 54264439 54318831 TXNL1 brain_cerebellum -7.56e-01 0.000350 0 18:51554430-18:55213838
3573 18 51795774 51847636 POLI brain_hypothalamus -3.21e+00 0.016300 1 18:51554430-18:55213838
3568 18 51795774 51847636 POLI adrenal_gland -3.64e+00 0.043200 1 18:51554430-18:55213838
3621 18 51884335 51911588 C18orf54 brain_cerebellum 9.36e-02 0.000245 0 18:51554430-18:55213838
3576 18 51795774 51847636 POLI brain_frontal_cortex_ba9 -3.27e+00 0.014800 0 18:51554430-18:55213838
3572 18 51795774 51847636 POLI yfs.blood.rnaarr -3.21e+00 0.017300 1 18:51554430-18:55213838
12199 18 51679079 51751158 MBD2 psychencode 9.95e-01 0.000342 0 18:51554430-18:55213838
11646 18 52385091 52562747 RAB27B psychencode 5.05e+00 0.585000 1 18:51554430-18:55213838
3575 18 51795773 51824604 POLI ntr.blood.rnaarr -3.17e+00 0.015000 0 18:51554430-18:55213838
12067 19 31765851 31840453 TSHZ3 psychencode 1.27e+00 0.000355 0 19:30728153-19:32746380
3648 19 32836500 32878573 ZNF507 brain_caudate_basal_ganglia 1.14e+00 0.000303 0 19:30728153-19:32746380
3655 19 31912903 31918208 AC008992.1 thyroid 9.03e-01 0.000243 0 19:30728153-19:32746380
12630 19 33210659 33320483 TDRD12 psychencode -5.34e-01 0.000186 0 19:30728153-19:32746380
3673 19 31839787 31908700 AC007796.1 thyroid -2.82e-01 0.000169 0 19:30728153-19:32746380
3677 19 33166312 33169206 RGS9BP cmc.brain.rnaseq 9.39e-02 0.000165 0 19:30728153-19:32746380
11877 19 33087913 33167503 ANKRD27 psychencode -7.85e-01 0.000218 0 19:30728153-19:32746380
3667 19 33182867 33204702 NUDT19 brain_frontal_cortex_ba9 4.69e-01 0.000182 0 19:30728153-19:32746380
3678 19 32896467 32976801 DPY19L3 brain_nucleus_accumbens_basal_ganglia -1.49e-01 0.000164 0 19:30728153-19:32746380
12583 19 32836500 32878573 ZNF507 psychencode 2.82e+00 0.007670 0 19:30728153-19:32746380
12797 19 33166313 33169206 RGS9BP psychencode -3.15e-01 0.000170 0 19:30728153-19:32746380
3634 19 33071974 33078358 PDCD5 brain_nucleus_accumbens_basal_ganglia -2.17e+00 0.001590 0 19:30728153-19:32746380
3637 19 33071974 33078358 PDCD5 brain_anterior_cingulate_cortex_ba24 -1.63e+00 0.000585 0 19:30728153-19:32746380
13446 19 32880956 32896466 AC007773.2 psychencode -1.86e+00 0.000854 0 19:30728153-19:32746380
3661 19 33071974 33078358 PDCD5 yfs.blood.rnaarr -6.66e-01 0.000211 0 19:30728153-19:32746380
3653 19 33087911 33166105 ANKRD27 ntr.blood.rnaarr 1.05e+00 0.000277 0 19:30728153-19:32746380
3635 19 33087913 33166105 ANKRD27 brain_putamen_basal_ganglia -2.14e+00 0.001480 0 19:30728153-19:32746380
3643 19 33071974 33078358 PDCD5 brain_hypothalamus -1.37e+00 0.000420 0 19:30728153-19:32746380
3670 19 33087913 33166105 ANKRD27 brain_frontal_cortex_ba9 3.38e-01 0.000172 0 19:30728153-19:32746380
3674 19 33071974 33078358 PDCD5 brain_hippocampus -5.60e-02 0.000168 0 19:30728153-19:32746380
3644 19 33071974 33078358 PDCD5 pituitary 1.35e+00 0.000406 0 19:30728153-19:32746380
3638 19 33071974 33078358 PDCD5 brain_frontal_cortex_ba9 -1.63e+00 0.000582 0 19:30728153-19:32746380
3652 19 32836500 32878573 ZNF507 brain_hippocampus 9.98e-01 0.000283 0 19:30728153-19:32746380
3665 19 32880956 32895914 AC007773.2 pituitary 6.76e-01 0.000202 0 19:30728153-19:32746380
3646 19 32836500 32878573 ZNF507 brain_cerebellum 1.23e+00 0.000347 0 19:30728153-19:32746380
3671 19 32896654 32976799 DPY19L3 cmc.brain.rnaseq_splicing -3.38e-01 0.000172 0 19:30728153-19:32746380
3631 19 32880956 32895914 AC007773.2 brain_cerebellum -2.31e+00 0.002170 0 19:30728153-19:32746380
3676 19 33071974 33078358 PDCD5 thyroid 2.28e-01 0.000167 0 19:30728153-19:32746380
3669 19 32880956 32895914 AC007773.2 brain_substantia_nigra -3.57e-01 0.000174 0 19:30728153-19:32746380
3650 19 33071974 33078358 PDCD5 brain_amygdala 1.07e+00 0.000297 0 19:30728153-19:32746380
3639 19 33071974 33078358 PDCD5 brain_cerebellum 1.62e+00 0.000580 0 19:30728153-19:32746380
3645 19 31765851 31840453 TSHZ3 yfs.blood.rnaarr 1.34e+00 0.000389 0 19:30728153-19:32746380
3651 19 32836500 32878573 ZNF507 thyroid 1.11e+00 0.000296 0 19:30728153-19:32746380
11874 19 30414551 30506611 URI1 psychencode 1.05e+00 0.000277 0 19:30728153-19:32746380
3636 19 30519648 30520823 CTC-448F2.4 brain_cerebellar_hemisphere -2.07e+00 0.001310 0 19:30728153-19:32746380
3628 19 32880956 32895914 AC007773.2 brain_cortex -2.46e+00 0.002980 0 19:30728153-19:32746380
3657 19 33071974 33078358 PDCD5 brain_substantia_nigra 8.26e-01 0.000227 0 19:30728153-19:32746380
13444 19 30528330 30529063 CTC-448F2.6 psychencode -2.00e-01 0.000166 0 19:30728153-19:32746380
3656 19 32880956 32895914 AC007773.2 adrenal_gland 8.44e-01 0.000229 0 19:30728153-19:32746380
3654 19 33071974 33078358 PDCD5 whole_blood -9.33e-01 0.000256 0 19:30728153-19:32746380
3632 19 30719197 31204445 ZNF536 thyroid -2.28e+00 0.002040 0 19:30728153-19:32746380
3649 19 31765850 31840431 TSHZ3 ntr.blood.rnaarr 1.13e+00 0.000303 0 19:30728153-19:32746380
12679 19 32896449 32976801 DPY19L3 psychencode 5.66e-01 0.000189 0 19:30728153-19:32746380
3658 19 33087913 33166105 ANKRD27 brain_cerebellum 8.34e-01 0.000226 0 19:30728153-19:32746380
3629 19 31765851 31840453 TSHZ3 whole_blood 2.35e+00 0.002430 0 19:30728153-19:32746380
3641 19 31765851 31840453 TSHZ3 thyroid 1.44e+00 0.000453 0 19:30728153-19:32746380
3642 19 32896467 32976801 DPY19L3 brain_caudate_basal_ganglia 1.42e+00 0.000440 0 19:30728153-19:32746380
3666 19 33071974 33078358 PDCD5 brain_cortex 5.35e-01 0.000188 0 19:30728153-19:32746380
3663 19 33087913 33166105 ANKRD27 brain_nucleus_accumbens_basal_ganglia 6.93e-01 0.000205 0 19:30728153-19:32746380
3659 19 33177995 33182656 CTD-2538C1.2 brain_frontal_cortex_ba9 -8.25e-01 0.000225 0 19:30728153-19:32746380
3672 19 33087913 33166105 ANKRD27 brain_cerebellar_hemisphere -3.19e-01 0.000171 0 19:30728153-19:32746380
3633 19 32896695 32975799 DPY19L3 ntr.blood.rnaarr 2.21e+00 0.001800 0 19:30728153-19:32746380
3675 19 33087913 33166105 ANKRD27 whole_blood -1.70e-01 0.000167 0 19:30728153-19:32746380
3664 19 33087913 33166105 ANKRD27 brain_cortex 6.79e-01 0.000204 0 19:30728153-19:32746380
11875 19 33071974 33078358 PDCD5 psychencode -1.06e+00 0.000278 0 19:30728153-19:32746380
3627 19 32896467 32976801 DPY19L3 thyroid -2.74e+00 0.006220 0 19:30728153-19:32746380
3668 19 33177995 33182656 CTD-2538C1.2 brain_caudate_basal_ganglia 3.65e-01 0.000179 0 19:30728153-19:32746380
3630 19 32896467 32976801 DPY19L3 whole_blood 2.32e+00 0.002170 0 19:30728153-19:32746380
3662 19 33182867 33204702 NUDT19 adrenal_gland 6.88e-01 0.000205 0 19:30728153-19:32746380
3660 19 33177995 33182656 CTD-2538C1.2 brain_hippocampus 7.83e-01 0.000220 0 19:30728153-19:32746380
3640 19 33182867 33204702 NUDT19 brain_hippocampus 1.48e+00 0.000463 0 19:30728153-19:32746380
3647 19 33072093 33078358 PDCD5 cmc.brain.rnaseq 1.19e+00 0.000323 0 19:30728153-19:32746380
3733 19 33463115 33469128 C19orf40 pituitary -1.21e+00 0.000329 0 19:32747302-19:34262922
3708 19 33182867 33204702 NUDT19 adrenal_gland -1.55e+00 0.000516 0 19:32747302-19:34262922
3755 19 33321415 33360672 SLC7A9 whole_blood 9.68e-01 0.000261 0 19:32747302-19:34262922
3776 19 33321415 33360672 SLC7A9 brain_amygdala 7.10e-01 0.000214 0 19:32747302-19:34262922
3832 19 33321415 33360672 SLC7A9 brain_putamen_basal_ganglia 1.66e-01 0.000173 0 19:32747302-19:34262922
3807 19 33087913 33166105 ANKRD27 brain_caudate_basal_ganglia -4.37e-01 0.000185 0 19:32747302-19:34262922
12631 19 33210659 33320483 TDRD12 psychencode -1.46e-01 0.000170 0 19:32747302-19:34262922
3792 19 33321415 33360672 SLC7A9 brain_substantia_nigra 5.53e-01 0.000196 0 19:32747302-19:34262922
3793 19 33321415 33360672 SLC7A9 adrenal_gland -5.30e-01 0.000196 0 19:32747302-19:34262922
3841 19 33321415 33360672 SLC7A9 brain_cerebellar_hemisphere -8.67e-03 0.000171 0 19:32747302-19:34262922
3810 19 33321415 33360672 SLC7A9 brain_cerebellum -2.74e-01 0.000180 0 19:32747302-19:34262922
3681 19 33469499 33555794 RHPN2 brain_nucleus_accumbens_basal_ganglia -2.46e+00 0.002980 0 19:32747302-19:34262922
3825 19 33463115 33469128 C19orf40 thyroid -2.37e-01 0.000175 0 19:32747302-19:34262922
3772 19 33087913 33166105 ANKRD27 brain_putamen_basal_ganglia -7.74e-01 0.000224 0 19:32747302-19:34262922
3683 19 33369902 33462897 CEP89 brain_anterior_cingulate_cortex_ba24 2.43e+00 0.002760 0 19:32747302-19:34262922
3716 19 33369902 33462897 CEP89 brain_cortex 1.44e+00 0.000447 0 19:32747302-19:34262922
3710 19 33087913 33166105 ANKRD27 whole_blood 1.52e+00 0.000503 0 19:32747302-19:34262922
3727 19 33369902 33462897 CEP89 brain_hippocampus 1.35e+00 0.000391 0 19:32747302-19:34262922
3773 19 33087913 33166105 ANKRD27 brain_nucleus_accumbens_basal_ganglia -7.62e-01 0.000222 0 19:32747302-19:34262922
3709 19 33210659 33320483 TDRD12 adrenal_gland -1.54e+00 0.000506 0 19:32747302-19:34262922
3731 19 33087913 33166105 ANKRD27 brain_frontal_cortex_ba9 -1.21e+00 0.000331 0 19:32747302-19:34262922
3811 19 33321415 33360672 SLC7A9 brain_hippocampus 3.56e-01 0.000180 0 19:32747302-19:34262922
3791 19 33366831 33369327 CTD-2085J24.4 pituitary -5.62e-01 0.000197 0 19:32747302-19:34262922
3703 19 33369902 33462897 CEP89 brain_caudate_basal_ganglia 1.73e+00 0.000695 0 19:32747302-19:34262922
3770 19 33182867 33204702 NUDT19 brain_caudate_basal_ganglia -8.38e-01 0.000233 0 19:32747302-19:34262922
3691 19 33469499 33555794 RHPN2 brain_anterior_cingulate_cortex_ba24 -1.91e+00 0.000932 0 19:32747302-19:34262922
3757 19 33182867 33204702 NUDT19 brain_hippocampus -9.46e-01 0.000255 0 19:32747302-19:34262922
3812 19 33321415 33360672 SLC7A9 brain_cortex -2.89e-01 0.000179 0 19:32747302-19:34262922
3695 19 33177995 33182656 CTD-2538C1.2 brain_hippocampus -1.83e+00 0.000815 0 19:32747302-19:34262922
3743 19 33369902 33462897 CEP89 brain_putamen_basal_ganglia 1.08e+00 0.000289 0 19:32747302-19:34262922
3835 19 33463115 33469128 C19orf40 brain_hypothalamus -6.43e-03 0.000172 0 19:32747302-19:34262922
3759 19 33369902 33462897 CEP89 brain_nucleus_accumbens_basal_ganglia 9.28e-01 0.000251 0 19:32747302-19:34262922
3782 19 33369902 33462897 CEP89 pituitary 6.70e-01 0.000210 0 19:32747302-19:34262922
3823 19 33369902 33462897 CEP89 thyroid 2.36e-01 0.000175 0 19:32747302-19:34262922
3834 19 33321415 33360672 SLC7A9 brain_frontal_cortex_ba9 1.15e-01 0.000172 0 19:32747302-19:34262922
3774 19 33087913 33166105 ANKRD27 brain_anterior_cingulate_cortex_ba24 -7.62e-01 0.000221 0 19:32747302-19:34262922
3704 19 33087913 33166105 ANKRD27 brain_cortex -1.67e+00 0.000620 0 19:32747302-19:34262922
3742 19 33182867 33204702 NUDT19 brain_frontal_cortex_ba9 -1.08e+00 0.000289 0 19:32747302-19:34262922
12066 19 33369902 33462897 CEP89 psychencode 2.49e+00 0.003210 0 19:32747302-19:34262922
12177 19 33463115 33469128 C19orf40 psychencode -1.27e+00 0.000354 0 19:32747302-19:34262922
3697 19 33369902 33462897 CEP89 brain_cerebellum 1.80e+00 0.000775 0 19:32747302-19:34262922
3822 19 33366831 33369327 CTD-2085J24.4 brain_cerebellar_hemisphere -2.70e-01 0.000176 0 19:32747302-19:34262922
3813 19 33321415 33360672 SLC7A9 thyroid -3.00e-01 0.000179 0 19:32747302-19:34262922
3728 19 33469497 33555824 RHPN2 cmc.brain.rnaseq -1.34e+00 0.000390 0 19:32747302-19:34262922
3785 19 33366831 33369327 CTD-2085J24.4 brain_nucleus_accumbens_basal_ganglia 5.80e-01 0.000204 0 19:32747302-19:34262922
3744 19 32836500 32878573 ZNF507 brain_caudate_basal_ganglia -1.02e+00 0.000288 0 19:32747302-19:34262922
3829 19 33877856 34012700 PEPD yfs.blood.rnaarr -1.91e-01 0.000174 0 19:32747302-19:34262922
3805 19 32836500 32878573 ZNF507 thyroid -4.44e-01 0.000188 0 19:32747302-19:34262922
12115 19 33877856 34012700 PEPD psychencode 2.66e-01 0.000176 0 19:32747302-19:34262922
3821 19 32836500 32878573 ZNF507 brain_hippocampus -2.60e-01 0.000176 0 19:32747302-19:34262922
3826 19 33321415 33360672 SLC7A9 pituitary -1.61e-01 0.000174 0 19:32747302-19:34262922
3800 19 32836500 32878573 ZNF507 brain_cerebellum -5.26e-01 0.000192 0 19:32747302-19:34262922
3689 19 33071974 33078358 PDCD5 thyroid -1.95e+00 0.001020 0 19:32747302-19:34262922
3717 19 33369903 33462869 CEP89 cmc.brain.rnaseq_splicing -1.42e+00 0.000445 0 19:32747302-19:34262922
3768 19 33369903 33462869 CEP89 cmc.brain.rnaseq 7.95e-01 0.000236 0 19:32747302-19:34262922
3764 19 33087906 33166102 ANKRD27 cmc.brain.rnaseq -8.79e-01 0.000241 0 19:32747302-19:34262922
3682 19 33369902 33462897 CEP89 brain_frontal_cortex_ba9 2.44e+00 0.002820 0 19:32747302-19:34262922
3686 19 33463115 33469128 C19orf40 brain_amygdala -2.24e+00 0.001890 0 19:32747302-19:34262922
3680 19 33071974 33078358 PDCD5 brain_hippocampus -2.47e+00 0.003090 0 19:32747302-19:34262922
3769 19 32880956 32895914 AC007773.2 brain_putamen_basal_ganglia -8.23e-01 0.000234 0 19:32747302-19:34262922
3701 19 32896467 32976801 DPY19L3 whole_blood 1.76e+00 0.000757 0 19:32747302-19:34262922
3784 19 32880956 32895914 AC007773.2 brain_nucleus_accumbens_basal_ganglia -6.33e-01 0.000207 0 19:32747302-19:34262922
3817 19 32880956 32895914 AC007773.2 brain_anterior_cingulate_cortex_ba24 -3.05e-01 0.000177 0 19:32747302-19:34262922
3736 19 33071974 33078358 PDCD5 brain_caudate_basal_ganglia -1.15e+00 0.000312 0 19:32747302-19:34262922
3687 19 33369902 33462897 CEP89 brain_substantia_nigra 2.10e+00 0.001340 0 19:32747302-19:34262922
3765 19 32896467 32976801 DPY19L3 brain_nucleus_accumbens_basal_ganglia 8.59e-01 0.000239 0 19:32747302-19:34262922
3771 19 32896467 32976801 DPY19L3 brain_caudate_basal_ganglia 7.77e-01 0.000228 0 19:32747302-19:34262922
3779 19 32880956 32895914 AC007773.2 brain_frontal_cortex_ba9 -6.77e-01 0.000212 0 19:32747302-19:34262922
3762 19 33463115 33469128 C19orf40 whole_blood 8.76e-01 0.000247 0 19:32747302-19:34262922
3747 19 34286838 34306668 KCTD15 brain_cerebellar_hemisphere -1.05e+00 0.000286 0 19:32747302-19:34262922
13447 19 32880956 32896466 AC007773.2 psychencode -5.70e-01 0.000205 0 19:32747302-19:34262922
3737 19 33071974 33078358 PDCD5 adrenal_gland -1.15e+00 0.000311 0 19:32747302-19:34262922
3688 19 33071974 33078358 PDCD5 brain_cortex -2.05e+00 0.001220 0 19:32747302-19:34262922
3719 19 33463115 33469128 C19orf40 brain_caudate_basal_ganglia -1.42e+00 0.000430 0 19:32747302-19:34262922
3730 19 33463115 33469128 C19orf40 brain_nucleus_accumbens_basal_ganglia -1.29e+00 0.000364 0 19:32747302-19:34262922
12380 19 33864236 33873592 CEBPG psychencode -4.71e-01 0.000189 0 19:32747302-19:34262922
3814 19 33877856 34012700 PEPD brain_cerebellar_hemisphere -2.66e-01 0.000178 0 19:32747302-19:34262922
3763 19 32880956 32895914 AC007773.2 brain_cortex -8.69e-01 0.000243 0 19:32747302-19:34262922
3693 19 33166312 33169206 RGS9BP cmc.brain.rnaseq -1.84e+00 0.000832 0 19:32747302-19:34262922
3827 19 33321415 33360672 SLC7A9 brain_caudate_basal_ganglia 2.01e-01 0.000174 0 19:32747302-19:34262922
3818 19 33877856 34012700 PEPD brain_frontal_cortex_ba9 2.95e-01 0.000177 0 19:32747302-19:34262922
3735 19 33877856 34012700 PEPD brain_hippocampus 1.12e+00 0.000315 0 19:32747302-19:34262922
3801 19 33864574 33873592 CEBPG cmc.brain.rnaseq_splicing 4.81e-01 0.000191 0 19:32747302-19:34262922
3843 19 32896467 32976801 DPY19L3 thyroid -1.29e-01 0.000171 0 19:32747302-19:34262922
3830 19 33321415 33360672 SLC7A9 brain_anterior_cingulate_cortex_ba24 1.79e-01 0.000174 0 19:32747302-19:34262922
12584 19 32836500 32878573 ZNF507 psychencode -8.50e-01 0.000243 0 19:32747302-19:34262922
3756 19 33877856 34012700 PEPD brain_hypothalamus 9.30e-01 0.000259 0 19:32747302-19:34262922
3819 19 33366831 33369327 CTD-2085J24.4 brain_cerebellum -9.34e-02 0.000177 0 19:32747302-19:34262922
3783 19 32896654 32976799 DPY19L3 cmc.brain.rnaseq 6.46e-01 0.000208 0 19:32747302-19:34262922
3844 19 33864236 33873591 CEBPG yfs.blood.rnaarr 2.42e-02 0.000169 0 19:32747302-19:34262922
3809 19 33072093 33078358 PDCD5 cmc.brain.rnaseq -3.51e-01 0.000182 0 19:32747302-19:34262922
3842 19 33877856 34012700 PEPD brain_nucleus_accumbens_basal_ganglia 2.51e-02 0.000171 0 19:32747302-19:34262922
3804 19 32896695 32975799 DPY19L3 ntr.blood.rnaarr 3.80e-01 0.000188 0 19:32747302-19:34262922
3778 19 33864236 33873592 CEBPG thyroid -7.15e-01 0.000213 0 19:32747302-19:34262922
3711 19 33571786 33621448 GPATCH1 thyroid 1.52e+00 0.000493 0 19:32747302-19:34262922
3795 19 32896654 32976799 DPY19L3 cmc.brain.rnaseq_splicing -5.16e-01 0.000195 0 19:32747302-19:34262922
3831 19 33366831 33369327 CTD-2085J24.4 whole_blood -6.83e-02 0.000174 0 19:32747302-19:34262922
3833 19 33877856 34012700 PEPD brain_cerebellum 1.48e-01 0.000173 0 19:32747302-19:34262922
3798 19 33087913 33166105 ANKRD27 brain_cerebellar_hemisphere 5.13e-01 0.000193 0 19:32747302-19:34262922
3729 19 33177995 33182656 CTD-2538C1.2 adrenal_gland -1.33e+00 0.000387 0 19:32747302-19:34262922
3753 19 34286838 34306666 KCTD15 yfs.blood.rnaarr -9.71e-01 0.000266 0 19:32747302-19:34262922
3837 19 33321415 33360672 SLC7A9 brain_hypothalamus -1.62e-02 0.000172 0 19:32747302-19:34262922
3707 19 33071974 33078358 PDCD5 brain_frontal_cortex_ba9 -1.62e+00 0.000575 0 19:32747302-19:34262922
3706 19 33071974 33078358 PDCD5 brain_anterior_cingulate_cortex_ba24 -1.65e+00 0.000602 0 19:32747302-19:34262922
3780 19 33366831 33369327 CTD-2085J24.4 thyroid 6.05e-01 0.000210 0 19:32747302-19:34262922
3712 19 32880956 32895914 AC007773.2 brain_substantia_nigra -1.46e+00 0.000485 0 19:32747302-19:34262922
3700 19 33469499 33555794 RHPN2 brain_cortex -1.79e+00 0.000758 0 19:32747302-19:34262922
3796 19 33210659 33320483 TDRD12 brain_putamen_basal_ganglia -5.33e-01 0.000195 0 19:32747302-19:34262922
3761 19 33087913 33166105 ANKRD27 thyroid 9.07e-01 0.000249 0 19:32747302-19:34262922
3715 19 33622996 33666701 WDR88 brain_frontal_cortex_ba9 1.45e+00 0.000451 0 19:32747302-19:34262922
3745 19 33071974 33078358 PDCD5 brain_hypothalamus -1.06e+00 0.000287 0 19:32747302-19:34262922
3799 19 33877856 34012700 PEPD thyroid 5.04e-01 0.000193 0 19:32747302-19:34262922
3750 19 33071974 33078358 PDCD5 brain_cerebellum -1.00e+00 0.000268 0 19:32747302-19:34262922
3754 19 33210659 33320483 TDRD12 brain_nucleus_accumbens_basal_ganglia -9.82e-01 0.000263 0 19:32747302-19:34262922
3739 19 33087913 33166105 ANKRD27 brain_cerebellum 1.11e+00 0.000300 0 19:32747302-19:34262922
3802 19 32880956 32895914 AC007773.2 brain_caudate_basal_ganglia -4.65e-01 0.000190 0 19:32747302-19:34262922
11620 19 33321415 33360672 SLC7A9 psychencode -3.04e-01 0.000180 0 19:32747302-19:34262922
3692 19 33469499 33555794 RHPN2 brain_hippocampus -1.89e+00 0.000902 0 19:32747302-19:34262922
3838 19 33877856 34012700 PEPD brain_anterior_cingulate_cortex_ba24 -9.27e-02 0.000172 0 19:32747302-19:34262922
3679 19 33469499 33555794 RHPN2 brain_frontal_cortex_ba9 -2.50e+00 0.003250 0 19:32747302-19:34262922
3738 19 33571786 33621448 GPATCH1 pituitary 1.14e+00 0.000308 0 19:32747302-19:34262922
3732 19 33622996 33666701 WDR88 thyroid 1.20e+00 0.000331 0 19:32747302-19:34262922
3758 19 33071974 33078358 PDCD5 pituitary -9.36e-01 0.000254 0 19:32747302-19:34262922
3777 19 32880956 32895914 AC007773.2 thyroid -6.88e-01 0.000214 0 19:32747302-19:34262922
3816 19 33469499 33555794 RHPN2 brain_hypothalamus -2.88e-01 0.000177 0 19:32747302-19:34262922
3690 19 33071974 33078358 PDCD5 yfs.blood.rnaarr 1.86e+00 0.000968 0 19:32747302-19:34262922
3721 19 33087911 33166105 ANKRD27 ntr.blood.rnaarr 1.40e+00 0.000422 0 19:32747302-19:34262922
3790 19 34286838 34306668 KCTD15 brain_cerebellum -5.69e-01 0.000198 0 19:32747302-19:34262922
3839 19 33877856 34012700 PEPD brain_caudate_basal_ganglia 3.52e-02 0.000172 0 19:32747302-19:34262922
12176 19 33469499 33555794 RHPN2 psychencode -1.88e+00 0.000891 0 19:32747302-19:34262922
3760 19 33071974 33078358 PDCD5 brain_nucleus_accumbens_basal_ganglia -9.13e-01 0.000250 0 19:32747302-19:34262922
3787 19 33571786 33621448 GPATCH1 brain_cerebellar_hemisphere 6.00e-01 0.000199 0 19:32747302-19:34262922
3767 19 33071974 33078358 PDCD5 brain_amygdala -8.52e-01 0.000237 0 19:32747302-19:34262922
3722 19 34112861 34264414 CHST8 whole_blood 1.36e+00 0.000415 0 19:32747302-19:34262922
12798 19 33166313 33169206 RGS9BP psychencode -2.90e+00 0.009410 0 19:32747302-19:34262922
12381 19 34286838 34306668 KCTD15 psychencode 1.53e+00 0.000527 0 19:32747302-19:34262922
3808 19 33571785 33621318 GPATCH1 cmc.brain.rnaseq -3.05e-01 0.000185 0 19:32747302-19:34262922
3789 19 34112861 34264414 CHST8 brain_putamen_basal_ganglia -5.64e-01 0.000198 0 19:32747302-19:34262922
3723 19 33469499 33555794 RHPN2 brain_substantia_nigra -1.39e+00 0.000411 0 19:32747302-19:34262922
11719 19 33571786 33621448 GPATCH1 psychencode 1.20e+00 0.000328 0 19:32747302-19:34262922
3836 19 33321415 33360672 SLC7A9 brain_nucleus_accumbens_basal_ganglia 7.64e-02 0.000172 0 19:32747302-19:34262922
3828 19 32880956 32895914 AC007773.2 adrenal_gland 2.15e-01 0.000174 0 19:32747302-19:34262922
3815 19 34287750 34306666 KCTD15 cmc.brain.rnaseq 3.29e-01 0.000177 0 19:32747302-19:34262922
11878 19 33087913 33167503 ANKRD27 psychencode -3.74e-01 0.000185 0 19:32747302-19:34262922
12999 19 33182867 33204702 NUDT19 psychencode -1.50e+00 0.000483 0 19:32747302-19:34262922
3766 19 32880956 32895914 AC007773.2 pituitary -8.35e-01 0.000238 0 19:32747302-19:34262922
3824 19 33877856 34012700 PEPD brain_cortex 2.16e-01 0.000175 0 19:32747302-19:34262922
3725 19 33469499 33555794 RHPN2 pituitary -1.36e+00 0.000398 0 19:32747302-19:34262922
3806 19 33877856 34012700 PEPD adrenal_gland 4.47e-01 0.000187 0 19:32747302-19:34262922
3775 19 32880956 32895914 AC007773.2 brain_cerebellum 6.75e-01 0.000214 0 19:32747302-19:34262922
3786 19 34663327 34720420 LSM14A ntr.blood.rnaarr 6.02e-01 0.000202 0 19:32747302-19:34262922
3749 19 34663409 34720420 LSM14A whole_blood -1.01e+00 0.000277 0 19:32747302-19:34262922
3803 19 34745442 34846491 KIAA0355 thyroid 4.77e-01 0.000189 0 19:32747302-19:34262922
3746 19 34286838 34306668 KCTD15 thyroid 1.04e+00 0.000286 0 19:32747302-19:34262922
12116 19 34112861 34264414 CHST8 psychencode -7.26e-01 0.000218 0 19:32747302-19:34262922
3840 19 34745442 34846491 KIAA0355 yfs.blood.rnaarr 1.90e-01 0.000171 0 19:32747302-19:34262922
3797 19 33071974 33078358 PDCD5 whole_blood -4.81e-01 0.000193 0 19:32747302-19:34262922
12530 19 34745442 34846491 KIAA0355 psychencode -6.54e-01 0.000208 0 19:32747302-19:34262922
3699 19 33571786 33621448 GPATCH1 yfs.blood.rnaarr 1.78e+00 0.000761 0 19:32747302-19:34262922
3698 19 33469499 33555794 RHPN2 brain_cerebellum -1.80e+00 0.000773 0 19:32747302-19:34262922
11876 19 33071974 33078358 PDCD5 psychencode -1.51e+00 0.000486 0 19:32747302-19:34262922
3794 19 34745455 34846471 KIAA0355 cmc.brain.rnaseq -5.47e-01 0.000195 0 19:32747302-19:34262922
3788 19 34112861 34264414 CHST8 brain_caudate_basal_ganglia -5.66e-01 0.000199 0 19:32747302-19:34262922
3781 19 33790840 33793470 CEBPA yfs.blood.rnaarr 6.50e-01 0.000210 0 19:32747302-19:34262922
3685 19 33571786 33621448 GPATCH1 whole_blood 2.30e+00 0.002140 0 19:32747302-19:34262922
3741 19 33177995 33182656 CTD-2538C1.2 brain_frontal_cortex_ba9 -1.09e+00 0.000291 0 19:32747302-19:34262922
3720 19 33182867 33204702 NUDT19 thyroid -1.41e+00 0.000424 0 19:32747302-19:34262922
3752 19 33177995 33182656 CTD-2538C1.2 pituitary -9.99e-01 0.000267 0 19:32747302-19:34262922
13449 19 33793763 33795960 CEBPA-AS1 psychencode -1.20e+00 0.000342 0 19:32747302-19:34262922
12529 19 33622996 33666701 WDR88 psychencode 1.26e+00 0.000354 0 19:32747302-19:34262922
13452 19 33177995 33182656 CTD-2538C1.2 psychencode -1.02e+00 0.000273 0 19:32747302-19:34262922
3718 19 33177995 33182656 CTD-2538C1.2 whole_blood -1.43e+00 0.000435 0 19:32747302-19:34262922
3713 19 33177995 33182656 CTD-2538C1.2 brain_caudate_basal_ganglia -1.49e+00 0.000475 0 19:32747302-19:34262922
3696 19 33622997 33666703 WDR88 cmc.brain.rnaseq 1.82e+00 0.000805 0 19:32747302-19:34262922
3820 19 33877854 34012799 PEPD cmc.brain.rnaseq 2.49e-01 0.000177 0 19:32747302-19:34262922
3734 19 33622996 33666701 WDR88 brain_amygdala 1.19e+00 0.000324 0 19:32747302-19:34262922
3702 19 33166313 33169206 RGS9BP adrenal_gland -1.78e+00 0.000747 0 19:32747302-19:34262922
3705 19 33469499 33555794 RHPN2 brain_caudate_basal_ganglia -1.67e+00 0.000617 0 19:32747302-19:34262922
3748 19 33469499 33555794 RHPN2 thyroid -1.06e+00 0.000285 0 19:32747302-19:34262922
3751 19 33469499 33555794 RHPN2 adrenal_gland -1.00e+00 0.000268 0 19:32747302-19:34262922
3714 19 33877856 34012700 PEPD brain_putamen_basal_ganglia 1.43e+00 0.000468 0 19:32747302-19:34262922
3740 19 33571786 33621448 GPATCH1 adrenal_gland 1.11e+00 0.000299 0 19:32747302-19:34262922
3684 19 33668509 33698694 LRP3 yfs.blood.rnaarr 2.33e+00 0.002230 0 19:32747302-19:34262922
3694 19 33668509 33698694 LRP3 whole_blood 1.83e+00 0.000828 0 19:32747302-19:34262922
12167 19 33668509 33698694 LRP3 psychencode 1.30e+00 0.000367 0 19:32747302-19:34262922
3724 19 33877856 34012700 PEPD brain_amygdala 1.33e+00 0.000410 0 19:32747302-19:34262922
12680 19 32896449 32976801 DPY19L3 psychencode -1.44e+00 0.000471 0 19:32747302-19:34262922
3726 19 33071974 33078358 PDCD5 brain_substantia_nigra -1.32e+00 0.000392 0 19:32747302-19:34262922
12185 20 39969560 39989222 LPIN3 psychencode -3.04e-01 0.000350 0 20:39610856-20:40585689
12935 20 39314488 39317880 MAFB psychencode -4.65e+00 0.341000 1 20:39610856-20:40585689
4749 20 39969559 39989222 LPIN3 cmc.brain.rnaseq -1.46e-01 0.000285 0 20:39610856-20:40585689
4743 20 39726978 39766643 RP1-1J6.2 thyroid -1.99e+00 0.000464 0 20:39610856-20:40585689
12103 20 40030741 40247133 CHD6 psychencode -4.17e+00 0.042300 0 20:39610856-20:40585689
4744 20 39989223 39995467 EMILIN3 thyroid 1.76e+00 0.000379 0 20:39610856-20:40585689
4748 20 39969560 39988605 LPIN3 brain_caudate_basal_ganglia -2.62e-01 0.000286 0 20:39610856-20:40585689
4745 20 39726978 39766643 RP1-1J6.2 whole_blood 1.31e+00 0.000365 0 20:39610856-20:40585689
4738 20 40031169 40247133 CHD6 cmc.brain.rnaseq_splicing 4.34e+00 0.089800 1 20:39610856-20:40585689
4741 20 40030741 40247133 CHD6 brain_cerebellum 4.30e-01 0.000614 0 20:39610856-20:40585689
12634 20 39807088 39946312 ZHX3 psychencode 1.77e+00 0.000405 0 20:39610856-20:40585689
13166 20 40087994 40090584 RP4-620E11.4 psychencode -3.13e-01 0.000265 0 20:39610856-20:40585689
12758 20 39988606 39995467 EMILIN3 psychencode 3.34e-01 0.000330 0 20:39610856-20:40585689
4737 20 39969560 39988605 LPIN3 thyroid -4.37e+00 0.098000 1 20:39610856-20:40585689
4746 20 39969560 39988605 LPIN3 brain_substantia_nigra -2.97e-01 0.000344 0 20:39610856-20:40585689
4750 20 39969560 39988605 LPIN3 brain_cerebellar_hemisphere -1.03e+00 0.000284 0 20:39610856-20:40585689
4747 20 39969560 39988605 LPIN3 pituitary -5.72e-01 0.000314 0 20:39610856-20:40585689
12104 20 39765600 39811629 PLCG1 psychencode 6.60e-01 0.000765 0 20:39610856-20:40585689
4735 20 39989223 39995467 EMILIN3 brain_amygdala -4.59e+00 0.250000 1 20:39610856-20:40585689
4736 20 39989223 39995467 EMILIN3 brain_nucleus_accumbens_basal_ganglia -4.43e+00 0.127000 1 20:39610856-20:40585689
4740 20 39989223 39995467 EMILIN3 brain_putamen_basal_ganglia -3.18e+00 0.001570 0 20:39610856-20:40585689
4739 20 39989223 39995467 EMILIN3 brain_anterior_cingulate_cortex_ba24 -3.34e+00 0.002550 0 20:39610856-20:40585689
4742 20 39989223 39995467 EMILIN3 brain_caudate_basal_ganglia -2.48e+00 0.000495 0 20:39610856-20:40585689
4802 20 47240792 47444420 PREX1 cmc.brain.rnaseq_splicing -8.07e-01 0.000227 0 20:44839056-20:47199980
4765 20 45092541 45093763 MKRN7P brain_caudate_basal_ganglia 1.80e+00 0.000780 0 20:44839056-20:47199980
4837 20 47240790 47444420 PREX1 brain_cerebellum -2.23e-01 0.000169 0 20:44839056-20:47199980
4775 20 45092541 45093763 MKRN7P brain_hypothalamus 1.39e+00 0.000418 0 20:44839056-20:47199980
4764 20 45092541 45093763 MKRN7P brain_cortex 1.83e+00 0.000831 0 20:44839056-20:47199980
12364 20 44802372 44937137 CDH22 psychencode -6.19e-01 0.000204 0 20:44839056-20:47199980
4828 20 45042867 45087915 ZNF663P adrenal_gland 3.63e-01 0.000178 0 20:44839056-20:47199980
4832 20 46130601 46285621 NCOA3 whole_blood -3.18e-01 0.000174 0 20:44839056-20:47199980
4785 20 47538427 47653230 ARFGEF2 whole_blood -1.19e+00 0.000332 0 20:44839056-20:47199980
4822 20 47538427 47653230 ARFGEF2 brain_cortex 4.48e-01 0.000182 0 20:44839056-20:47199980
4816 20 44746911 44758502 CD40 yfs.blood.rnaarr -5.31e-01 0.000191 0 20:44839056-20:47199980
12102 20 46130601 46285621 NCOA3 psychencode -2.40e+00 0.002690 0 20:44839056-20:47199980
4836 20 44518783 44527398 CTSA brain_hippocampus 1.02e-01 0.000170 0 20:44839056-20:47199980
4753 20 44527258 44541003 PLTP cmc.brain.rnaseq 2.52e+00 0.003540 0 20:44839056-20:47199980
4756 20 44527460 44540794 PLTP adrenal_gland -2.26e+00 0.001940 0 20:44839056-20:47199980
4792 20 47662782 47713497 CSE1L cmc.brain.rnaseq -9.86e-01 0.000265 0 20:44839056-20:47199980
4793 20 47240792 47444420 PREX1 cmc.brain.rnaseq_splicing 9.46e-01 0.000256 0 20:44839056-20:47199980
4776 20 44462469 44471914 SNX21 cmc.brain.rnaseq_splicing -1.34e+00 0.000399 0 20:44839056-20:47199980
4787 20 45092541 45093763 MKRN7P pituitary 1.18e+00 0.000323 0 20:44839056-20:47199980
4762 20 44527460 44540794 PLTP brain_cerebellum -1.89e+00 0.000941 0 20:44839056-20:47199980
4821 20 44527460 44540794 PLTP thyroid -4.37e-01 0.000183 0 20:44839056-20:47199980
4777 20 45313004 45318297 TP53RK whole_blood -1.34e+00 0.000399 0 20:44839056-20:47199980
4755 20 46130601 46285621 NCOA3 brain_substantia_nigra 2.32e+00 0.002270 0 20:44839056-20:47199980
4823 20 45042867 45087915 ZNF663P brain_hypothalamus 4.37e-01 0.000182 0 20:44839056-20:47199980
4757 20 44462449 44471385 SNX21 thyroid -2.20e+00 0.001690 0 20:44839056-20:47199980
4768 20 44451853 44462384 TNNC2 brain_caudate_basal_ganglia 1.69e+00 0.000647 0 20:44839056-20:47199980
4769 20 44746911 44758502 CD40 brain_amygdala 1.67e+00 0.000635 0 20:44839056-20:47199980
4758 20 44518783 44527398 CTSA brain_cerebellar_hemisphere 2.09e+00 0.001390 0 20:44839056-20:47199980
11730 20 44978167 44993043 SLC35C2 psychencode 2.37e-01 0.000171 0 20:44839056-20:47199980
4752 20 46285092 46415360 SULF2 yfs.blood.rnaarr 2.55e+00 0.003800 0 20:44839056-20:47199980
4845 20 47240790 47444420 PREX1 whole_blood -1.43e-01 0.000167 0 20:44839056-20:47199980
4833 20 44451853 44462384 TNNC2 yfs.blood.rnaarr -1.20e-01 0.000173 0 20:44839056-20:47199980
4751 20 44420576 44440066 DNTTIP1 adrenal_gland 3.00e+00 0.012700 0 20:44839056-20:47199980
4804 20 44517264 44517526 NEURL2 adrenal_gland 7.49e-01 0.000219 0 20:44839056-20:47199980
4826 20 44527460 44540794 PLTP pituitary -4.18e-01 0.000180 0 20:44839056-20:47199980
4817 20 44470359 44486048 ACOT8 cmc.brain.rnaseq_splicing -5.14e-01 0.000190 0 20:44839056-20:47199980
4774 20 45092541 45093763 MKRN7P brain_putamen_basal_ganglia 1.39e+00 0.000421 0 20:44839056-20:47199980
4773 20 45092541 45093763 MKRN7P thyroid 1.44e+00 0.000447 0 20:44839056-20:47199980
4818 20 44563267 44576662 PCIF1 adrenal_gland 5.34e-01 0.000189 0 20:44839056-20:47199980
13064 20 45092541 45093763 MKRN7P psychencode 1.40e+00 0.000427 0 20:44839056-20:47199980
12098 20 44462449 44471914 SNX21 psychencode -1.86e+00 0.000876 0 20:44839056-20:47199980
4839 20 45042867 45087915 ZNF663P brain_anterior_cingulate_cortex_ba24 1.90e-01 0.000169 0 20:44839056-20:47199980
12099 20 44376583 44420571 WFDC3 psychencode 2.33e-01 0.000172 0 20:44839056-20:47199980
4812 20 45042867 45087915 ZNF663P pituitary 6.02e-01 0.000197 0 20:44839056-20:47199980
4784 20 44577292 44600833 ZNF335 brain_caudate_basal_ganglia 1.20e+00 0.000341 0 20:44839056-20:47199980
4842 20 45837859 45985567 ZMYND8 yfs.blood.rnaarr -2.00e-01 0.000169 0 20:44839056-20:47199980
4844 20 45042867 45087915 ZNF663P thyroid 8.71e-02 0.000167 0 20:44839056-20:47199980
4825 20 45129701 45142198 ZNF334 brain_putamen_basal_ganglia -3.95e-01 0.000181 0 20:44839056-20:47199980
4761 20 44637547 44645200 MMP9 yfs.blood.rnaarr 2.02e+00 0.001180 0 20:44839056-20:47199980
4838 20 44642174 44650712 RP11-465L10.10 adrenal_gland -1.49e-01 0.000169 0 20:44839056-20:47199980
4808 20 46130601 46285621 NCOA3 thyroid 7.20e-01 0.000213 0 20:44839056-20:47199980
4794 20 44994689 45061704 ELMO2 cmc.brain.rnaseq_splicing 9.42e-01 0.000255 0 20:44839056-20:47199980
4796 20 45338126 45364965 SLC2A10 adrenal_gland 9.38e-01 0.000253 0 20:44839056-20:47199980
4824 20 44746911 44758502 CD40 brain_cerebellum -4.33e-01 0.000181 0 20:44839056-20:47199980
4831 20 45523263 45817492 EYA2 thyroid -3.47e-01 0.000175 0 20:44839056-20:47199980
4798 20 45113100 45121279 ZNF840 thyroid -8.52e-01 0.000247 0 20:44839056-20:47199980
4819 20 45338126 45364965 SLC2A10 pituitary 4.93e-01 0.000189 0 20:44839056-20:47199980
13019 20 45042867 45087915 ZNF663P psychencode -1.36e+00 0.000407 0 20:44839056-20:47199980
4797 20 44746911 44758502 CD40 brain_hypothalamus -9.01e-01 0.000249 0 20:44839056-20:47199980
4835 20 45129701 45142198 ZNF334 adrenal_gland 1.58e-01 0.000170 0 20:44839056-20:47199980
4789 20 45092298 45093931 MKRN7P cmc.brain.rnaseq 1.13e+00 0.000305 0 20:44839056-20:47199980
12862 20 46285092 46415360 SULF2 psychencode 1.57e+00 0.000546 0 20:44839056-20:47199980
4790 20 45092541 45093763 MKRN7P brain_cerebellum 1.11e+00 0.000301 0 20:44839056-20:47199980
4754 20 46285654 46414808 SULF2 ntr.blood.rnaarr 2.37e+00 0.002480 0 20:44839056-20:47199980
4840 20 45129701 45142198 ZNF334 thyroid 7.16e-02 0.000169 0 20:44839056-20:47199980
4843 20 45128268 45142198 ZNF334 cmc.brain.rnaseq 1.11e-01 0.000168 0 20:44839056-20:47199980
4771 20 46130600 46285621 NCOA3 cmc.brain.rnaseq_splicing 1.62e+00 0.000591 0 20:44839056-20:47199980
4807 20 44577292 44600833 ZNF335 whole_blood 7.21e-01 0.000214 0 20:44839056-20:47199980
4810 20 44376583 44420571 WFDC3 brain_cerebellar_hemisphere -6.22e-01 0.000200 0 20:44839056-20:47199980
4841 20 45129701 45142198 ZNF334 brain_cortex 4.91e-02 0.000169 0 20:44839056-20:47199980
12905 20 45129701 45142198 ZNF334 psychencode 8.08e-01 0.000227 0 20:44839056-20:47199980
4809 20 46285656 46415360 SULF2 whole_blood 5.48e-01 0.000202 0 20:44839056-20:47199980
4795 20 45129701 45142198 ZNF334 brain_caudate_basal_ganglia -8.99e-01 0.000253 0 20:44839056-20:47199980
4801 20 45092541 45093763 MKRN7P brain_nucleus_accumbens_basal_ganglia 8.61e-01 0.000237 0 20:44839056-20:47199980
12415 20 45186463 45304714 SLC13A3 psychencode 1.20e+00 0.000329 0 20:44839056-20:47199980
4834 20 45338126 45364965 SLC2A10 thyroid 2.67e-01 0.000171 0 20:44839056-20:47199980
4803 20 45092541 45093763 MKRN7P brain_cerebellar_hemisphere 7.75e-01 0.000222 0 20:44839056-20:47199980
4780 20 45186461 45313124 SLC13A3 cmc.brain.rnaseq 1.29e+00 0.000367 0 20:44839056-20:47199980
4759 20 45313004 45318418 TP53RK yfs.blood.rnaarr -2.04e+00 0.001270 0 20:44839056-20:47199980
4766 20 44746911 44758502 CD40 adrenal_gland -1.76e+00 0.000740 0 20:44839056-20:47199980
4814 20 44746911 44758502 CD40 brain_anterior_cingulate_cortex_ba24 5.20e-01 0.000193 0 20:44839056-20:47199980
4829 20 44376583 44420571 WFDC3 brain_amygdala -3.30e-01 0.000176 0 20:44839056-20:47199980
11675 20 45523263 45817492 EYA2 psychencode 1.63e+00 0.000593 0 20:44839056-20:47199980
4820 20 44651569 44688784 SLC12A5 brain_putamen_basal_ganglia 4.86e-01 0.000186 0 20:44839056-20:47199980
4763 20 44994688 45061704 ELMO2 brain_cortex 1.88e+00 0.000919 0 20:44839056-20:47199980
4815 20 45092541 45093763 MKRN7P adrenal_gland 5.40e-01 0.000192 0 20:44839056-20:47199980
4770 20 45186463 45304714 SLC13A3 brain_nucleus_accumbens_basal_ganglia 1.64e+00 0.000604 0 20:44839056-20:47199980
4846 20 44746911 44758502 CD40 whole_blood -8.99e-02 0.000167 0 20:44839056-20:47199980
4806 20 46988693 46999372 LINC00494 whole_blood -7.36e-01 0.000215 0 20:44839056-20:47199980
4799 20 44994688 45035690 ELMO2 ntr.blood.rnaarr 8.78e-01 0.000238 0 20:44839056-20:47199980
4778 20 45186463 45304714 SLC13A3 brain_anterior_cingulate_cortex_ba24 1.32e+00 0.000382 0 20:44839056-20:47199980
12894 20 45338126 45364965 SLC2A10 psychencode 2.49e+00 0.003370 0 20:44839056-20:47199980
4805 20 44994688 45061704 ELMO2 pituitary -7.38e-01 0.000216 0 20:44839056-20:47199980
4767 20 44746911 44758502 CD40 brain_cerebellar_hemisphere 1.69e+00 0.000680 0 20:44839056-20:47199980
4779 20 45186463 45304714 SLC13A3 brain_cerebellum 1.30e+00 0.000372 0 20:44839056-20:47199980
4830 20 44689624 44718591 NCOA5 brain_cerebellar_hemisphere -3.36e-01 0.000176 0 20:44839056-20:47199980
4811 20 44470359 44486048 ACOT8 cmc.brain.rnaseq 5.85e-01 0.000198 0 20:44839056-20:47199980
4781 20 45186463 45304714 SLC13A3 thyroid -1.27e+00 0.000358 0 20:44839056-20:47199980
4786 20 47240790 47444420 PREX1 brain_anterior_cingulate_cortex_ba24 -1.19e+00 0.000329 0 20:44839056-20:47199980
4782 20 45186463 45304714 SLC13A3 brain_cortex 1.26e+00 0.000355 0 20:44839056-20:47199980
11839 20 44746911 44758502 CD40 psychencode -2.49e-01 0.000172 0 20:44839056-20:47199980
4783 20 45186463 45304714 SLC13A3 brain_frontal_cortex_ba9 1.25e+00 0.000350 0 20:44839056-20:47199980
12100 20 47240790 47444420 PREX1 psychencode 4.53e-01 0.000183 0 20:44839056-20:47199980
4791 20 47240790 47444420 PREX1 thyroid 9.94e-01 0.000266 0 20:44839056-20:47199980
4827 20 44746905 44758384 CD40 ntr.blood.rnaarr -4.18e-01 0.000180 0 20:44839056-20:47199980
4788 20 45186463 45304714 SLC13A3 pituitary 1.13e+00 0.000310 0 20:44839056-20:47199980
4772 20 44746911 44758502 CD40 brain_cortex 1.44e+00 0.000453 0 20:44839056-20:47199980
4813 20 45186463 45304714 SLC13A3 adrenal_gland 5.68e-01 0.000194 0 20:44839056-20:47199980
11840 20 44470360 44486045 ACOT8 psychencode 8.84e-01 0.000242 0 20:44839056-20:47199980
4800 20 45186463 45304714 SLC13A3 brain_cerebellar_hemisphere 8.68e-01 0.000238 0 20:44839056-20:47199980
4760 20 44517264 44517526 NEURL2 thyroid 2.05e+00 0.001240 0 20:44839056-20:47199980
4915 20 48789087 48793096 RP11-112L6.4 pituitary -7.16e-01 0.000345 0 20:47199980-20:49239658
4913 20 48780001 48782639 RP11-112L6.3 brain_caudate_basal_ganglia -7.95e-01 0.000366 0 20:47199980-20:49239658
4871 20 48909256 48931456 LOC284751 cmc.brain.rnaseq 2.09e+00 0.002270 0 20:47199980-20:49239658
4919 20 48780001 48782639 RP11-112L6.3 brain_putamen_basal_ganglia -7.21e-01 0.000338 0 20:47199980-20:49239658
4860 20 48573282 48574569 KRT18P4 brain_cerebellum 2.83e+00 0.006760 0 20:47199980-20:49239658
4924 20 48780001 48782639 RP11-112L6.3 pituitary -7.25e-01 0.000327 0 20:47199980-20:49239658
4901 20 48789087 48793096 RP11-112L6.4 thyroid -9.15e-01 0.000429 0 20:47199980-20:49239658
12898 20 48429250 48508779 SLC9A8 psychencode 2.21e+00 0.001710 0 20:47199980-20:49239658
4900 20 48909257 48931459 RP11-290F20.1 thyroid 9.91e-01 0.000431 0 20:47199980-20:49239658
4866 20 48429250 48508779 SLC9A8 brain_amygdala 2.90e+00 0.004510 0 20:47199980-20:49239658
4876 20 48909256 48931459 LOC284751 ntr.blood.rnaarr 1.74e+00 0.000950 0 20:47199980-20:49239658
4918 20 48789087 48793096 RP11-112L6.4 brain_cortex -6.62e-01 0.000338 0 20:47199980-20:49239658
4939 20 49411431 49493714 BCAS4 brain_nucleus_accumbens_basal_ganglia -4.11e-01 0.000247 0 20:47199980-20:49239658
4873 20 48429249 48508779 SLC9A8 cmc.brain.rnaseq 2.24e+00 0.001300 0 20:47199980-20:49239658
4929 20 48552948 48570429 RNF114 thyroid 6.52e-01 0.000281 0 20:47199980-20:49239658
13205 20 48697663 48770335 TMEM189 psychencode -6.06e-01 0.000293 0 20:47199980-20:49239658
13135 20 48789087 48793096 RP11-112L6.4 psychencode -8.52e-01 0.000403 0 20:47199980-20:49239658
4905 20 48780001 48782639 RP11-112L6.3 brain_nucleus_accumbens_basal_ganglia -8.90e-01 0.000405 0 20:47199980-20:49239658
4926 20 48599536 48605423 SNAI1 brain_nucleus_accumbens_basal_ganglia 2.76e-01 0.000288 0 20:47199980-20:49239658
4867 20 48429250 48508779 SLC9A8 brain_cerebellum 2.51e+00 0.003850 0 20:47199980-20:49239658
12859 20 49126891 49201299 PTPN1 psychencode -2.03e+00 0.001180 0 20:47199980-20:49239658
4893 20 48909257 48931459 RP11-290F20.1 brain_caudate_basal_ganglia 1.19e+00 0.000524 0 20:47199980-20:49239658
4923 20 48909257 48931459 RP11-290F20.1 whole_blood 8.02e-01 0.000332 0 20:47199980-20:49239658
4861 20 49551404 49575092 DPM1 brain_frontal_cortex_ba9 -2.81e+00 0.006650 0 20:47199980-20:49239658
4882 20 48429250 48508779 SLC9A8 brain_hippocampus 1.69e+00 0.000781 0 20:47199980-20:49239658
4904 20 48789087 48793096 RP11-112L6.4 adrenal_gland -8.32e-01 0.000407 0 20:47199980-20:49239658
4874 20 47729875 47805288 STAU1 cmc.brain.rnaseq_splicing 3.24e+00 0.001210 0 20:47199980-20:49239658
4872 20 47980414 48099184 KCNB1 whole_blood -3.21e+00 0.001600 0 20:47199980-20:49239658
4921 20 48429250 48508779 SLC9A8 brain_cortex 1.12e+00 0.000336 0 20:47199980-20:49239658
4869 20 49575363 49577820 MOCS3 brain_cerebellum -2.46e+00 0.002520 0 20:47199980-20:49239658
12101 20 47240790 47444420 PREX1 psychencode -2.07e-01 0.000271 0 20:47199980-20:49239658
4916 20 47240792 47444420 PREX1 cmc.brain.rnaseq_splicing -1.24e+00 0.000341 0 20:47199980-20:49239658
4937 20 48697663 48770335 TMEM189 yfs.blood.rnaarr 3.56e-01 0.000251 0 20:47199980-20:49239658
4938 20 47240792 47444420 PREX1 cmc.brain.rnaseq_splicing 2.85e-01 0.000251 0 20:47199980-20:49239658
4895 20 47729875 47805288 STAU1 cmc.brain.rnaseq -2.49e+00 0.000457 0 20:47199980-20:49239658
4879 20 47729878 47804904 STAU1 brain_frontal_cortex_ba9 -2.75e+00 0.000831 0 20:47199980-20:49239658
4940 20 47240792 47444420 PREX1 cmc.brain.rnaseq_splicing -1.43e-01 0.000245 0 20:47199980-20:49239658
4858 20 47729878 47804904 STAU1 adrenal_gland -4.06e+00 0.015600 0 20:47199980-20:49239658
4857 20 47854483 47894714 ZNFX1 whole_blood -4.04e+00 0.017900 0 20:47199980-20:49239658
4912 20 48789087 48793096 RP11-112L6.4 brain_frontal_cortex_ba9 -8.06e-01 0.000373 0 20:47199980-20:49239658
4899 20 48884023 48896332 RP11-290F20.3 whole_blood -1.25e+00 0.000447 0 20:47199980-20:49239658
4902 20 47538274 47653230 ARFGEF2 cmc.brain.rnaseq -1.09e+00 0.000425 0 20:47199980-20:49239658
4908 20 48780001 48782639 RP11-112L6.3 adrenal_gland -9.34e-01 0.000395 0 20:47199980-20:49239658
4925 20 48909257 48931459 RP11-290F20.1 brain_cortex 5.77e-01 0.000292 0 20:47199980-20:49239658
4935 20 47240790 47444420 PREX1 brain_cerebellum 6.52e-01 0.000259 0 20:47199980-20:49239658
4884 20 47894964 47905797 ZFAS1 whole_blood -6.66e-01 0.000748 0 20:47199980-20:49239658
12933 20 48909257 48931459 RP11-290F20.1 psychencode 9.49e-01 0.000397 0 20:47199980-20:49239658
4877 20 47538427 47653230 ARFGEF2 whole_blood -2.16e+00 0.000939 0 20:47199980-20:49239658
4903 20 47894964 47905797 ZFAS1 thyroid 2.19e+00 0.000422 0 20:47199980-20:49239658
13191 20 48445662 48447622 RP5-1041C10.3 psychencode 2.04e+00 0.001020 0 20:47199980-20:49239658
4922 20 47538427 47653230 ARFGEF2 brain_cortex -1.67e+00 0.000335 0 20:47199980-20:49239658
12105 20 47538427 47653230 ARFGEF2 psychencode -1.27e+00 0.000408 0 20:47199980-20:49239658
12661 20 47894715 47905797 ZFAS1 psychencode -2.43e+00 0.000696 0 20:47199980-20:49239658
4909 20 48807376 48809212 CEBPB yfs.blood.rnaarr -1.20e+00 0.000393 0 20:47199980-20:49239658
4849 20 48519928 48532080 SPATA2 thyroid -3.82e+00 0.174000 1 20:47199980-20:49239658
4885 20 47854483 47894963 ZNFX1 yfs.blood.rnaarr -2.84e+00 0.000681 0 20:47199980-20:49239658
4848 20 47662782 47713497 CSE1L cmc.brain.rnaseq -4.70e+00 0.310000 1 20:47199980-20:49239658
4928 20 48927248 48937879 RP11-290F20.2 whole_blood 6.10e-01 0.000281 0 20:47199980-20:49239658
4887 20 48429250 48508779 SLC9A8 thyroid 1.37e+00 0.000591 0 20:47199980-20:49239658
12112 20 48552948 48570429 RNF114 psychencode 2.96e+00 0.006790 0 20:47199980-20:49239658
4854 20 47662849 47713489 CSE1L adrenal_gland -4.21e+00 0.029100 1 20:47199980-20:49239658
4917 20 48552948 48570429 RNF114 brain_cerebellum 9.68e-01 0.000340 0 20:47199980-20:49239658
4855 20 47662849 47713489 CSE1L thyroid -4.19e+00 0.027300 1 20:47199980-20:49239658
4859 20 47662849 47713489 CSE1L yfs.blood.rnaarr -3.87e+00 0.008120 0 20:47199980-20:49239658
4875 20 48909257 48931459 RP11-290F20.1 pituitary 1.55e+00 0.000991 0 20:47199980-20:49239658
4890 20 47854483 47894714 ZNFX1 thyroid -2.51e+00 0.000558 0 20:47199980-20:49239658
4906 20 48789087 48793096 RP11-112L6.4 brain_hypothalamus -8.85e-01 0.000402 0 20:47199980-20:49239658
4897 20 48573282 48574569 KRT18P4 brain_cerebellar_hemisphere 1.53e+00 0.000453 0 20:47199980-20:49239658
12110 20 47729878 47804904 STAU1 psychencode -3.83e+00 0.008110 0 20:47199980-20:49239658
4896 20 47894714 47905797 NCRNA00275 ntr.blood.rnaarr -7.49e-01 0.000456 0 20:47199980-20:49239658
4934 20 48519928 48532080 SPATA2 brain_cerebellum 6.62e-01 0.000260 0 20:47199980-20:49239658
4920 20 48789087 48793096 RP11-112L6.4 brain_anterior_cingulate_cortex_ba24 -6.79e-01 0.000336 0 20:47199980-20:49239658
4941 20 49126891 49201299 PTPN1 brain_hippocampus -4.03e-01 0.000244 0 20:47199980-20:49239658
4942 20 49411431 49493714 BCAS4 brain_caudate_basal_ganglia -4.75e-02 0.000242 0 20:47199980-20:49239658
4932 20 49126891 49201299 PTPN1 yfs.blood.rnaarr -1.51e-01 0.000260 0 20:47199980-20:49239658
12113 20 47835884 47860614 DDX27 psychencode 4.37e+00 0.058000 1 20:47199980-20:49239658
4894 20 48249482 48330415 B4GALT5 brain_cerebellum -1.19e+00 0.000518 0 20:47199980-20:49239658
13105 20 48573282 48574569 KRT18P4 psychencode 2.46e+00 0.003610 0 20:47199980-20:49239658
4847 20 47835831 47860614 DDX27 cmc.brain.rnaseq 4.75e+00 0.354000 1 20:47199980-20:49239658
4892 20 48552907 48570474 RNF114 ntr.blood.rnaarr 1.25e+00 0.000540 0 20:47199980-20:49239658
4907 20 48789087 48793096 RP11-112L6.4 brain_caudate_basal_ganglia -8.71e-01 0.000402 0 20:47199980-20:49239658
4856 20 49551404 49575092 DPM1 brain_caudate_basal_ganglia -3.25e+00 0.019000 1 20:47199980-20:49239658
4865 20 48249482 48330415 B4GALT5 yfs.blood.rnaarr 3.17e+00 0.004680 0 20:47199980-20:49239658
4880 20 48552948 48570429 RNF114 whole_blood -1.65e+00 0.000806 0 20:47199980-20:49239658
4914 20 48552948 48570429 RNF114 yfs.blood.rnaarr 9.61e-01 0.000353 0 20:47199980-20:49239658
11648 20 49202645 49308065 FAM65C psychencode 2.17e+00 0.002710 0 20:47199980-20:49239658
12111 20 48599536 48605423 SNAI1 psychencode 5.48e-01 0.000301 0 20:47199980-20:49239658
4863 20 47729878 47804904 STAU1 brain_cortex -3.66e+00 0.005240 0 20:47199980-20:49239658
4864 20 48573282 48574569 KRT18P4 thyroid 2.64e+00 0.004680 0 20:47199980-20:49239658
12417 20 48249482 48330415 B4GALT5 psychencode -6.13e-01 0.000305 0 20:47199980-20:49239658
4850 20 48429250 48508779 SLC9A8 brain_hypothalamus 3.50e+00 0.105000 1 20:47199980-20:49239658
4853 20 47835884 47860614 DDX27 brain_cerebellar_hemisphere -3.90e+00 0.036100 1 20:47199980-20:49239658
12418 20 48519928 48532080 SPATA2 psychencode 1.86e+00 0.000947 0 20:47199980-20:49239658
4888 20 49411431 49493714 BCAS4 brain_cerebellum 1.39e+00 0.000591 0 20:47199980-20:49239658
4889 20 47835884 47860614 DDX27 brain_cerebellum -2.61e+00 0.000574 0 20:47199980-20:49239658
4891 20 47835884 47860614 DDX27 thyroid -5.70e-02 0.000556 0 20:47199980-20:49239658
4927 20 47240790 47444420 PREX1 brain_anterior_cingulate_cortex_ba24 -5.76e-01 0.000287 0 20:47199980-20:49239658
12107 20 47662849 47713489 CSE1L psychencode -4.37e+00 0.057000 1 20:47199980-20:49239658
4898 20 47835884 47860614 DDX27 brain_substantia_nigra 1.69e+00 0.000448 0 20:47199980-20:49239658
4883 20 48909257 48931459 RP11-290F20.1 adrenal_gland 1.48e+00 0.000771 0 20:47199980-20:49239658
12109 20 48120411 48184683 PTGIS psychencode -2.07e+00 0.001670 0 20:47199980-20:49239658
4851 20 47729875 47805288 STAU1 cmc.brain.rnaseq_splicing 4.43e+00 0.069600 1 20:47199980-20:49239658
13377 20 49547521 49561671 RP5-914P20.5 psychencode -8.55e-02 0.000250 0 20:47199980-20:49239658
12106 20 47854483 47894963 ZNFX1 psychencode -2.03e+00 0.000369 0 20:47199980-20:49239658
4930 20 48249482 48330421 B4GALT5 cmc.brain.rnaseq -5.22e-01 0.000272 0 20:47199980-20:49239658
4911 20 48697661 48732496 UBE2V1 pituitary 1.19e+00 0.000380 0 20:47199980-20:49239658
4936 20 47240790 47444420 PREX1 thyroid -4.71e-01 0.000259 0 20:47199980-20:49239658
4933 20 48552948 48570429 RNF114 brain_cerebellar_hemisphere 2.22e-01 0.000260 0 20:47199980-20:49239658
4862 20 48249482 48330415 B4GALT5 brain_cortex -1.78e+00 0.005310 0 20:47199980-20:49239658
4931 20 47240790 47444420 PREX1 whole_blood -6.40e-01 0.000272 0 20:47199980-20:49239658
12108 20 48697661 48770174 TMEM189-UBE2V1 psychencode 1.76e+00 0.000585 0 20:47199980-20:49239658
4886 20 47896849 47896952 SNORD12B ntr.blood.rnaarr -2.65e+00 0.000621 0 20:47199980-20:49239658
11631 20 49620193 49639666 KCNG1 psychencode -1.10e+00 0.000494 0 20:47199980-20:49239658
4878 20 47729878 47804904 STAU1 brain_anterior_cingulate_cortex_ba24 -2.93e+00 0.000883 0 20:47199980-20:49239658
4868 20 48599536 48605423 SNAI1 brain_putamen_basal_ganglia 2.25e+00 0.003090 0 20:47199980-20:49239658
12114 20 49411431 49493714 BCAS4 psychencode 1.07e+00 0.000323 0 20:47199980-20:49239658
4881 20 49411466 49493714 BCAS4 cmc.brain.rnaseq 1.62e+00 0.000792 0 20:47199980-20:49239658
4870 20 47896856 47896946 SNORD12B whole_blood -3.47e+00 0.002490 0 20:47199980-20:49239658
4852 20 48429250 48508779 SLC9A8 brain_cerebellar_hemisphere 3.38e+00 0.037800 1 20:47199980-20:49239658
4910 20 48789087 48793096 RP11-112L6.4 brain_nucleus_accumbens_basal_ganglia -8.27e-01 0.000382 0 20:47199980-20:49239658
5162 21 47063608 47362368 PCBP3 brain_cortex -2.07e-01 0.000219 0 21:46177675-21:47491975
5035 21 47656743 47706211 MCM3AP brain_caudate_basal_ganglia -1.15e+00 0.000363 0 21:46177675-21:47491975
5090 21 47656743 47706211 MCM3AP whole_blood 7.51e-01 0.000261 0 21:46177675-21:47491975
5065 21 47612391 47613673 AP001468.1 thyroid -8.71e-01 0.000294 0 21:46177675-21:47491975
4977 21 46707967 46711653 BX322557.10 brain_hippocampus -1.86e+00 0.000732 0 21:46177675-21:47491975
5131 21 47612391 47613673 AP001468.1 brain_nucleus_accumbens_basal_ganglia -3.13e-01 0.000226 0 21:46177675-21:47491975
5139 21 47612391 47613673 AP001468.1 brain_anterior_cingulate_cortex_ba24 3.00e-01 0.000224 0 21:46177675-21:47491975
5009 21 47656743 47706211 MCM3AP brain_putamen_basal_ganglia 1.50e+00 0.000519 0 21:46177675-21:47491975
5041 21 45770046 45862964 TRPM2 brain_putamen_basal_ganglia 6.87e-01 0.000342 0 21:46177675-21:47491975
5050 21 46188955 46221934 UBE2G2 brain_substantia_nigra 9.28e-01 0.000322 0 21:46177675-21:47491975
5029 21 46419122 46424642 LINC00162 brain_hippocampus -7.98e-01 0.000406 0 21:46177675-21:47491975
4974 21 46494484 46646478 ADARB1 thyroid -1.44e+00 0.000769 0 21:46177675-21:47491975
4962 21 46707967 46711653 BX322557.10 brain_cerebellum -2.06e+00 0.000903 0 21:46177675-21:47491975
5095 21 45770046 45862964 TRPM2 whole_blood -3.99e-01 0.000252 0 21:46177675-21:47491975
5072 21 46188955 46221934 UBE2G2 brain_amygdala 7.27e-01 0.000282 0 21:46177675-21:47491975
4957 21 46713200 46717269 LINC00205 brain_cerebellar_hemisphere -2.11e+00 0.001070 0 21:46177675-21:47491975
4976 21 46713200 46717269 LINC00205 brain_hippocampus -1.87e+00 0.000735 0 21:46177675-21:47491975
5152 21 47612391 47613673 AP001468.1 whole_blood 2.94e-01 0.000221 0 21:46177675-21:47491975
5011 21 47649131 47679304 MCM3AP-AS1 adrenal_gland -1.50e+00 0.000511 0 21:46177675-21:47491975
5136 21 45749115 45759258 C21orf2 brain_caudate_basal_ganglia 3.46e-02 0.000225 0 21:46177675-21:47491975
5000 21 45875369 45878739 LRRC3 thyroid -1.22e+00 0.000552 0 21:46177675-21:47491975
5085 21 46269500 46293752 PTTG1IP brain_cerebellum 4.67e-01 0.000264 0 21:46177675-21:47491975
4972 21 46491648 46494080 SSR4P1 brain_cerebellar_hemisphere -1.31e+00 0.000782 0 21:46177675-21:47491975
4946 21 46494484 46646478 ADARB1 brain_anterior_cingulate_cortex_ba24 -2.73e+00 0.003220 1 21:46177675-21:47491975
12435 21 46359925 46396904 FAM207A psychencode -1.80e+00 0.001750 0 21:46177675-21:47491975
5004 21 46409779 46414001 LINC00163 brain_substantia_nigra 1.66e+00 0.000539 0 21:46177675-21:47491975
5013 21 46683843 46707813 POFUT2 yfs.blood.rnaarr -2.48e-01 0.000497 0 21:46177675-21:47491975
12806 21 46683843 46707813 POFUT2 psychencode -1.49e+00 0.000446 0 21:46177675-21:47491975
5122 21 46188955 46221934 UBE2G2 brain_cortex -2.91e-01 0.000232 0 21:46177675-21:47491975
4948 21 46494484 46646478 ADARB1 brain_cerebellum 2.56e+00 0.002060 1 21:46177675-21:47491975
5124 21 46188955 46221934 UBE2G2 thyroid -3.50e-01 0.000230 0 21:46177675-21:47491975
12738 21 46352729 46359828 C21orf67 psychencode 2.03e+00 0.002620 1 21:46177675-21:47491975
5078 21 47649131 47679304 MCM3AP-AS1 brain_cerebellum 5.56e-01 0.000273 0 21:46177675-21:47491975
4993 21 46707967 46711653 BX322557.10 brain_amygdala -1.76e+00 0.000618 0 21:46177675-21:47491975
5088 21 46269500 46293752 PTTG1IP adrenal_gland 5.63e-01 0.000262 0 21:46177675-21:47491975
4963 21 46707967 46711653 BX322557.10 brain_nucleus_accumbens_basal_ganglia -2.00e+00 0.000870 0 21:46177675-21:47491975
5148 21 46188955 46221934 UBE2G2 brain_cerebellum -2.25e-01 0.000222 0 21:46177675-21:47491975
5037 21 46494484 46646478 ADARB1 brain_cerebellar_hemisphere 1.19e-01 0.000354 0 21:46177675-21:47491975
5144 21 47649131 47679304 MCM3AP-AS1 brain_putamen_basal_ganglia -2.90e-01 0.000223 0 21:46177675-21:47491975
12772 21 46188955 46221934 UBE2G2 psychencode 2.93e-01 0.000226 0 21:46177675-21:47491975
5015 21 46491648 46494080 SSR4P1 brain_hypothalamus -8.93e-01 0.000479 0 21:46177675-21:47491975
4950 21 46494492 46646478 ADARB1 cmc.brain.rnaseq -2.51e+00 0.001840 0 21:46177675-21:47491975
5043 21 46225532 46238694 SUMO3 yfs.blood.rnaarr 2.27e-01 0.000341 0 21:46177675-21:47491975
5127 21 47655047 47706211 MCM3AP yfs.blood.rnaarr 3.70e-01 0.000228 0 21:46177675-21:47491975
5073 21 45749115 45759258 C21orf2 thyroid 6.47e-01 0.000281 0 21:46177675-21:47491975
4965 21 46707967 46711653 BX322557.10 thyroid -1.96e+00 0.000842 0 21:46177675-21:47491975
5081 21 45751117 45755734 AP001062.7 thyroid 5.84e-01 0.000269 0 21:46177675-21:47491975
5100 21 45751117 45755734 AP001062.7 adrenal_gland -5.82e-01 0.000245 0 21:46177675-21:47491975
5117 21 45751117 45755734 AP001062.7 brain_putamen_basal_ganglia 3.62e-01 0.000236 0 21:46177675-21:47491975
5080 21 45879814 45882078 LRRC3DN whole_blood 5.23e-01 0.000271 0 21:46177675-21:47491975
4989 21 46353198 46359828 C21orf67 cmc.brain.rnaseq 1.47e+00 0.000651 0 21:46177675-21:47491975
5063 21 46491648 46494080 SSR4P1 thyroid -7.81e-01 0.000297 0 21:46177675-21:47491975
5174 21 47649131 47679304 MCM3AP-AS1 thyroid -1.02e-01 0.000218 0 21:46177675-21:47491975
5101 21 46188494 46221751 UBE2G2 cmc.brain.rnaseq 6.16e-01 0.000244 0 21:46177675-21:47491975
4980 21 46707967 46711653 BX322557.10 brain_cortex -1.91e+00 0.000710 0 21:46177675-21:47491975
4997 21 46707967 46711653 BX322557.10 adrenal_gland -6.95e-01 0.000605 0 21:46177675-21:47491975
5130 21 47612391 47613673 AP001468.1 brain_hippocampus -3.53e-01 0.000227 0 21:46177675-21:47491975
5167 21 46269500 46293752 PTTG1IP thyroid -1.11e-01 0.000219 0 21:46177675-21:47491975
5056 21 47612391 47613673 AP001468.1 brain_cerebellum -1.05e+00 0.000302 0 21:46177675-21:47491975
5014 21 45751117 45755734 AP001062.7 brain_caudate_basal_ganglia 1.12e+00 0.000489 0 21:46177675-21:47491975
4955 21 46359925 46396904 FAM207A thyroid -1.58e+00 0.001210 0 21:46177675-21:47491975
12739 21 46269500 46293752 PTTG1IP psychencode 3.43e-01 0.000239 0 21:46177675-21:47491975
5044 21 46225532 46238694 SUMO3 brain_cerebellum 1.00e+00 0.000333 0 21:46177675-21:47491975
4981 21 47612391 47613673 AP001468.1 brain_caudate_basal_ganglia 1.66e+00 0.000704 0 21:46177675-21:47491975
5002 21 47653638 47705276 MCM3AP ntr.blood.rnaarr -1.37e+00 0.000540 0 21:46177675-21:47491975
4984 21 46713200 46717269 LINC00205 brain_putamen_basal_ganglia -1.81e+00 0.000681 0 21:46177675-21:47491975
5001 21 47655047 47705236 MCM3AP cmc.brain.rnaseq_splicing -1.53e+00 0.000545 0 21:46177675-21:47491975
12774 21 46225532 46238694 SUMO3 psychencode 1.11e+00 0.000295 0 21:46177675-21:47491975
5012 21 46269513 46293745 PTTG1IP ntr.blood.rnaarr -1.15e+00 0.000507 0 21:46177675-21:47491975
5030 21 46305867 46348788 ITGB2 ntr.blood.rnaarr -1.14e+00 0.000405 0 21:46177675-21:47491975
5069 21 46491648 46494080 SSR4P1 brain_frontal_cortex_ba9 -1.21e-01 0.000286 0 21:46177675-21:47491975
5018 21 46305868 46351904 ITGB2 whole_blood -1.38e+00 0.000464 0 21:46177675-21:47491975
5051 21 45751117 45755734 AP001062.7 brain_frontal_cortex_ba9 7.28e-01 0.000316 0 21:46177675-21:47491975
5098 21 46491648 46494080 SSR4P1 brain_caudate_basal_ganglia -5.90e-01 0.000247 0 21:46177675-21:47491975
4966 21 46707967 46711653 BX322557.10 brain_caudate_basal_ganglia -1.94e+00 0.000832 0 21:46177675-21:47491975
4973 21 46713200 46717269 LINC00205 brain_frontal_cortex_ba9 -1.90e+00 0.000775 0 21:46177675-21:47491975
4943 21 46269500 46293752 PTTG1IP brain_amygdala 2.99e+00 0.008640 1 21:46177675-21:47491975
5016 21 46269500 46293752 PTTG1IP whole_blood -5.57e-01 0.000473 0 21:46177675-21:47491975
5052 21 45751117 45755734 AP001062.7 brain_cerebellum 8.52e-01 0.000316 0 21:46177675-21:47491975
5083 21 45770046 45862964 TRPM2 brain_nucleus_accumbens_basal_ganglia 4.58e-01 0.000267 0 21:46177675-21:47491975
4969 21 46713200 46717269 LINC00205 brain_nucleus_accumbens_basal_ganglia -1.98e+00 0.000810 0 21:46177675-21:47491975
12439 21 47655047 47706211 MCM3AP psychencode -6.07e-01 0.000263 0 21:46177675-21:47491975
12890 21 46493768 46646478 ADARB1 psychencode -4.26e+00 0.526000 1 21:46177675-21:47491975
4995 21 46707966 46717269 LOC642852 cmc.brain.rnaseq -1.73e+00 0.000611 0 21:46177675-21:47491975
5028 21 46305868 46351904 ITGB2 yfs.blood.rnaarr -1.25e+00 0.000416 0 21:46177675-21:47491975
5058 21 46713200 46717269 LINC00205 adrenal_gland -8.92e-01 0.000301 0 21:46177675-21:47491975
4970 21 46707967 46711653 BX322557.10 brain_putamen_basal_ganglia -1.99e+00 0.000798 0 21:46177675-21:47491975
4988 21 46713200 46717269 LINC00205 brain_hypothalamus -1.79e+00 0.000653 0 21:46177675-21:47491975
4990 21 46713200 46717269 LINC00205 brain_anterior_cingulate_cortex_ba24 -1.81e+00 0.000647 0 21:46177675-21:47491975
4958 21 46707967 46711653 BX322557.10 brain_anterior_cingulate_cortex_ba24 -2.08e+00 0.001060 0 21:46177675-21:47491975
5033 21 47401651 47424964 COL6A1 brain_cerebellum 1.22e+00 0.000379 0 21:46177675-21:47491975
4986 21 46720160 46725172 LINC00315 thyroid -1.86e+00 0.000672 0 21:46177675-21:47491975
5070 21 47556175 47575481 FTCD cmc.brain.rnaseq -8.32e-01 0.000286 0 21:46177675-21:47491975
12292 21 47518011 47552763 COL6A2 psychencode -8.88e-01 0.000294 0 21:46177675-21:47491975
13210 21 45748827 45750104 AP001062.8 psychencode -9.32e-01 0.000359 0 21:46177675-21:47491975
12437 21 47581062 47604390 SPATC1L psychencode 3.83e-01 0.000240 0 21:46177675-21:47491975
5120 21 47608359 47648738 LSS cmc.brain.rnaseq_splicing -5.67e-01 0.000233 0 21:46177675-21:47491975
5093 21 47608055 47648738 LSS brain_anterior_cingulate_cortex_ba24 5.01e-01 0.000256 0 21:46177675-21:47491975
5005 21 46707967 46711653 BX322557.10 brain_hypothalamus -1.59e+00 0.000529 0 21:46177675-21:47491975
5034 21 47401651 47424964 COL6A1 brain_putamen_basal_ganglia 1.24e+00 0.000377 0 21:46177675-21:47491975
5104 21 47581062 47604390 SPATC1L brain_substantia_nigra -5.59e-01 0.000243 0 21:46177675-21:47491975
12434 21 46305868 46351904 ITGB2 psychencode -1.79e+00 0.000802 0 21:46177675-21:47491975
5134 21 47518011 47552763 COL6A2 yfs.blood.rnaarr 4.25e-01 0.000225 0 21:46177675-21:47491975
5165 21 47656743 47706211 MCM3AP pituitary -1.13e-01 0.000219 0 21:46177675-21:47491975
5021 21 47671616 47674047 AP001469.9 pituitary 1.25e+00 0.000444 0 21:46177675-21:47491975
4978 21 47401651 47424964 COL6A1 thyroid 1.75e+00 0.000717 0 21:46177675-21:47491975
13080 21 46340966 46349593 ITGB2-AS1 psychencode -4.99e-01 0.000273 0 21:46177675-21:47491975
5062 21 47401651 47424964 COL6A1 pituitary 9.20e-01 0.000299 0 21:46177675-21:47491975
4994 21 46269500 46293752 PTTG1IP brain_cerebellar_hemisphere 1.37e+00 0.000614 0 21:46177675-21:47491975
5010 21 47581062 47604390 SPATC1L pituitary 1.50e+00 0.000511 0 21:46177675-21:47491975
4991 21 46758581 46761905 LINC00316 thyroid -1.76e+00 0.000642 0 21:46177675-21:47491975
4959 21 46825052 46933634 COL18A1 whole_blood -1.80e+00 0.001050 0 21:46177675-21:47491975
5084 21 47401651 47424964 COL6A1 brain_caudate_basal_ganglia 8.42e-01 0.000266 0 21:46177675-21:47491975
5112 21 47608055 47648738 LSS whole_blood 5.41e-01 0.000238 0 21:46177675-21:47491975
4983 21 46707967 46711653 BX322557.10 brain_cerebellar_hemisphere -1.93e+00 0.000682 0 21:46177675-21:47491975
5066 21 47581062 47604390 SPATC1L whole_blood 7.09e-01 0.000294 0 21:46177675-21:47491975
5089 21 47608055 47648738 LSS brain_cortex 5.73e-01 0.000262 0 21:46177675-21:47491975
5159 21 47706251 47717665 YBEY brain_anterior_cingulate_cortex_ba24 -2.22e-01 0.000219 0 21:46177675-21:47491975
5045 21 47720095 47743789 C21orf58 thyroid -1.05e+00 0.000331 0 21:46177675-21:47491975
4964 21 46654255 46678645 LINC00334 thyroid -2.08e+00 0.000843 0 21:46177675-21:47491975
5068 21 47556176 47575481 FTCD brain_hypothalamus -8.40e-01 0.000287 0 21:46177675-21:47491975
5156 21 47608055 47648738 LSS thyroid 2.35e-01 0.000220 0 21:46177675-21:47491975
5061 21 45719924 45747261 PFKL cmc.brain.rnaseq 6.98e-01 0.000300 0 21:46177675-21:47491975
5091 21 47401651 47424964 COL6A1 yfs.blood.rnaarr 7.45e-01 0.000258 0 21:46177675-21:47491975
5109 21 47518011 47552763 COL6A2 whole_blood 6.44e-01 0.000240 0 21:46177675-21:47491975
5053 21 47556176 47575481 FTCD brain_hippocampus -1.04e+00 0.000311 0 21:46177675-21:47491975
5019 21 47706251 47717665 YBEY brain_caudate_basal_ganglia 1.32e+00 0.000451 0 21:46177675-21:47491975
5071 21 47706266 47717664 C21orf57 ntr.blood.rnaarr -8.58e-01 0.000283 0 21:46177675-21:47491975
13018 21 46707967 46711653 BX322557.10 psychencode -1.94e+00 0.000809 0 21:46177675-21:47491975
12436 21 47556176 47575481 FTCD psychencode -1.49e+00 0.000883 0 21:46177675-21:47491975
5075 21 47671616 47674047 AP001469.9 brain_hypothalamus 7.01e-01 0.000277 0 21:46177675-21:47491975
5086 21 47706266 47717665 YBEY cmc.brain.rnaseq -7.02e-01 0.000264 0 21:46177675-21:47491975
12438 21 47608055 47648738 LSS psychencode -2.13e-01 0.000226 0 21:46177675-21:47491975
5128 21 47706251 47717665 YBEY brain_cerebellum 2.71e-01 0.000227 0 21:46177675-21:47491975
4960 21 47063608 47362368 PCBP3 brain_frontal_cortex_ba9 -1.70e+00 0.000962 0 21:46177675-21:47491975
12440 21 47720095 47743789 C21orf58 psychencode 3.84e-01 0.000228 0 21:46177675-21:47491975
12723 21 46654255 46678645 LINC00334 psychencode 1.92e+00 0.000856 0 21:46177675-21:47491975
5032 21 47247875 47256333 AL592528.1 pituitary -1.18e+00 0.000390 0 21:46177675-21:47491975
5023 21 47671616 47674047 AP001469.9 brain_cerebellar_hemisphere 1.08e+00 0.000426 0 21:46177675-21:47491975
5024 21 47706266 47717665 YBEY cmc.brain.rnaseq_splicing -1.34e+00 0.000425 0 21:46177675-21:47491975
4961 21 46341049 46349567 ITGB2-AS1 whole_blood -1.79e+00 0.000913 0 21:46177675-21:47491975
5102 21 47401651 47424964 COL6A1 brain_cortex 6.56e-01 0.000244 0 21:46177675-21:47491975
5047 21 45749115 45759258 C21orf2 pituitary 8.15e-01 0.000325 0 21:46177675-21:47491975
5115 21 47706251 47717665 YBEY brain_amygdala 6.32e-01 0.000236 0 21:46177675-21:47491975
13526 21 46349568 46350027 LL21NC02-1C16.1 psychencode 2.32e+00 0.004240 1 21:46177675-21:47491975
5048 21 47063608 47362368 PCBP3 whole_blood 1.01e+00 0.000324 0 21:46177675-21:47491975
5170 21 47556176 47575481 FTCD brain_caudate_basal_ganglia 1.89e-01 0.000218 0 21:46177675-21:47491975
5107 21 47878812 47989926 DIP2A brain_caudate_basal_ganglia 5.88e-01 0.000240 0 21:46177675-21:47491975
5158 21 45719934 45747259 PFKL thyroid 2.70e-01 0.000220 0 21:46177675-21:47491975
4975 21 46707967 46711653 BX322557.10 brain_frontal_cortex_ba9 -1.88e+00 0.000754 0 21:46177675-21:47491975
5097 21 47556176 47575481 FTCD thyroid 5.17e-01 0.000248 0 21:46177675-21:47491975
5026 21 46825052 46933634 COL18A1 thyroid -1.38e+00 0.000417 0 21:46177675-21:47491975
5151 21 47744035 47865682 PCNT cmc.brain.rnaseq_splicing 9.98e-02 0.000221 0 21:46177675-21:47491975
4979 21 47744036 47865682 PCNT brain_frontal_cortex_ba9 1.58e+00 0.000711 0 21:46177675-21:47491975
4944 21 46352729 46359828 C21orf67 brain_cortex 2.37e+00 0.003460 1 21:46177675-21:47491975
5055 21 45749115 45759258 C21orf2 brain_hippocampus -7.72e-01 0.000302 0 21:46177675-21:47491975
5123 21 47556176 47575481 FTCD brain_anterior_cingulate_cortex_ba24 -4.53e-01 0.000231 0 21:46177675-21:47491975
4996 21 46269500 46293752 PTTG1IP pituitary 1.38e+00 0.000607 0 21:46177675-21:47491975
5077 21 46913486 46964325 SLC19A1 yfs.blood.rnaarr 4.43e-01 0.000274 0 21:46177675-21:47491975
4945 21 46352729 46359828 C21orf67 brain_putamen_basal_ganglia 2.26e+00 0.003250 1 21:46177675-21:47491975
5040 21 47744036 47865682 PCNT whole_blood 1.11e+00 0.000343 0 21:46177675-21:47491975
12441 21 47878812 47989926 DIP2A psychencode 1.04e+00 0.000309 0 21:46177675-21:47491975
5008 21 47401651 47424964 COL6A1 brain_cerebellar_hemisphere 1.50e+00 0.000522 0 21:46177675-21:47491975
4956 21 46707967 46711653 BX322557.10 pituitary -2.16e+00 0.001100 0 21:46177675-21:47491975
5003 21 47518032 47552763 COL6A2 cmc.brain.rnaseq 1.46e+00 0.000540 0 21:46177675-21:47491975
5171 21 47720095 47743789 C21orf58 brain_cerebellum -1.50e-01 0.000218 0 21:46177675-21:47491975
5054 21 47063608 47362368 PCBP3 yfs.blood.rnaarr 8.43e-01 0.000305 0 21:46177675-21:47491975
12754 21 47063608 47362368 PCBP3 psychencode -1.69e+00 0.000598 0 21:46177675-21:47491975
5092 21 47744036 47865682 PCNT brain_caudate_basal_ganglia 5.71e-01 0.000256 0 21:46177675-21:47491975
5150 21 47744036 47865682 PCNT adrenal_gland 2.12e-01 0.000221 0 21:46177675-21:47491975
5094 21 47744036 47865682 PCNT brain_hypothalamus -7.62e-01 0.000255 0 21:46177675-21:47491975
5113 21 47744036 47865682 PCNT thyroid 5.42e-01 0.000237 0 21:46177675-21:47491975
4985 21 46713200 46717269 LINC00205 brain_cortex -1.82e+00 0.000678 0 21:46177675-21:47491975
5173 21 47655047 47705236 MCM3AP cmc.brain.rnaseq_splicing -1.02e-01 0.000218 0 21:46177675-21:47491975
5166 21 47706251 47717665 YBEY whole_blood -3.27e-02 0.000219 0 21:46177675-21:47491975
5126 21 47655047 47705236 MCM3AP cmc.brain.rnaseq_splicing 2.31e-01 0.000229 0 21:46177675-21:47491975
5111 21 47063608 47362368 PCBP3 brain_hippocampus 2.17e-01 0.000238 0 21:46177675-21:47491975
4992 21 46713200 46717269 LINC00205 brain_amygdala -1.78e+00 0.000635 0 21:46177675-21:47491975
5087 21 46825052 46933634 COL18A1 yfs.blood.rnaarr -5.92e-01 0.000263 0 21:46177675-21:47491975
5039 21 46654266 46678645 C21orf89 ntr.blood.rnaarr -1.88e-01 0.000347 0 21:46177675-21:47491975
5025 21 47581062 47604390 SPATC1L brain_amygdala 1.33e+00 0.000423 0 21:46177675-21:47491975
5114 21 47744036 47865682 PCNT brain_cortex 4.89e-01 0.000237 0 21:46177675-21:47491975
4968 21 46352729 46359828 C21orf67 adrenal_gland 1.77e+00 0.000812 0 21:46177675-21:47491975
5178 21 47706251 47717665 YBEY brain_nucleus_accumbens_basal_ganglia 7.87e-05 0.000216 0 21:46177675-21:47491975
12629 21 46913486 46964325 SLC19A1 psychencode -6.79e-01 0.000262 0 21:46177675-21:47491975
4971 21 46352729 46359828 C21orf67 brain_nucleus_accumbens_basal_ganglia 1.95e+00 0.000789 0 21:46177675-21:47491975
4949 21 46713200 46717269 LINC00205 whole_blood -2.44e+00 0.001950 0 21:46177675-21:47491975
5116 21 47401651 47424964 COL6A1 adrenal_gland 4.53e-01 0.000236 0 21:46177675-21:47491975
5168 21 45751117 45755734 AP001062.7 brain_cortex 2.02e-01 0.000219 0 21:46177675-21:47491975
5145 21 47401662 47424963 COL6A1 cmc.brain.rnaseq 3.62e-01 0.000223 0 21:46177675-21:47491975
5031 21 46269500 46293752 PTTG1IP yfs.blood.rnaarr -1.06e+00 0.000396 0 21:46177675-21:47491975
5135 21 47706251 47717665 YBEY adrenal_gland -2.92e-01 0.000225 0 21:46177675-21:47491975
5076 21 47671616 47674047 AP001469.9 brain_putamen_basal_ganglia 7.65e-01 0.000276 0 21:46177675-21:47491975
4953 21 46875423 46933634 COL18A1 ntr.blood.rnaarr -2.01e+00 0.001400 0 21:46177675-21:47491975
5103 21 47706251 47717665 YBEY brain_cerebellar_hemisphere 4.38e-01 0.000244 0 21:46177675-21:47491975
5172 21 47706251 47717665 YBEY brain_frontal_cortex_ba9 1.38e-01 0.000218 0 21:46177675-21:47491975
5146 21 47671616 47674047 AP001469.9 brain_caudate_basal_ganglia 1.83e-01 0.000223 0 21:46177675-21:47491975
13044 21 46713200 46717269 LINC00205 psychencode -1.83e+00 0.000695 0 21:46177675-21:47491975
5027 21 46352729 46359828 C21orf67 thyroid 8.35e-01 0.000417 0 21:46177675-21:47491975
12291 21 47401651 47424964 COL6A1 psychencode 3.28e-01 0.000221 0 21:46177675-21:47491975
5155 21 45719934 45747259 PFKL whole_blood 2.63e-01 0.000221 0 21:46177675-21:47491975
5059 21 45751117 45755734 AP001062.7 whole_blood -7.69e-01 0.000300 0 21:46177675-21:47491975
5160 21 47666804 47667596 AP001469.7 brain_putamen_basal_ganglia -8.66e-03 0.000219 0 21:46177675-21:47491975
5057 21 47878812 47989926 DIP2A thyroid 1.01e+00 0.000301 0 21:46177675-21:47491975
4967 21 47612391 47613673 AP001468.1 adrenal_gland 1.64e+00 0.000815 0 21:46177675-21:47491975
4951 21 47571652 47572561 FTCD-AS1 brain_hypothalamus -2.16e+00 0.001510 0 21:46177675-21:47491975
5079 21 47556176 47575481 FTCD brain_cortex -7.82e-01 0.000272 0 21:46177675-21:47491975
12721 21 47706251 47717665 YBEY psychencode -1.17e-01 0.000217 0 21:46177675-21:47491975
5121 21 47063608 47362368 PCBP3 brain_caudate_basal_ganglia -2.94e-01 0.000233 0 21:46177675-21:47491975
5157 21 47878812 47989926 DIP2A yfs.blood.rnaarr 2.58e-01 0.000220 0 21:46177675-21:47491975
5036 21 47608055 47648738 LSS brain_frontal_cortex_ba9 8.88e-01 0.000356 0 21:46177675-21:47491975
5118 21 47744036 47865682 PCNT brain_cerebellum -3.66e-01 0.000235 0 21:46177675-21:47491975
4982 21 47581062 47604390 SPATC1L brain_cerebellar_hemisphere -1.62e+00 0.000688 0 21:46177675-21:47491975
5022 21 47671616 47674047 AP001469.9 adrenal_gland 1.21e+00 0.000434 0 21:46177675-21:47491975
5017 21 46825052 46933634 COL18A1 brain_cerebellar_hemisphere 1.43e+00 0.000466 0 21:46177675-21:47491975
5133 21 47401651 47424964 COL6A1 brain_nucleus_accumbens_basal_ganglia 4.06e-01 0.000225 0 21:46177675-21:47491975
5132 21 47706251 47717665 YBEY pituitary -3.23e-01 0.000225 0 21:46177675-21:47491975
4998 21 46713200 46717269 LINC00205 brain_caudate_basal_ganglia -1.71e+00 0.000584 0 21:46177675-21:47491975
5175 21 47581062 47604390 SPATC1L brain_caudate_basal_ganglia -1.03e-01 0.000218 0 21:46177675-21:47491975
5106 21 47706251 47717665 YBEY brain_substantia_nigra 7.02e-01 0.000243 0 21:46177675-21:47491975
4947 21 46913490 46964325 SLC19A1 thyroid 1.94e+00 0.002540 1 21:46177675-21:47491975
5164 21 47063608 47362368 PCBP3 adrenal_gland -4.58e-02 0.000219 0 21:46177675-21:47491975
4952 21 46913490 46964325 SLC19A1 whole_blood -1.99e+00 0.001480 0 21:46177675-21:47491975
5138 21 47556176 47575481 FTCD brain_putamen_basal_ganglia -2.92e-01 0.000224 0 21:46177675-21:47491975
5067 21 47671616 47674047 AP001469.9 thyroid 7.19e-01 0.000288 0 21:46177675-21:47491975
5074 21 47013568 47017005 AL133493.2 brain_caudate_basal_ganglia 7.77e-01 0.000279 0 21:46177675-21:47491975
4954 21 46713200 46717269 LINC00205 thyroid -2.26e+00 0.001260 0 21:46177675-21:47491975
5108 21 47656743 47706211 MCM3AP thyroid 4.14e-01 0.000240 0 21:46177675-21:47491975
5177 21 47706251 47717665 YBEY brain_putamen_basal_ganglia 8.02e-02 0.000217 0 21:46177675-21:47491975
4987 21 46713200 46717269 LINC00205 brain_cerebellum -1.81e+00 0.000663 0 21:46177675-21:47491975
5105 21 47706266 47717665 YBEY cmc.brain.rnaseq_splicing -5.81e-01 0.000243 0 21:46177675-21:47491975
5141 21 47401651 47424964 COL6A1 brain_frontal_cortex_ba9 4.06e-01 0.000224 0 21:46177675-21:47491975
5042 21 47720095 47743789 C21orf58 brain_cerebellar_hemisphere -1.16e+00 0.000342 0 21:46177675-21:47491975
5153 21 47556176 47575481 FTCD adrenal_gland 2.37e-01 0.000221 0 21:46177675-21:47491975
5149 21 47671616 47674047 AP001469.9 brain_amygdala -3.66e-01 0.000222 0 21:46177675-21:47491975
5064 21 47571652 47572561 FTCD-AS1 brain_cortex -8.37e-01 0.000295 0 21:46177675-21:47491975
5147 21 47401651 47424964 COL6A1 brain_anterior_cingulate_cortex_ba24 -6.31e-02 0.000222 0 21:46177675-21:47491975
5142 21 47063608 47362368 PCBP3 brain_cerebellum 1.40e-01 0.000223 0 21:46177675-21:47491975
5082 21 47671616 47674047 AP001469.9 brain_substantia_nigra 6.04e-01 0.000268 0 21:46177675-21:47491975
5169 21 47656743 47706211 MCM3AP adrenal_gland 2.30e-01 0.000218 0 21:46177675-21:47491975
5125 21 47656743 47706211 MCM3AP brain_cerebellum 3.66e-01 0.000230 0 21:46177675-21:47491975
5129 21 47744036 47865682 PCNT yfs.blood.rnaarr -4.08e-01 0.000227 0 21:46177675-21:47491975
5140 21 47706251 47717665 YBEY brain_hippocampus 4.17e-01 0.000224 0 21:46177675-21:47491975
5096 21 45748826 45759285 C21orf2 cmc.brain.rnaseq 5.61e-01 0.000251 0 21:46177675-21:47491975
5060 21 47063608 47362368 PCBP3 thyroid 7.51e-01 0.000300 0 21:46177675-21:47491975
12730 21 46825052 46933634 COL18A1 psychencode -1.19e+00 0.000382 0 21:46177675-21:47491975
5099 21 46720160 46725172 LINC00315 brain_cortex 2.37e-01 0.000245 0 21:46177675-21:47491975
5006 21 47878854 47990020 DIP2A ntr.blood.rnaarr -1.49e+00 0.000526 0 21:46177675-21:47491975
12433 21 45705721 45718531 AIRE psychencode -3.84e-01 0.000240 0 21:46177675-21:47491975
5154 21 47581062 47604390 SPATC1L brain_hippocampus -2.44e-01 0.000221 0 21:46177675-21:47491975
5143 21 47571652 47572561 FTCD-AS1 brain_anterior_cingulate_cortex_ba24 -2.82e-01 0.000223 0 21:46177675-21:47491975
5161 21 47581062 47604390 SPATC1L brain_anterior_cingulate_cortex_ba24 -5.69e-02 0.000219 0 21:46177675-21:47491975
5007 21 46713200 46717269 LINC00205 brain_substantia_nigra -1.63e+00 0.000524 0 21:46177675-21:47491975
5137 21 47063608 47362368 PCBP3 brain_nucleus_accumbens_basal_ganglia 2.28e-01 0.000225 0 21:46177675-21:47491975
5049 21 45749115 45759258 C21orf2 brain_cerebellum 7.88e-01 0.000323 0 21:46177675-21:47491975
5046 21 47608055 47648738 LSS brain_cerebellum -1.09e+00 0.000326 0 21:46177675-21:47491975
5119 21 47571652 47572561 FTCD-AS1 brain_cerebellum -4.76e-01 0.000234 0 21:46177675-21:47491975
5038 21 46713200 46717269 LINC00205 pituitary -1.12e+00 0.000354 0 21:46177675-21:47491975
5020 21 46825052 46933634 COL18A1 brain_cerebellum 9.76e-01 0.000446 0 21:46177675-21:47491975
5163 21 47347679 47352477 PRED62 pituitary 1.78e-01 0.000219 0 21:46177675-21:47491975
4999 21 46839631 46844985 COL18A1-AS1 brain_cerebellar_hemisphere 1.27e+00 0.000575 0 21:46177675-21:47491975
5176 21 47581062 47604390 SPATC1L adrenal_gland 8.59e-02 0.000217 0 21:46177675-21:47491975
5110 21 47671616 47674047 AP001469.9 brain_hippocampus 2.97e-01 0.000239 0 21:46177675-21:47491975
5235 22 32870706 32894818 FBXO7 cmc.brain.rnaseq_splicing -1.77e-01 0.000164 0 22:32664986-22:34494914
5197 22 33668847 34318829 LARGE yfs.blood.rnaarr -1.46e+00 0.000450 0 22:32664986-22:34494914
5209 22 32614465 32651328 SLC5A4 brain_substantia_nigra 1.12e+00 0.000292 0 22:32664986-22:34494914
5190 22 33558212 34318829 LARGE brain_caudate_basal_ganglia -1.76e+00 0.000720 0 22:32664986-22:34494914
5234 22 32669407 32673173 RP1-90G24.6 brain_cerebellum -2.62e-01 0.000168 0 22:32664986-22:34494914
5201 22 32908539 33454377 SYN3 cmc.brain.rnaseq 1.34e+00 0.000385 0 22:32664986-22:34494914
5180 22 32614465 32651328 SLC5A4 brain_frontal_cortex_ba9 2.14e+00 0.001480 0 22:32664986-22:34494914
13212 22 32601102 32665653 RP1-90G24.10 psychencode -7.51e-01 0.000211 0 22:32664986-22:34494914
5215 22 32665654 32669097 CPSF1P1 brain_cortex -1.05e+00 0.000274 0 22:32664986-22:34494914
5225 22 32870663 32894818 FBXO7 brain_substantia_nigra -6.02e-01 0.000192 0 22:32664986-22:34494914
11802 22 33197687 33259030 TIMP3 psychencode -1.90e+00 0.000937 0 22:32664986-22:34494914
5228 22 32870663 32894818 FBXO7 brain_cortex -4.37e-01 0.000176 0 22:32664986-22:34494914
5207 22 32870706 32894818 FBXO7 cmc.brain.rnaseq -1.18e+00 0.000314 0 22:32664986-22:34494914
5203 22 32614465 32651328 SLC5A4 brain_hippocampus 1.28e+00 0.000355 0 22:32664986-22:34494914
5236 22 33197687 33259030 TIMP3 thyroid 1.79e-01 0.000163 0 22:32664986-22:34494914
5208 22 32755893 32778039 RFPL3S brain_cortex -1.15e+00 0.000306 0 22:32664986-22:34494914
5214 22 32779773 32781618 RP1-149A16.17 brain_amygdala -1.06e+00 0.000275 0 22:32664986-22:34494914
13534 22 32680670 32681118 RP1-90G24.11 psychencode 6.94e-01 0.000204 0 22:32664986-22:34494914
5222 22 32755893 32778039 RFPL3S brain_caudate_basal_ganglia -6.55e-01 0.000199 0 22:32664986-22:34494914
5220 22 32544993 32555275 C22orf42 pituitary -8.99e-01 0.000238 0 22:32664986-22:34494914
12783 22 32908539 33454358 SYN3 psychencode 9.58e-01 0.000252 0 22:32664986-22:34494914
5192 22 32755893 32778039 RFPL3S pituitary -1.70e+00 0.000641 0 22:32664986-22:34494914
5202 22 32614465 32651328 SLC5A4 brain_caudate_basal_ganglia 1.30e+00 0.000360 0 22:32664986-22:34494914
5198 22 32614465 32651328 SLC5A4 brain_nucleus_accumbens_basal_ganglia 1.45e+00 0.000444 0 22:32664986-22:34494914
5230 22 32755893 32778039 RFPL3S whole_blood -4.08e-01 0.000175 0 22:32664986-22:34494914
5196 22 32614462 32651318 SLC5A4 cmc.brain.rnaseq 1.56e+00 0.000520 0 22:32664986-22:34494914
5213 22 32149936 32303020 DEPDC5 cmc.brain.rnaseq_splicing 1.04e+00 0.000280 0 22:32664986-22:34494914
5189 22 32755893 32778039 RFPL3S brain_cerebellum -1.77e+00 0.000729 0 22:32664986-22:34494914
5194 22 32755893 32778039 RFPL3S brain_hypothalamus -1.58e+00 0.000534 0 22:32664986-22:34494914
5204 22 32439019 32509016 SLC5A1 brain_anterior_cingulate_cortex_ba24 -1.27e+00 0.000352 0 22:32664986-22:34494914
5217 22 33197687 33259030 TIMP3 pituitary -1.02e+00 0.000267 0 22:32664986-22:34494914
13047 22 32669407 32673173 RP1-90G24.6 psychencode 6.79e-01 0.000204 0 22:32664986-22:34494914
5205 22 32614465 32651328 SLC5A4 thyroid 1.21e+00 0.000326 0 22:32664986-22:34494914
5237 22 32586421 32600718 RFPL2 cmc.brain.rnaseq_splicing 7.79e-02 0.000162 0 22:32664986-22:34494914
5219 22 32870663 32894818 FBXO7 brain_nucleus_accumbens_basal_ganglia -9.49e-01 0.000249 0 22:32664986-22:34494914
5212 22 32586422 32600718 RFPL2 pituitary 1.07e+00 0.000281 0 22:32664986-22:34494914
5229 22 32870663 32894818 FBXO7 yfs.blood.rnaarr 4.17e-01 0.000175 0 22:32664986-22:34494914
5216 22 33558212 34318829 LARGE thyroid -1.03e+00 0.000270 0 22:32664986-22:34494914
5199 22 32595906 32596221 IGLCOR22-1 brain_cortex -1.37e+00 0.000398 0 22:32664986-22:34494914
5226 22 32586422 32600718 RFPL2 thyroid 4.80e-01 0.000180 0 22:32664986-22:34494914
5179 22 32755893 32778039 RFPL3S brain_substantia_nigra -2.43e+00 0.002800 0 22:32664986-22:34494914
5211 22 32614465 32651328 SLC5A4 brain_anterior_cingulate_cortex_ba24 1.08e+00 0.000283 0 22:32664986-22:34494914
5206 22 32870706 32894818 FBXO7 cmc.brain.rnaseq_splicing -1.18e+00 0.000319 0 22:32664986-22:34494914
5210 22 32665654 32669097 CPSF1P1 thyroid 1.09e+00 0.000285 0 22:32664986-22:34494914
5233 22 32340478 32353590 YWHAH cmc.brain.rnaseq_splicing -2.61e-01 0.000168 0 22:32664986-22:34494914
13051 22 34604130 34605251 LL22NC03-13G6.2 psychencode 1.23e+00 0.000337 0 22:32664986-22:34494914
11796 22 32614465 32651328 SLC5A4 psychencode 1.41e+00 0.000422 0 22:32664986-22:34494914
5187 22 32614465 32651328 SLC5A4 pituitary 1.79e+00 0.000756 0 22:32664986-22:34494914
5224 22 32870663 32894818 FBXO7 brain_hippocampus -6.14e-01 0.000193 0 22:32664986-22:34494914
12151 22 32586422 32600718 RFPL2 psychencode 1.97e-01 0.000164 0 22:32664986-22:34494914
5232 22 32870663 32894818 FBXO7 brain_cerebellum -3.44e-01 0.000170 0 22:32664986-22:34494914
11799 22 32870663 32894818 FBXO7 psychencode -3.88e-01 0.000173 0 22:32664986-22:34494914
5231 22 32680670 32681118 RP1-90G24.11 brain_cortex -3.45e-01 0.000171 0 22:32664986-22:34494914
5200 22 32755893 32778039 RFPL3S brain_putamen_basal_ganglia -1.35e+00 0.000386 0 22:32664986-22:34494914
5186 22 32755893 32778039 RFPL3S brain_frontal_cortex_ba9 -1.82e+00 0.000791 0 22:32664986-22:34494914
5223 22 32439019 32509016 SLC5A1 thyroid 6.10e-01 0.000194 0 22:32664986-22:34494914
5195 22 32870663 32894818 FBXO7 brain_anterior_cingulate_cortex_ba24 -1.56e+00 0.000524 0 22:32664986-22:34494914
5183 22 32755893 32778039 RFPL3S adrenal_gland -1.90e+00 0.000910 0 22:32664986-22:34494914
5188 22 32614465 32651328 SLC5A4 brain_cortex 1.78e+00 0.000736 0 22:32664986-22:34494914
5181 22 32340446 32353590 YWHAH ntr.blood.rnaarr -2.09e+00 0.001350 0 22:32664986-22:34494914
13001 22 32665368 32669097 CPSF1P1 psychencode 6.23e-01 0.000198 0 22:32664986-22:34494914
5193 22 32755893 32778039 RFPL3S brain_cerebellar_hemisphere -1.59e+00 0.000540 0 22:32664986-22:34494914
5191 22 32755893 32778039 RFPL3S thyroid -1.75e+00 0.000703 0 22:32664986-22:34494914
5182 22 32340447 32353590 YWHAH yfs.blood.rnaarr 2.05e+00 0.001240 0 22:32664986-22:34494914
5227 22 32340447 32353590 YWHAH whole_blood 4.56e-01 0.000178 0 22:32664986-22:34494914
5185 22 32779773 32781618 RP1-149A16.17 brain_cerebellum -1.85e+00 0.000839 0 22:32664986-22:34494914
12983 22 32755893 32778039 RFPL3S psychencode -1.93e+00 0.000975 0 22:32664986-22:34494914
13122 22 32772651 32780330 RP1-149A16.3 psychencode -1.67e+00 0.000619 0 22:32664986-22:34494914
5218 22 32779773 32781618 RP1-149A16.17 thyroid -9.75e-01 0.000255 0 22:32664986-22:34494914
5221 22 32340478 32353590 YWHAH cmc.brain.rnaseq_splicing -6.81e-01 0.000202 0 22:32664986-22:34494914
12150 22 32340447 32353590 YWHAH psychencode 1.08e-01 0.000163 0 22:32664986-22:34494914
11798 22 32783569 32808242 RTCB psychencode 1.26e+00 0.000347 0 22:32664986-22:34494914
5184 22 32755893 32778039 RFPL3S brain_nucleus_accumbens_basal_ganglia -1.86e+00 0.000848 0 22:32664986-22:34494914
5507 22 42321045 42322822 TNFRSF13C brain_cerebellum 9.80e-01 0.000272 0 22:40545828-22:42690262
12924 22 42229109 42303312 SREBF2 psychencode 2.19e+00 0.000428 0 22:40545828-22:42690262
5384 22 42348169 42354937 LINC00634 brain_putamen_basal_ganglia 1.38e+00 0.000501 0 22:40545828-22:42690262
5490 22 42321045 42322822 TNFRSF13C brain_cerebellar_hemisphere 1.91e+00 0.000292 0 22:40545828-22:42690262
5418 22 42475695 42480288 SMDT1 brain_cortex 2.50e-01 0.000410 0 22:40545828-22:42690262
5270 22 42470254 42475442 FAM109B cmc.brain.rnaseq 2.17e+00 0.003110 1 22:40545828-22:42690262
5478 22 42394729 42454357 WBP2NL brain_frontal_cortex_ba9 1.72e+00 0.000302 0 22:40545828-22:42690262
5346 22 42454337 42466846 NAGA cmc.brain.rnaseq 1.05e+00 0.000763 0 22:40545828-22:42690262
5466 22 42397073 42397970 SLC25A5P1 adrenal_gland 2.27e-01 0.000309 0 22:40545828-22:42690262
11816 22 40440821 40731812 TNRC6B psychencode -1.55e+00 0.000863 0 22:40545828-22:42690262
11818 22 41165634 41215403 SLC25A17 psychencode -3.44e+00 0.000390 0 22:40545828-22:42690262
5440 22 41601209 41627275 L3MBTL2 brain_caudate_basal_ganglia 1.74e+00 0.000367 0 22:40545828-22:42690262
5249 22 41165634 41215403 SLC25A17 brain_nucleus_accumbens_basal_ganglia 4.85e+00 0.011100 1 22:40545828-22:42690262
5368 22 42454461 42466846 NAGA brain_putamen_basal_ganglia 9.30e-02 0.000577 0 22:40545828-22:42690262
5333 22 41605126 41613631 RP4-756G23.5 pituitary 2.06e+00 0.000827 0 22:40545828-22:42690262
5502 22 42394729 42454357 WBP2NL whole_blood -2.00e+00 0.000279 0 22:40545828-22:42690262
5538 22 42394729 42454357 WBP2NL brain_cortex 8.72e-01 0.000248 0 22:40545828-22:42690262
5240 22 41165638 41215392 SLC25A17 cmc.brain.rnaseq -5.10e+00 0.037700 1 22:40545828-22:42690262
5463 22 42454461 42466846 NAGA brain_hippocampus 1.48e+00 0.000313 0 22:40545828-22:42690262
5425 22 42475695 42480288 SMDT1 thyroid 1.03e+00 0.000399 0 22:40545828-22:42690262
5522 22 42394729 42454357 WBP2NL brain_cerebellar_hemisphere 1.01e+00 0.000260 0 22:40545828-22:42690262
5367 22 41601209 41627275 L3MBTL2 pituitary 2.12e+00 0.000579 0 22:40545828-22:42690262
11821 22 41601209 41627275 L3MBTL2 psychencode 2.48e+00 0.000326 0 22:40545828-22:42690262
5390 22 42454461 42466846 NAGA brain_caudate_basal_ganglia 1.52e+00 0.000480 0 22:40545828-22:42690262
5314 22 41601209 41627275 L3MBTL2 brain_anterior_cingulate_cortex_ba24 2.92e+00 0.000983 0 22:40545828-22:42690262
5464 22 42394729 42454357 WBP2NL brain_hypothalamus 1.03e-01 0.000309 0 22:40545828-22:42690262
5363 22 41487790 41576081 EP300 whole_blood -8.73e-01 0.000609 0 22:40545828-22:42690262
5267 22 42196683 42222303 CCDC134 whole_blood -7.48e-01 0.003690 1 22:40545828-22:42690262
5530 22 42394729 42454357 WBP2NL pituitary 4.19e-01 0.000253 0 22:40545828-22:42690262
11815 22 39966758 40085742 CACNA1I psychencode 1.11e+00 0.000301 0 22:40545828-22:42690262
12432 22 42321045 42322822 TNFRSF13C psychencode 8.54e-01 0.000283 0 22:40545828-22:42690262
12737 22 42394729 42454460 WBP2NL psychencode 1.18e+00 0.000311 0 22:40545828-22:42690262
5458 22 42397073 42397970 SLC25A5P1 thyroid 8.76e-01 0.000320 0 22:40545828-22:42690262
5302 22 41220539 41253026 ST13 whole_blood 3.45e+00 0.001110 0 22:40545828-22:42690262
12658 22 42470255 42475445 FAM109B psychencode 1.59e+00 0.000640 0 22:40545828-22:42690262
5383 22 42475695 42480288 SMDT1 brain_anterior_cingulate_cortex_ba24 -1.15e+00 0.000502 0 22:40545828-22:42690262
11820 22 41487790 41576081 EP300 psychencode -2.61e+00 0.000512 0 22:40545828-22:42690262
5259 22 42069936 42084913 NHP2L1 cmc.brain.rnaseq -2.18e+00 0.004290 1 22:40545828-22:42690262
5297 22 42334725 42343168 CENPM brain_substantia_nigra 2.38e+00 0.001310 1 22:40545828-22:42690262
5438 22 42454461 42466846 NAGA brain_cerebellum 1.45e+00 0.000370 0 22:40545828-22:42690262
5299 22 41957013 41972670 CSDC2 cmc.brain.rnaseq 2.83e+00 0.001170 1 22:40545828-22:42690262
5268 22 42454461 42466846 NAGA adrenal_gland 1.91e+00 0.003350 1 22:40545828-22:42690262
11819 22 41220539 41253026 ST13 psychencode 3.23e-01 0.000355 0 22:40545828-22:42690262
5337 22 42095503 42195460 MEI1 brain_frontal_cortex_ba9 2.83e+00 0.000788 0 22:40545828-22:42690262
5508 22 42394728 42454460 WBP2NL cmc.brain.rnaseq 9.62e-01 0.000272 0 22:40545828-22:42690262
5393 22 42475695 42480288 SMDT1 brain_putamen_basal_ganglia 6.01e-01 0.000474 0 22:40545828-22:42690262
5242 22 41074753 41078818 MCHR1 ntr.blood.rnaarr 4.63e+00 0.024500 1 22:40545828-22:42690262
5238 22 41697526 41756151 ZC3H7B brain_cerebellum 5.63e+00 0.511000 1 22:40545828-22:42690262
5288 22 41972898 41985894 PMM1 thyroid -3.13e+00 0.001550 1 22:40545828-22:42690262
5260 22 42481529 42486934 NDUFA6 brain_cortex 2.44e+00 0.004140 1 22:40545828-22:42690262
5426 22 42475695 42480288 SMDT1 brain_hippocampus -1.38e+00 0.000393 0 22:40545828-22:42690262
5355 22 42017123 42060044 XRCC6 brain_caudate_basal_ganglia -3.44e+00 0.000696 0 22:40545828-22:42690262
11793 22 42334725 42343168 CENPM psychencode 1.87e+00 0.000295 0 22:40545828-22:42690262
5303 22 41487772 41576074 EP300 ntr.blood.rnaarr 4.13e+00 0.001110 0 22:40545828-22:42690262
13183 22 42486935 42535286 NDUFA6-AS1 psychencode -5.90e-01 0.000377 0 22:40545828-22:42690262
12617 22 41956767 41973745 CSDC2 psychencode 2.48e+00 0.000749 0 22:40545828-22:42690262
5348 22 41972898 41985894 PMM1 whole_blood -1.37e+00 0.000741 0 22:40545828-22:42690262
5539 22 42394729 42454357 WBP2NL brain_cerebellum 5.20e-01 0.000248 0 22:40545828-22:42690262
5404 22 42397073 42397970 SLC25A5P1 brain_cerebellum 2.09e+00 0.000447 0 22:40545828-22:42690262
5496 22 42545877 42551007 CYP2D8P1 brain_cortex -9.97e-01 0.000284 0 22:40545828-22:42690262
5388 22 41601209 41627275 L3MBTL2 brain_cerebellum 1.37e+00 0.000486 0 22:40545828-22:42690262
5356 22 41972898 41985894 PMM1 pituitary -3.60e+00 0.000682 0 22:40545828-22:42690262
12762 22 42084943 42094140 C22orf46 psychencode -1.36e+00 0.000295 0 22:40545828-22:42690262
5292 22 42470255 42475445 FAM109B thyroid -5.86e-01 0.001400 1 22:40545828-22:42690262
5549 22 42665759 42671202 Z83851.3 pituitary 1.05e+00 0.000242 0 22:40545828-22:42690262
5318 22 42481529 42486934 NDUFA6 adrenal_gland 1.47e+00 0.000962 0 22:40545828-22:42690262
5359 22 41972898 41985894 PMM1 adrenal_gland -3.51e+00 0.000661 0 22:40545828-22:42690262
12855 22 41253081 41363838 XPNPEP3 psychencode 3.91e+00 0.001470 1 22:40545828-22:42690262
11827 22 41972898 41985894 PMM1 psychencode 6.74e-01 0.000227 0 22:40545828-22:42690262
5277 22 42485634 42486032 RP1-257I20.14 thyroid 3.52e+00 0.002200 1 22:40545828-22:42690262
5350 22 41921808 41940610 POLR3H brain_cerebellar_hemisphere 3.62e+00 0.000733 0 22:40545828-22:42690262
12776 22 42481529 42486959 NDUFA6 psychencode 2.19e+00 0.006330 1 22:40545828-22:42690262
5352 22 41641615 41682255 RANGAP1 whole_blood -2.12e+00 0.000716 0 22:40545828-22:42690262
13339 22 42090191 42092048 Z83840.1 psychencode -3.01e+00 0.000569 0 22:40545828-22:42690262
5300 22 42486960 42535286 NDUFA6-AS1 adrenal_gland 7.63e-01 0.001160 1 22:40545828-22:42690262
5535 22 42475695 42480288 SMDT1 brain_caudate_basal_ganglia -2.64e-01 0.000250 0 22:40545828-22:42690262
5251 22 43088127 43117304 A4GALT brain_caudate_basal_ganglia -3.30e+00 0.007560 1 22:40545828-22:42690262
5323 22 42196683 42222303 CCDC134 yfs.blood.rnaarr -1.16e-01 0.000874 0 22:40545828-22:42690262
5342 22 41994032 42017100 DESI1 whole_blood 1.64e+00 0.000768 0 22:40545828-22:42690262
5499 22 41994032 42017100 DESI1 brain_substantia_nigra 2.57e+00 0.000282 0 22:40545828-22:42690262
5286 22 42095503 42195460 MEI1 brain_cortex 3.02e+00 0.001650 1 22:40545828-22:42690262
5252 22 42481529 42486934 NDUFA6 whole_blood 2.65e+00 0.007520 1 22:40545828-22:42690262
5521 22 42486960 42535286 NDUFA6-AS1 thyroid -2.24e-01 0.000260 0 22:40545828-22:42690262
5245 22 41253088 41351450 XPNPEP3 brain_frontal_cortex_ba9 4.99e+00 0.021000 1 22:40545828-22:42690262
13017 22 42397073 42397970 SLC25A5P1 psychencode 1.30e+00 0.000309 0 22:40545828-22:42690262
5248 22 42485634 42486032 RP1-257I20.14 brain_hippocampus 2.96e+00 0.011200 1 22:40545828-22:42690262
5397 22 42522501 42526908 CYP2D6 pituitary -1.86e+00 0.000465 0 22:40545828-22:42690262
5495 22 42545877 42551007 CYP2D8P1 brain_cerebellar_hemisphere -9.46e-01 0.000284 0 22:40545828-22:42690262
5313 22 42503769 42504957 OLA1P1 thyroid 2.38e+00 0.001000 0 22:40545828-22:42690262
5394 22 41625513 41636935 CHADL cmc.brain.rnaseq 1.31e+00 0.000474 0 22:40545828-22:42690262
5324 22 42503769 42504957 OLA1P1 brain_cerebellum 2.40e+00 0.000873 0 22:40545828-22:42690262
5410 22 41956767 41973745 CSDC2 brain_caudate_basal_ganglia 2.20e+00 0.000427 0 22:40545828-22:42690262
5257 22 41253088 41351450 XPNPEP3 thyroid 4.49e+00 0.004910 1 22:40545828-22:42690262
5306 22 41956767 41973745 CSDC2 brain_hippocampus 2.80e+00 0.001070 0 22:40545828-22:42690262
5341 22 42503769 42504957 OLA1P1 brain_substantia_nigra 1.36e+00 0.000770 0 22:40545828-22:42690262
5423 22 42503769 42504957 OLA1P1 pituitary 1.68e+00 0.000401 0 22:40545828-22:42690262
5433 22 42372276 42394225 SEPT3 brain_cerebellar_hemisphere -4.32e-01 0.000383 0 22:40545828-22:42690262
5486 22 42318027 42319104 CTA-250D10.23 brain_cerebellum 1.95e+00 0.000294 0 22:40545828-22:42690262
5282 22 42481529 42486934 NDUFA6 thyroid 1.89e+00 0.001760 1 22:40545828-22:42690262
5469 22 42503769 42504957 OLA1P1 brain_hypothalamus 6.62e-01 0.000306 0 22:40545828-22:42690262
11800 22 42979727 43010968 POLDIP3 psychencode -1.57e+00 0.000271 0 22:40545828-22:42690262
5439 22 42475703 42480179 C22orf32 ntr.blood.rnaarr 1.00e+00 0.000370 0 22:40545828-22:42690262
5272 22 41253088 41351450 XPNPEP3 whole_blood 4.28e+00 0.002550 1 22:40545828-22:42690262
5546 22 42528610 42529005 RP4-669P10.19 brain_cortex -8.04e-01 0.000243 0 22:40545828-22:42690262
5287 22 41253088 41351450 XPNPEP3 brain_cerebellar_hemisphere 4.04e+00 0.001630 1 22:40545828-22:42690262
5511 22 42318027 42319104 CTA-250D10.23 adrenal_gland 1.01e+00 0.000271 0 22:40545828-22:42690262
5247 22 42481529 42486959 NDUFA6 yfs.blood.rnaarr 2.23e+00 0.012300 1 22:40545828-22:42690262
5262 22 42481529 42486934 NDUFA6 brain_cerebellar_hemisphere 2.46e+00 0.003980 1 22:40545828-22:42690262
5275 22 42481529 42486934 NDUFA6 brain_cerebellum 2.32e+00 0.002290 1 22:40545828-22:42690262
5485 22 42535623 42535938 RP4-669P10.16 brain_frontal_cortex_ba9 6.31e-01 0.000295 0 22:40545828-22:42690262
5395 22 42475695 42480288 SMDT1 brain_cerebellar_hemisphere 7.22e-01 0.000473 0 22:40545828-22:42690262
5322 22 43013845 43045405 CYB5R3 cmc.brain.rnaseq_splicing 1.28e+00 0.000891 0 22:40545828-22:42690262
11828 22 41994032 42017100 DESI1 psychencode 1.34e+00 0.000389 0 22:40545828-22:42690262
5285 22 42017123 42060044 XRCC6 adrenal_gland -1.95e+00 0.001660 1 22:40545828-22:42690262
5294 22 42522501 42526908 CYP2D6 brain_substantia_nigra -2.01e+00 0.001360 1 22:40545828-22:42690262
5477 22 42951229 42978044 RRP7B thyroid 1.41e+00 0.000302 0 22:40545828-22:42690262
5309 22 41253088 41351450 XPNPEP3 brain_cerebellum 1.87e+00 0.001040 0 22:40545828-22:42690262
12860 22 42017123 42060044 XRCC6 psychencode -5.17e-01 0.001670 1 22:40545828-22:42690262
5402 22 42522501 42526908 CYP2D6 brain_frontal_cortex_ba9 -1.89e+00 0.000451 0 22:40545828-22:42690262
5407 22 42522501 42526908 CYP2D6 brain_putamen_basal_ganglia -1.76e+00 0.000440 0 22:40545828-22:42690262
5310 22 42017123 42060044 XRCC6 whole_blood -3.49e+00 0.001030 0 22:40545828-22:42690262
5250 22 42485634 42486032 RP1-257I20.14 brain_cerebellar_hemisphere 2.86e+00 0.011000 1 22:40545828-22:42690262
5446 22 42486960 42535286 NDUFA6-AS1 whole_blood 4.27e-01 0.000348 0 22:40545828-22:42690262
5366 22 42522501 42526908 CYP2D6 whole_blood -2.07e+00 0.000586 0 22:40545828-22:42690262
5547 22 40297086 40369725 GRAP2 brain_hypothalamus 4.07e-01 0.000243 0 22:40545828-22:42690262
5279 22 42481529 42486934 NDUFA6 brain_frontal_cortex_ba9 2.34e+00 0.002000 1 22:40545828-22:42690262
5415 22 42522501 42526908 CYP2D6 brain_hypothalamus -1.72e+00 0.000421 0 22:40545828-22:42690262
5454 22 42545877 42551007 CYP2D8P1 pituitary 1.54e-01 0.000325 0 22:40545828-22:42690262
5372 22 41253088 41351450 XPNPEP3 brain_hippocampus 1.29e+00 0.000535 0 22:40545828-22:42690262
5244 22 42481529 42486934 NDUFA6 brain_hippocampus 2.84e+00 0.021200 1 22:40545828-22:42690262
5289 22 42095517 42195459 MEI1 cmc.brain.rnaseq 2.27e+00 0.001500 1 22:40545828-22:42690262
5514 22 42528610 42529005 RP4-669P10.19 brain_cerebellum -1.92e-01 0.000269 0 22:40545828-22:42690262
5541 22 42528610 42529005 RP4-669P10.19 brain_caudate_basal_ganglia -9.74e-01 0.000247 0 22:40545828-22:42690262
5545 22 43088126 43117286 A4GALT cmc.brain.rnaseq 1.01e+00 0.000244 0 22:40545828-22:42690262
5451 22 42475695 42480288 SMDT1 brain_amygdala 6.07e-01 0.000331 0 22:40545828-22:42690262
5263 22 42905974 42915808 RRP7A thyroid -2.46e+00 0.003980 1 22:40545828-22:42690262
5448 22 41074754 41078818 MCHR1 brain_cerebellar_hemisphere 9.90e-01 0.000340 0 22:40545828-22:42690262
5370 22 42522501 42526908 CYP2D6 brain_caudate_basal_ganglia -2.00e+00 0.000563 0 22:40545828-22:42690262
5349 22 42095503 42195460 MEI1 brain_anterior_cingulate_cortex_ba24 3.24e+00 0.000739 0 22:40545828-22:42690262
5449 22 42475695 42480288 SMDT1 whole_blood 9.00e-01 0.000335 0 22:40545828-22:42690262
5443 22 42536214 42540576 CYP2D7P1 adrenal_gland -8.45e-02 0.000358 0 22:40545828-22:42690262
5351 22 42348169 42354937 LINC00634 brain_cortex 2.18e+00 0.000730 0 22:40545828-22:42690262
5493 22 42486960 42535286 NDUFA6-AS1 pituitary -1.36e-01 0.000287 0 22:40545828-22:42690262
5281 22 42905974 42915808 RRP7A adrenal_gland 2.00e+00 0.001890 1 22:40545828-22:42690262
5334 22 42095503 42195460 MEI1 whole_blood 2.96e+00 0.000812 0 22:40545828-22:42690262
5483 22 42397073 42397970 SLC25A5P1 pituitary -5.26e-01 0.000296 0 22:40545828-22:42690262
5332 22 43013846 43045574 CYB5R3 brain_nucleus_accumbens_basal_ganglia 1.62e+00 0.000848 0 22:40545828-22:42690262
5328 22 42069934 42086508 NHP2L1 yfs.blood.rnaarr 3.69e+00 0.000862 0 22:40545828-22:42690262
5430 22 42522501 42526908 CYP2D6 brain_cortex -1.87e+00 0.000388 0 22:40545828-22:42690262
5365 22 41601312 41627275 L3MBTL2 cmc.brain.rnaseq_splicing 1.04e+00 0.000597 0 22:40545828-22:42690262
5400 22 42394729 42454357 WBP2NL adrenal_gland 1.69e+00 0.000458 0 22:40545828-22:42690262
5396 22 41601209 41627275 L3MBTL2 brain_frontal_cortex_ba9 3.12e+00 0.000470 0 22:40545828-22:42690262
5444 22 42522501 42526908 CYP2D6 brain_anterior_cingulate_cortex_ba24 -1.63e+00 0.000354 0 22:40545828-22:42690262
5471 22 42536214 42540576 CYP2D7P1 brain_caudate_basal_ganglia -1.20e+00 0.000306 0 22:40545828-22:42690262
5480 22 40811007 40811449 RP5-1042K10.13 brain_nucleus_accumbens_basal_ganglia 2.16e+00 0.000301 0 22:40545828-22:42690262
5552 22 42535623 42535938 RP4-669P10.16 adrenal_gland 3.37e-01 0.000240 0 22:40545828-22:42690262
5382 22 42522501 42526908 CYP2D6 thyroid -1.66e+00 0.000512 0 22:40545828-22:42690262
5504 22 42486960 42535286 NDUFA6-AS1 brain_cerebellum -1.34e-01 0.000277 0 22:40545828-22:42690262
5516 22 42528610 42529005 RP4-669P10.19 brain_cerebellar_hemisphere -3.48e-01 0.000268 0 22:40545828-22:42690262
5475 22 42536214 42540576 CYP2D7P1 brain_putamen_basal_ganglia 7.73e-02 0.000304 0 22:40545828-22:42690262
5553 22 40742503 40762575 ADSL cmc.brain.rnaseq -9.06e-01 0.000234 0 22:40545828-22:42690262
5360 22 41956767 41973745 CSDC2 brain_anterior_cingulate_cortex_ba24 2.21e+00 0.000653 0 22:40545828-22:42690262
11824 22 41697526 41756151 ZC3H7B psychencode 4.62e+00 0.004730 1 22:40545828-22:42690262
5317 22 42017123 42060044 XRCC6 brain_amygdala -3.64e+00 0.000968 0 22:40545828-22:42690262
5548 22 43013846 43045574 CYB5R3 adrenal_gland -4.04e-01 0.000242 0 22:40545828-22:42690262
5265 22 41641614 41682216 RANGAP1 cmc.brain.rnaseq_splicing 1.81e+00 0.003720 1 22:40545828-22:42690262
5500 22 41697526 41756151 ZC3H7B thyroid -1.37e+00 0.000281 0 22:40545828-22:42690262
5401 22 42475695 42480288 SMDT1 brain_nucleus_accumbens_basal_ganglia 5.72e-01 0.000456 0 22:40545828-22:42690262
5447 22 42522501 42526908 CYP2D6 brain_amygdala -1.50e+00 0.000348 0 22:40545828-22:42690262
5442 22 42196677 42222303 CCDC134 cmc.brain.rnaseq -1.23e+00 0.000364 0 22:40545828-22:42690262
5498 22 42394729 42454357 WBP2NL brain_nucleus_accumbens_basal_ganglia 6.24e-01 0.000282 0 22:40545828-22:42690262
5243 22 41258260 41363888 XPNPEP3 cmc.brain.rnaseq 5.01e+00 0.024200 1 22:40545828-22:42690262
5291 22 42095503 42195460 MEI1 thyroid 3.29e+00 0.001400 1 22:40545828-22:42690262
5264 22 42196683 42222303 CCDC134 thyroid -1.56e+00 0.003980 1 22:40545828-22:42690262
5518 22 42536214 42540576 CYP2D7P1 brain_hippocampus 2.34e-01 0.000266 0 22:40545828-22:42690262
5271 22 43088127 43117304 A4GALT yfs.blood.rnaarr 2.70e+00 0.002590 1 22:40545828-22:42690262
5254 22 42485634 42486032 RP1-257I20.14 brain_cerebellum 2.82e+00 0.006920 1 22:40545828-22:42690262
5520 22 42536214 42540576 CYP2D7P1 brain_cortex -1.22e+00 0.000265 0 22:40545828-22:42690262
5374 22 42536214 42540576 CYP2D7P1 brain_frontal_cortex_ba9 -2.71e+00 0.000532 0 22:40545828-22:42690262
5523 22 42536214 42540576 CYP2D7P1 brain_anterior_cingulate_cortex_ba24 -1.84e-01 0.000256 0 22:40545828-22:42690262
5340 22 42905974 42915808 RRP7A brain_putamen_basal_ganglia -1.88e+00 0.000775 0 22:40545828-22:42690262
5526 22 42536214 42540576 CYP2D7P1 brain_nucleus_accumbens_basal_ganglia -7.25e-01 0.000255 0 22:40545828-22:42690262
5531 22 42536214 42540576 CYP2D7P1 brain_cerebellar_hemisphere -1.11e+00 0.000253 0 22:40545828-22:42690262
5533 22 42536214 42540576 CYP2D7P1 brain_cerebellum -1.13e+00 0.000251 0 22:40545828-22:42690262
5534 22 42536214 42540576 CYP2D7P1 thyroid 3.48e-02 0.000251 0 22:40545828-22:42690262
5450 22 42522501 42526908 CYP2D6 adrenal_gland -1.56e+00 0.000333 0 22:40545828-22:42690262
5482 22 42905974 42915808 RRP7A yfs.blood.rnaarr -2.08e-01 0.000299 0 22:40545828-22:42690262
5315 22 42536214 42540576 CYP2D7P1 brain_substantia_nigra -2.17e+00 0.000971 0 22:40545828-22:42690262
5392 22 42536214 42540576 CYP2D7P1 pituitary -1.60e+00 0.000474 0 22:40545828-22:42690262
5468 22 42522501 42526908 CYP2D6 brain_cerebellar_hemisphere -1.59e+00 0.000308 0 22:40545828-22:42690262
5488 22 42522501 42526908 CYP2D6 brain_hippocampus -1.36e+00 0.000292 0 22:40545828-22:42690262
5543 22 42536214 42540576 CYP2D7P1 brain_hypothalamus -9.45e-01 0.000246 0 22:40545828-22:42690262
12552 22 42095503 42195460 MEI1 psychencode 1.45e+00 0.001730 1 22:40545828-22:42690262
5455 22 42545877 42551007 CYP2D8P1 brain_cerebellum -3.51e-02 0.000325 0 22:40545828-22:42690262
5537 22 42528610 42529005 RP4-669P10.19 brain_frontal_cortex_ba9 -9.26e-01 0.000249 0 22:40545828-22:42690262
11826 22 41921808 41940610 POLR3H psychencode 3.46e+00 0.000671 0 22:40545828-22:42690262
5273 22 41074754 41078818 MCHR1 brain_cortex -3.80e+00 0.002360 1 22:40545828-22:42690262
5391 22 42522501 42526908 CYP2D6 brain_nucleus_accumbens_basal_ganglia -1.89e+00 0.000480 0 22:40545828-22:42690262
5387 22 42522501 42526908 CYP2D6 yfs.blood.rnaarr -1.60e+00 0.000486 0 22:40545828-22:42690262
5255 22 42485634 42486032 RP1-257I20.14 pituitary 3.33e+00 0.005870 1 22:40545828-22:42690262
5465 22 42545877 42551007 CYP2D8P1 thyroid 3.33e-01 0.000309 0 22:40545828-22:42690262
5501 22 42545877 42551007 CYP2D8P1 whole_blood 2.84e-01 0.000280 0 22:40545828-22:42690262
11805 22 43013846 43045574 CYB5R3 psychencode 1.22e+00 0.000317 0 22:40545828-22:42690262
5491 22 42334725 42343168 CENPM brain_cerebellum 1.90e+00 0.000290 0 22:40545828-22:42690262
5497 22 42334725 42343168 CENPM brain_cerebellar_hemisphere 1.85e+00 0.000283 0 22:40545828-22:42690262
5551 22 43088127 43117304 A4GALT whole_blood 3.28e-02 0.000240 0 22:40545828-22:42690262
13198 22 40742507 40786467 ADSL psychencode 1.35e+00 0.001260 1 22:40545828-22:42690262
5435 22 42475695 42480288 SMDT1 brain_cerebellum 7.14e-01 0.000379 0 22:40545828-22:42690262
5494 22 42522501 42526908 CYP2D6 brain_cerebellum -1.17e+00 0.000286 0 22:40545828-22:42690262
5361 22 42334725 42343168 CENPM brain_hippocampus 3.41e+00 0.000642 0 22:40545828-22:42690262
5331 22 42528610 42529005 RP4-669P10.19 brain_amygdala 1.46e+00 0.000853 0 22:40545828-22:42690262
12926 22 42454358 42466846 NAGA psychencode 1.84e+00 0.000594 0 22:40545828-22:42690262
5474 22 42528610 42529005 RP4-669P10.19 brain_hypothalamus -1.52e+00 0.000304 0 22:40545828-22:42690262
5529 22 42394729 42454357 WBP2NL brain_caudate_basal_ganglia 7.12e-01 0.000254 0 22:40545828-22:42690262
5293 22 42481529 42486934 NDUFA6 pituitary 2.04e+00 0.001400 1 22:40545828-22:42690262
5416 22 42454461 42466846 NAGA brain_anterior_cingulate_cortex_ba24 1.29e+00 0.000419 0 22:40545828-22:42690262
5375 22 42528610 42529005 RP4-669P10.19 adrenal_gland 3.71e-01 0.000530 0 22:40545828-22:42690262
5358 22 42481529 42486959 NDUFA6 ntr.blood.rnaarr 2.36e+00 0.000666 0 22:40545828-22:42690262
5510 22 42528610 42529005 RP4-669P10.19 brain_nucleus_accumbens_basal_ganglia -1.27e+00 0.000271 0 22:40545828-22:42690262
5550 22 40742503 40762575 ADSL cmc.brain.rnaseq_splicing 4.13e-01 0.000240 0 22:40545828-22:42690262
5452 22 42454461 42466846 NAGA brain_cerebellar_hemisphere 1.45e+00 0.000331 0 22:40545828-22:42690262
5431 22 42528610 42529005 RP4-669P10.19 brain_hippocampus 3.35e-01 0.000384 0 22:40545828-22:42690262
5532 22 42951229 42978044 RRP7B brain_hippocampus -2.10e-02 0.000253 0 22:40545828-22:42690262
5429 22 40390953 40439071 FAM83F thyroid -1.84e+00 0.000388 0 22:40545828-22:42690262
12979 22 42536214 42540576 CYP2D7P psychencode -1.48e+00 0.000552 0 22:40545828-22:42690262
5298 22 41956767 41973745 CSDC2 brain_nucleus_accumbens_basal_ganglia 3.08e+00 0.001310 1 22:40545828-22:42690262
5527 22 42394729 42454357 WBP2NL thyroid 8.35e-01 0.000255 0 22:40545828-22:42690262
5472 22 42372276 42394225 SEPT3 pituitary -7.98e-01 0.000306 0 22:40545828-22:42690262
5295 22 41956767 41973745 CSDC2 brain_cortex 2.80e+00 0.001330 1 22:40545828-22:42690262
5258 22 42485634 42486032 RP1-257I20.14 whole_blood 2.77e+00 0.004670 1 22:40545828-22:42690262
5345 22 42535623 42535938 RP4-669P10.16 brain_hypothalamus 8.70e-01 0.000766 0 22:40545828-22:42690262
5412 22 42475695 42480288 SMDT1 adrenal_gland 1.13e+00 0.000424 0 22:40545828-22:42690262
5296 22 42095503 42195460 MEI1 yfs.blood.rnaarr 3.15e+00 0.001330 1 22:40545828-22:42690262
5409 22 41601209 41627275 L3MBTL2 whole_blood 6.03e-01 0.000429 0 22:40545828-22:42690262
5513 22 42486960 42535286 NDUFA6-AS1 brain_cerebellar_hemisphere -2.39e-01 0.000270 0 22:40545828-22:42690262
5364 22 42535623 42535938 RP4-669P10.16 brain_anterior_cingulate_cortex_ba24 1.23e+00 0.000606 0 22:40545828-22:42690262
5506 22 42904340 42915829 RRP7A cmc.brain.rnaseq_splicing -4.00e-01 0.000273 0 22:40545828-22:42690262
5492 22 42334725 42343168 CENPM pituitary 1.92e+00 0.000290 0 22:40545828-22:42690262
5557 22 40766595 40806284 SGSM3 brain_cerebellum 5.71e-01 0.000218 0 22:40545828-22:42690262
5316 22 41865129 41921352 ACO2 thyroid 3.67e+00 0.000969 0 22:40545828-22:42690262
5406 22 42470255 42475445 FAM109B whole_blood 1.20e+00 0.000440 0 22:40545828-22:42690262
5542 22 42348169 42354937 LINC00634 brain_cerebellum 8.99e-01 0.000246 0 22:40545828-22:42690262
5261 22 43013846 43045574 CYB5R3 pituitary 2.71e+00 0.004110 1 22:40545828-22:42690262
5544 22 42528610 42529005 RP4-669P10.19 thyroid -7.74e-01 0.000246 0 22:40545828-22:42690262
5424 22 42979727 43010968 POLDIP3 brain_nucleus_accumbens_basal_ganglia -2.18e+00 0.000399 0 22:40545828-22:42690262
11817 22 40766595 40806293 SGSM3 psychencode -8.25e-01 0.000265 0 22:40545828-22:42690262
5554 22 40390953 40439071 FAM83F brain_cerebellum -1.75e-01 0.000225 0 22:40545828-22:42690262
12153 22 41074754 41078818 MCHR1 psychencode -3.43e+00 0.000967 0 22:40545828-22:42690262
12866 22 40806285 41032706 MKL1 psychencode 1.59e-01 0.000267 0 22:40545828-22:42690262
5556 22 40440820 40731812 TNRC6B cmc.brain.rnaseq_splicing 8.68e-02 0.000219 0 22:40545828-22:42690262
5419 22 40811007 40811449 RP5-1042K10.13 brain_cerebellar_hemisphere 1.35e+00 0.000409 0 22:40545828-22:42690262
5371 22 40806294 41032706 MKL1 brain_putamen_basal_ganglia -3.24e+00 0.000535 0 22:40545828-22:42690262
5456 22 42394729 42454357 WBP2NL brain_anterior_cingulate_cortex_ba24 5.85e-01 0.000324 0 22:40545828-22:42690262
11825 22 41865129 41924993 ACO2 psychencode -2.64e+00 0.000318 0 22:40545828-22:42690262
5386 22 42454461 42466846 NAGA brain_cortex 1.63e+00 0.000488 0 22:40545828-22:42690262
5408 22 42905974 42915808 RRP7A pituitary -1.29e+00 0.000430 0 22:40545828-22:42690262
5470 22 40806294 41032706 MKL1 thyroid -1.82e+00 0.000306 0 22:40545828-22:42690262
5555 22 40806294 41032706 MKL1 brain_cerebellum 9.34e-01 0.000220 0 22:40545828-22:42690262
5347 22 41921802 41940479 POLR3H cmc.brain.rnaseq 3.45e+00 0.000755 0 22:40545828-22:42690262
5417 22 42334725 42343168 CENPM brain_nucleus_accumbens_basal_ganglia 7.18e-01 0.000412 0 22:40545828-22:42690262
5467 22 42535623 42535938 RP4-669P10.16 brain_cerebellar_hemisphere 4.14e-01 0.000308 0 22:40545828-22:42690262
5274 22 43088127 43117304 A4GALT brain_hypothalamus 2.28e+00 0.002360 1 22:40545828-22:42690262
5278 22 41075181 41078818 MCHR1 cmc.brain.rnaseq -3.87e+00 0.002090 1 22:40545828-22:42690262
12981 22 42348169 42354937 LINC00634 psychencode 2.05e+00 0.000886 0 22:40545828-22:42690262
5369 22 42535623 42535938 RP4-669P10.16 brain_putamen_basal_ganglia 1.75e-01 0.000569 0 22:40545828-22:42690262
5241 22 41165634 41215403 SLC25A17 thyroid 4.99e+00 0.025800 1 22:40545828-22:42690262
5413 22 42475695 42480288 SMDT1 pituitary 1.15e+00 0.000423 0 22:40545828-22:42690262
5269 22 41921808 41940610 POLR3H brain_nucleus_accumbens_basal_ganglia 4.44e+00 0.003120 1 22:40545828-22:42690262
5414 22 42475695 42480288 SMDT1 brain_hypothalamus 1.12e+00 0.000422 0 22:40545828-22:42690262
5489 22 42334725 42343168 CENPM thyroid 1.95e+00 0.000292 0 22:40545828-22:42690262
5376 22 42196683 42222303 CCDC134 adrenal_gland -8.50e-01 0.000527 0 22:40545828-22:42690262
5354 22 42318027 42319104 CTA-250D10.23 brain_frontal_cortex_ba9 4.14e-02 0.000701 0 22:40545828-22:42690262
5266 22 42470255 42475445 FAM109B brain_cortex 1.48e+00 0.003710 1 22:40545828-22:42690262
13087 22 42528550 42529005 RP4-669P10.19 psychencode -1.16e+00 0.000267 0 22:40545828-22:42690262
5398 22 42454461 42466846 NAGA thyroid 1.65e+00 0.000464 0 22:40545828-22:42690262
5528 22 42904340 42915829 RRP7A cmc.brain.rnaseq -1.29e+00 0.000254 0 22:40545828-22:42690262
5304 22 42095503 42195460 MEI1 adrenal_gland 2.67e+00 0.001080 0 22:40545828-22:42690262
5343 22 42069934 42086508 NHP2L1 thyroid -3.57e+00 0.000768 0 22:40545828-22:42690262
5379 22 41641614 41682216 RANGAP1 cmc.brain.rnaseq_splicing -3.31e+00 0.000513 0 22:40545828-22:42690262
5239 22 41487790 41576081 EP300 brain_cerebellum 5.54e+00 0.332000 1 22:40545828-22:42690262
5381 22 42535623 42535938 RP4-669P10.16 brain_hippocampus 1.18e+00 0.000513 0 22:40545828-22:42690262
5336 22 42536214 42540576 CYP2D7P1 brain_amygdala 2.92e+00 0.000800 0 22:40545828-22:42690262
5460 22 42535623 42535938 RP4-669P10.16 brain_amygdala 7.29e-01 0.000318 0 22:40545828-22:42690262
5422 22 41074754 41078818 MCHR1 pituitary 1.20e+00 0.000402 0 22:40545828-22:42690262
11791 22 42069934 42086508 NHP2L1 psychencode -1.88e+00 0.000586 0 22:40545828-22:42690262
5377 22 42545877 42551007 CYP2D8P1 brain_hippocampus -2.58e-01 0.000525 0 22:40545828-22:42690262
5437 22 43013846 43045574 CYB5R3 thyroid 5.79e-01 0.000374 0 22:40545828-22:42690262
5515 22 42979726 43010962 POLDIP3 cmc.brain.rnaseq 2.86e-02 0.000269 0 22:40545828-22:42690262
5305 22 41763337 41795330 TEF whole_blood 3.80e+00 0.001080 0 22:40545828-22:42690262
5325 22 41956767 41973745 CSDC2 brain_frontal_cortex_ba9 3.14e+00 0.000871 0 22:40545828-22:42690262
11797 22 42522501 42526908 CYP2D6 psychencode -2.01e+00 0.000510 0 22:40545828-22:42690262
5536 22 43088127 43117304 A4GALT brain_amygdala -8.61e-01 0.000250 0 22:40545828-22:42690262
5389 22 41641615 41682255 RANGAP1 brain_cerebellum 2.87e+00 0.000482 0 22:40545828-22:42690262
5380 22 41605126 41613631 RP4-756G23.5 thyroid 1.19e+00 0.000513 0 22:40545828-22:42690262
5256 22 42481529 42486888 NDUFA6 cmc.brain.rnaseq 2.59e+00 0.005360 1 22:40545828-22:42690262
5457 22 42528610 42529005 RP4-669P10.19 brain_anterior_cingulate_cortex_ba24 -4.97e-01 0.000321 0 22:40545828-22:42690262
5462 22 42535623 42535938 RP4-669P10.16 thyroid 7.44e-01 0.000314 0 22:40545828-22:42690262
5276 22 42672361 42673058 Z83851.4 thyroid 3.01e+00 0.002240 1 22:40545828-22:42690262
5481 22 42535623 42535938 RP4-669P10.16 brain_caudate_basal_ganglia 2.74e-01 0.000300 0 22:40545828-22:42690262
5284 22 41921808 41940610 POLR3H brain_anterior_cingulate_cortex_ba24 2.46e+00 0.001710 1 22:40545828-22:42690262
5428 22 42470255 42475445 FAM109B brain_frontal_cortex_ba9 1.19e+00 0.000390 0 22:40545828-22:42690262
5329 22 41956767 41973745 CSDC2 brain_putamen_basal_ganglia 3.08e+00 0.000861 0 22:40545828-22:42690262
5427 22 42334725 42343168 CENPM brain_anterior_cingulate_cortex_ba24 2.12e+00 0.000392 0 22:40545828-22:42690262
5524 22 42470255 42475445 FAM109B brain_caudate_basal_ganglia 8.82e-03 0.000256 0 22:40545828-22:42690262
13172 22 41605126 41613631 RP4-756G23.5 psychencode 1.41e+00 0.000500 0 22:40545828-22:42690262
5335 22 42951229 42978044 RRP7B brain_cerebellar_hemisphere -1.91e+00 0.000806 0 22:40545828-22:42690262
5519 22 41074754 41078818 MCHR1 brain_cerebellum 5.13e-02 0.000265 0 22:40545828-22:42690262
5330 22 42951229 42978044 RRP7B pituitary -2.19e+00 0.000857 0 22:40545828-22:42690262
5301 22 41921808 41940610 POLR3H brain_putamen_basal_ganglia 3.91e+00 0.001130 1 22:40545828-22:42690262
5434 22 42949623 42968535 SERHL2 adrenal_gland 1.47e+00 0.000380 0 22:40545828-22:42690262
5473 22 41488613 41576081 EP300 cmc.brain.rnaseq 1.37e+00 0.000304 0 22:40545828-22:42690262
13394 22 42318027 42319104 CTA-250D10.23 psychencode 6.75e-01 0.000270 0 22:40545828-22:42690262
5344 22 42665759 42671202 Z83851.3 adrenal_gland 2.48e+00 0.000767 0 22:40545828-22:42690262
5512 22 42896596 42905116 SERHL brain_hypothalamus 8.58e-03 0.000270 0 22:40545828-22:42690262
5421 22 42454461 42466846 NAGA brain_frontal_cortex_ba9 1.64e+00 0.000404 0 22:40545828-22:42690262
5459 22 42334725 42343168 CENPM brain_frontal_cortex_ba9 2.05e+00 0.000319 0 22:40545828-22:42690262
5362 22 41855721 41864729 PHF5A brain_frontal_cortex_ba9 -2.13e+00 0.000627 0 22:40545828-22:42690262
5280 22 41865129 41921352 ACO2 pituitary 2.87e+00 0.001900 1 22:40545828-22:42690262
5453 22 42535623 42535938 RP4-669P10.16 brain_cerebellum 3.65e-01 0.000328 0 22:40545828-22:42690262
5338 22 41921808 41940610 POLR3H brain_cerebellum 3.76e+00 0.000788 0 22:40545828-22:42690262
5399 22 42535623 42535938 RP4-669P10.16 pituitary 1.09e+00 0.000459 0 22:40545828-22:42690262
11794 22 42372276 42394225 SEPT3 psychencode 3.52e-01 0.000306 0 22:40545828-22:42690262
5479 22 42334725 42343168 CENPM brain_caudate_basal_ganglia 1.99e+00 0.000301 0 22:40545828-22:42690262
5373 22 41956767 41973745 CSDC2 thyroid 2.92e+00 0.000534 0 22:40545828-22:42690262
5353 22 40440821 40731812 TNRC6B brain_cerebellar_hemisphere 2.46e+00 0.000710 0 22:40545828-22:42690262
5311 22 41763337 41795330 TEF yfs.blood.rnaarr 3.81e+00 0.001010 0 22:40545828-22:42690262
5339 22 41921808 41940610 POLR3H brain_caudate_basal_ganglia 3.42e+00 0.000781 0 22:40545828-22:42690262
5525 22 43013846 43045574 CYB5R3 brain_cortex -1.14e+00 0.000255 0 22:40545828-22:42690262
5420 22 42485634 42486032 RP1-257I20.14 adrenal_gland 2.96e+00 0.000405 0 22:40545828-22:42690262
5326 22 41074754 41078818 MCHR1 whole_blood 2.59e+00 0.000871 0 22:40545828-22:42690262
13465 22 42485634 42486032 RP1-257I20.14 psychencode 5.24e-01 0.000400 0 22:40545828-22:42690262
5307 22 41921808 41940610 POLR3H brain_hypothalamus 2.77e+00 0.001060 0 22:40545828-22:42690262
5312 22 41921808 41940610 POLR3H brain_hippocampus 3.03e+00 0.001010 0 22:40545828-22:42690262
11792 22 42196683 42222303 CCDC134 psychencode -2.33e+00 0.000409 0 22:40545828-22:42690262
13071 22 42545877 42551007 CYP2D8P psychencode 1.70e-01 0.000411 0 22:40545828-22:42690262
5503 22 43013846 43045574 CYB5R3 brain_putamen_basal_ganglia 6.19e-02 0.000278 0 22:40545828-22:42690262
5461 22 42674194 42674852 CTA-989H11.1 whole_blood 3.70e-01 0.000315 0 22:40545828-22:42690262
5320 22 41921808 41940610 POLR3H brain_frontal_cortex_ba9 3.27e+00 0.000928 0 22:40545828-22:42690262
5405 22 42372276 42394225 SEPT3 whole_blood 2.38e+00 0.000442 0 22:40545828-22:42690262
5441 22 42545877 42551007 CYP2D8P1 brain_caudate_basal_ganglia 2.72e+00 0.000366 0 22:40545828-22:42690262
5505 22 42307297 42310570 SHISA8 adrenal_gland 1.30e+00 0.000275 0 22:40545828-22:42690262
5487 22 42321045 42322822 TNFRSF13C adrenal_gland 1.16e+00 0.000292 0 22:40545828-22:42690262
5476 22 42528610 42529005 RP4-669P10.19 pituitary -5.94e-01 0.000303 0 22:40545828-22:42690262
5321 22 41921808 41940610 POLR3H brain_cortex 3.34e+00 0.000914 0 22:40545828-22:42690262
5436 22 42318027 42319104 CTA-250D10.23 brain_cerebellar_hemisphere 2.59e+00 0.000376 0 22:40545828-22:42690262
5540 22 40440821 40731812 TNRC6B brain_cerebellum 7.95e-01 0.000247 0 22:40545828-22:42690262
5246 22 41487790 41576081 EP300 yfs.blood.rnaarr 4.87e+00 0.019200 1 22:40545828-22:42690262
5253 22 42227219 42230669 RP5-821D11.7 whole_blood -4.80e-01 0.007090 1 22:40545828-22:42690262
5357 22 42665759 42671202 Z83851.3 thyroid 2.36e+00 0.000680 0 22:40545828-22:42690262
12551 22 41763337 41795330 TEF psychencode -3.34e+00 0.001250 1 22:40545828-22:42690262
5319 22 42556019 42739622 TCF20 whole_blood -1.48e+00 0.000957 0 22:40545828-22:42690262
5385 22 42454358 42466846 NAGA yfs.blood.rnaarr 2.45e-01 0.000495 0 22:40545828-22:42690262
5283 22 41777932 41795330 TEF ntr.blood.rnaarr 4.01e+00 0.001750 1 22:40545828-22:42690262
5403 22 42454461 42466846 NAGA pituitary 1.72e+00 0.000451 0 22:40545828-22:42690262
5517 22 42896596 42905116 SERHL brain_caudate_basal_ganglia -1.77e-01 0.000266 0 22:40545828-22:42690262
5290 22 41487790 41576081 EP300 brain_caudate_basal_ganglia 2.56e+00 0.001500 1 22:40545828-22:42690262
5411 22 42454461 42466846 NAGA brain_nucleus_accumbens_basal_ganglia 1.62e+00 0.000427 0 22:40545828-22:42690262
5432 22 42535623 42535938 RP4-669P10.16 brain_cortex 1.07e+00 0.000383 0 22:40545828-22:42690262
5327 22 41829491 41843027 TOB2 cmc.brain.rnaseq 3.24e+00 0.000867 0 22:40545828-22:42690262
5308 22 42949924 42970388 SERHL2 cmc.brain.rnaseq -2.34e+00 0.001050 0 22:40545828-22:42690262
5378 22 42348169 42354937 LINC00634 brain_frontal_cortex_ba9 1.86e+00 0.000516 0 22:40545828-22:42690262
5509 22 42951228 42978017 RRP7B cmc.brain.rnaseq -1.27e+00 0.000271 0 22:40545828-22:42690262
5445 22 42545877 42551007 CYP2D8P1 adrenal_gland -2.65e-01 0.000352 0 22:40545828-22:42690262
11822 22 41625517 41636938 CHADL psychencode -1.99e-01 0.000221 0 22:40545828-22:42690262
11823 22 41641615 41682255 RANGAP1 psychencode -4.84e+00 0.009810 1 22:40545828-22:42690262
5484 22 42334725 42343168 CENPM brain_cortex 1.99e+00 0.000295 0 22:40545828-22:42690262
5745 22 42318027 42319104 CTA-250D10.23 brain_cerebellum 8.71e-01 0.000288 0 22:42691238-22:43713668
5641 22 42470255 42475445 FAM109B whole_blood -2.49e+00 0.000550 0 22:42691238-22:43713668
5599 22 42394729 42454357 WBP2NL adrenal_gland 3.06e+00 0.001220 0 22:42691238-22:43713668
5653 22 42470255 42475445 FAM109B thyroid -2.34e+00 0.000487 0 22:42691238-22:43713668
5558 22 42394729 42454357 WBP2NL brain_frontal_cortex_ba9 4.73e+00 0.464000 1 22:42691238-22:43713668
5606 22 42394729 42454357 WBP2NL brain_anterior_cingulate_cortex_ba24 2.68e+00 0.000918 0 22:42691238-22:43713668
5634 22 42397073 42397970 SLC25A5P1 brain_cerebellum 4.83e-01 0.000592 0 22:42691238-22:43713668
5692 22 42321045 42322822 TNFRSF13C brain_cerebellum -1.22e+00 0.000363 0 22:42691238-22:43713668
5737 22 42454461 42466846 NAGA thyroid -7.42e-01 0.000295 0 22:42691238-22:43713668
5651 22 42394729 42454357 WBP2NL whole_blood -6.63e-01 0.000495 0 22:42691238-22:43713668
5567 22 42470255 42475445 FAM109B brain_frontal_cortex_ba9 -3.50e+00 0.004260 1 22:42691238-22:43713668
5719 22 42394729 42454357 WBP2NL brain_hypothalamus 1.40e+00 0.000313 0 22:42691238-22:43713668
5707 22 42470255 42475445 FAM109B brain_cortex 1.61e+00 0.000328 0 22:42691238-22:43713668
11795 22 42372276 42394225 SEPT3 psychencode -2.85e+00 0.000828 0 22:42691238-22:43713668
5685 22 42397073 42397970 SLC25A5P1 thyroid 2.12e+00 0.000381 0 22:42691238-22:43713668
5570 22 42454337 42466846 NAGA cmc.brain.rnaseq 3.41e+00 0.003230 1 22:42691238-22:43713668
5572 22 42334725 42343168 CENPM brain_caudate_basal_ganglia 3.40e+00 0.002900 1 22:42691238-22:43713668
5574 22 42475695 42480288 SMDT1 brain_cortex -3.37e+00 0.002740 1 22:42691238-22:43713668
5663 22 42475695 42480288 SMDT1 brain_putamen_basal_ganglia -2.09e+00 0.000433 0 22:42691238-22:43713668
5666 22 42475695 42480288 SMDT1 brain_cerebellar_hemisphere -1.89e+00 0.000426 0 22:42691238-22:43713668
5615 22 42475695 42480288 SMDT1 brain_caudate_basal_ganglia -2.73e+00 0.000738 0 22:42691238-22:43713668
5573 22 42334725 42343168 CENPM brain_substantia_nigra -3.37e+00 0.002790 1 22:42691238-22:43713668
5646 22 42475695 42480288 SMDT1 whole_blood -9.53e-01 0.000520 0 22:42691238-22:43713668
5679 22 42475695 42480288 SMDT1 brain_nucleus_accumbens_basal_ganglia -2.08e+00 0.000396 0 22:42691238-22:43713668
5673 22 42536214 42540576 CYP2D7P1 brain_substantia_nigra -2.02e-01 0.000402 0 22:42691238-22:43713668
5752 22 42475695 42480288 SMDT1 thyroid 3.15e-01 0.000279 0 22:42691238-22:43713668
5699 22 42536214 42540576 CYP2D7P1 thyroid 1.78e+00 0.000348 0 22:42691238-22:43713668
5767 22 42481529 42486934 NDUFA6 whole_blood 2.90e-01 0.000264 0 22:42691238-22:43713668
5730 22 42951229 42978044 RRP7B brain_anterior_cingulate_cortex_ba24 4.28e-01 0.000302 0 22:42691238-22:43713668
5733 22 43088127 43117304 A4GALT brain_hypothalamus -1.21e+00 0.000298 0 22:42691238-22:43713668
5770 22 43254393 43411151 PACSIN2 brain_cortex 3.18e-01 0.000260 0 22:42691238-22:43713668
5703 22 42372276 42394225 SEPT3 brain_cerebellar_hemisphere 1.41e-01 0.000338 0 22:42691238-22:43713668
5784 22 43254393 43411151 PACSIN2 brain_cerebellar_hemisphere -2.87e-01 0.000252 0 22:42691238-22:43713668
5578 22 42470255 42475445 FAM109B brain_caudate_basal_ganglia -3.30e+00 0.002360 1 22:42691238-22:43713668
5560 22 42475695 42480288 SMDT1 brain_anterior_cingulate_cortex_ba24 3.89e+00 0.015300 1 22:42691238-22:43713668
5768 22 43192508 43254112 ARFGAP3 brain_cortex -3.18e-02 0.000262 0 22:42691238-22:43713668
5769 22 43192508 43254112 ARFGAP3 thyroid 3.72e-02 0.000260 0 22:42691238-22:43713668
5771 22 43192508 43254112 ARFGAP3 brain_caudate_basal_ganglia 3.92e-01 0.000259 0 22:42691238-22:43713668
5773 22 43192508 43254112 ARFGAP3 brain_hippocampus -1.71e-01 0.000258 0 22:42691238-22:43713668
5644 22 43924624 44208185 EFCAB6 brain_anterior_cingulate_cortex_ba24 1.04e+00 0.000535 0 22:42691238-22:43713668
12777 22 42481529 42486959 NDUFA6 psychencode 2.02e+00 0.000361 0 22:42691238-22:43713668
5778 22 43192508 43254112 ARFGAP3 whole_blood 2.74e-01 0.000255 0 22:42691238-22:43713668
5791 22 43192508 43254112 ARFGAP3 brain_cerebellum -1.44e-01 0.000250 0 22:42691238-22:43713668
5674 22 42486960 42535286 NDUFA6-AS1 adrenal_gland 8.47e-01 0.000400 0 22:42691238-22:43713668
5797 22 43192508 43254112 ARFGAP3 brain_putamen_basal_ganglia -2.08e-01 0.000243 0 22:42691238-22:43713668
5682 22 43265771 43411184 PACSIN2 cmc.brain.rnaseq 9.94e-01 0.000391 0 22:42691238-22:43713668
5607 22 43013846 43045574 CYB5R3 adrenal_gland 1.85e+00 0.000879 0 22:42691238-22:43713668
5746 22 42486960 42535286 NDUFA6-AS1 whole_blood -1.11e+00 0.000283 0 22:42691238-22:43713668
5780 22 42454461 42466846 NAGA brain_cerebellar_hemisphere -7.71e-02 0.000253 0 22:42691238-22:43713668
12980 22 42536214 42540576 CYP2D7P psychencode -5.01e-01 0.000327 0 22:42691238-22:43713668
5628 22 42979727 43010968 POLDIP3 brain_nucleus_accumbens_basal_ganglia -8.75e-01 0.000636 0 22:42691238-22:43713668
13213 22 43192508 43254112 ARFGAP3 psychencode -8.13e-01 0.000314 0 22:42691238-22:43713668
5623 22 43265776 43411176 PACSIN2 ntr.blood.rnaarr 1.97e+00 0.000643 0 22:42691238-22:43713668
5650 22 42522501 42526908 CYP2D6 brain_anterior_cingulate_cortex_ba24 -2.40e+00 0.000507 0 22:42691238-22:43713668
5568 22 42665759 42671202 Z83851.3 thyroid -1.91e+00 0.004080 1 22:42691238-22:43713668
5714 22 42905974 42915808 RRP7A brain_putamen_basal_ganglia 8.47e-01 0.000318 0 22:42691238-22:43713668
5787 22 42095517 42195459 MEI1 cmc.brain.rnaseq 7.50e-01 0.000252 0 22:42691238-22:43713668
5611 22 42503769 42504957 OLA1P1 brain_hypothalamus 1.76e+00 0.000772 0 22:42691238-22:43713668
5744 22 42905974 42915808 RRP7A yfs.blood.rnaarr -6.32e-01 0.000289 0 22:42691238-22:43713668
5670 22 43192531 43253408 ARFGAP3 cmc.brain.rnaseq_splicing -1.79e+00 0.000410 0 22:42691238-22:43713668
5794 22 43442416 43485434 TTLL1 brain_nucleus_accumbens_basal_ganglia -1.09e-01 0.000246 0 22:42691238-22:43713668
13406 22 44208336 44213274 RP3-388M5.9 psychencode -3.68e-01 0.000246 0 22:42691238-22:43713668
5580 22 42334725 42343168 CENPM brain_nucleus_accumbens_basal_ganglia 3.27e+00 0.002240 1 22:42691238-22:43713668
5683 22 42503769 42504957 OLA1P1 brain_cerebellum -1.47e+00 0.000386 0 22:42691238-22:43713668
5717 22 42503769 42504957 OLA1P1 brain_substantia_nigra 1.23e+00 0.000316 0 22:42691238-22:43713668
5636 22 42951229 42978044 RRP7B thyroid 1.27e+00 0.000571 0 22:42691238-22:43713668
5610 22 42979727 43010968 POLDIP3 brain_cerebellum -9.31e-01 0.000811 0 22:42691238-22:43713668
5675 22 42481529 42486959 NDUFA6 yfs.blood.rnaarr 2.23e+00 0.000399 0 22:42691238-22:43713668
5715 22 42522501 42526908 CYP2D6 pituitary 1.24e+00 0.000317 0 22:42691238-22:43713668
5772 22 42904340 42915829 RRP7A cmc.brain.rnaseq -1.61e-01 0.000259 0 22:42691238-22:43713668
5597 22 42905974 42915808 RRP7A brain_anterior_cingulate_cortex_ba24 -2.37e+00 0.001250 0 22:42691238-22:43713668
5762 22 43192508 43254112 ARFGAP3 pituitary -4.82e-01 0.000268 0 22:42691238-22:43713668
5756 22 42896596 42905116 SERHL brain_cerebellum 3.78e-01 0.000277 0 22:42691238-22:43713668
5645 22 42522501 42526908 CYP2D6 brain_cortex -2.50e+00 0.000529 0 22:42691238-22:43713668
5693 22 43013846 43045574 CYB5R3 brain_cerebellum 4.53e-01 0.000360 0 22:42691238-22:43713668
5690 22 42470254 42475442 FAM109B cmc.brain.rnaseq 1.32e+00 0.000365 0 22:42691238-22:43713668
5708 22 43547520 43559248 TSPO adrenal_gland 5.63e-01 0.000327 0 22:42691238-22:43713668
5749 22 42905974 42915808 RRP7A pituitary 2.49e-01 0.000281 0 22:42691238-22:43713668
5758 22 42905974 42915808 RRP7A thyroid -2.97e-01 0.000274 0 22:42691238-22:43713668
5687 22 43192531 43253408 ARFGAP3 cmc.brain.rnaseq 6.60e-01 0.000369 0 22:42691238-22:43713668
5655 22 42896596 42905116 SERHL brain_caudate_basal_ganglia 1.12e+00 0.000484 0 22:42691238-22:43713668
5582 22 42904340 42915829 RRP7A cmc.brain.rnaseq_splicing -3.17e+00 0.002090 1 22:42691238-22:43713668
5763 22 42905974 42915808 RRP7A brain_nucleus_accumbens_basal_ganglia -5.76e-02 0.000268 0 22:42691238-22:43713668
5750 22 42536214 42540576 CYP2D7P1 brain_amygdala 5.21e-01 0.000280 0 22:42691238-22:43713668
5695 22 43013846 43045574 CYB5R3 brain_cortex -1.03e+00 0.000352 0 22:42691238-22:43713668
5649 22 42528610 42529005 RP4-669P10.19 pituitary -1.99e+00 0.000507 0 22:42691238-22:43713668
5579 22 43442416 43485434 TTLL1 pituitary 2.00e+00 0.002250 1 22:42691238-22:43713668
5639 22 42522501 42526908 CYP2D6 yfs.blood.rnaarr 9.41e-02 0.000559 0 22:42691238-22:43713668
5652 22 42528610 42529005 RP4-669P10.19 brain_hypothalamus -2.28e+00 0.000493 0 22:42691238-22:43713668
5741 22 42481529 42486959 NDUFA6 ntr.blood.rnaarr 4.95e-01 0.000290 0 22:42691238-22:43713668
5621 22 42334725 42343168 CENPM brain_cerebellum -2.70e+00 0.000673 0 22:42691238-22:43713668
5736 22 43924623 44208217 EFCAB6 cmc.brain.rnaseq_splicing 3.07e-01 0.000296 0 22:42691238-22:43713668
5782 22 42535623 42535938 RP4-669P10.16 adrenal_gland 1.47e-01 0.000253 0 22:42691238-22:43713668
5761 22 43192508 43254112 ARFGAP3 adrenal_gland 2.39e-01 0.000269 0 22:42691238-22:43713668
5643 22 43593289 43739394 SCUBE1 brain_cortex -1.14e+00 0.000544 0 22:42691238-22:43713668
11801 22 42979727 43010968 POLDIP3 psychencode -4.31e-01 0.000292 0 22:42691238-22:43713668
5613 22 42318027 42319104 CTA-250D10.23 brain_frontal_cortex_ba9 -2.42e+00 0.000764 0 22:42691238-22:43713668
5701 22 42528610 42529005 RP4-669P10.19 brain_caudate_basal_ganglia -1.37e+00 0.000341 0 22:42691238-22:43713668
5637 22 42979726 43010962 POLDIP3 cmc.brain.rnaseq -7.15e-01 0.000564 0 22:42691238-22:43713668
5596 22 42397073 42397970 SLC25A5P1 pituitary 2.97e+00 0.001260 0 22:42691238-22:43713668
5792 22 42522501 42526908 CYP2D6 brain_hippocampus 4.83e-01 0.000249 0 22:42691238-22:43713668
5790 22 43192531 43253408 ARFGAP3 cmc.brain.rnaseq_splicing -3.60e-01 0.000250 0 22:42691238-22:43713668
5616 22 42397073 42397970 SLC25A5P1 adrenal_gland -2.66e+00 0.000722 0 22:42691238-22:43713668
5720 22 42334725 42343168 CENPM brain_frontal_cortex_ba9 -1.51e-01 0.000312 0 22:42691238-22:43713668
5605 22 43011250 43011913 RNU12 brain_cerebellum -1.12e+00 0.000949 0 22:42691238-22:43713668
12152 22 43088127 43117304 A4GALT psychencode 2.38e-01 0.000249 0 22:42691238-22:43713668
5764 22 42528610 42529005 RP4-669P10.19 brain_anterior_cingulate_cortex_ba24 -3.85e-01 0.000268 0 22:42691238-22:43713668
5669 22 42454461 42466846 NAGA adrenal_gland -1.58e+00 0.000413 0 22:42691238-22:43713668
5704 22 43231418 43411151 PACSIN2 yfs.blood.rnaarr 9.72e-01 0.000333 0 22:42691238-22:43713668
5684 22 42481529 42486934 NDUFA6 brain_cerebellum 2.05e+00 0.000382 0 22:42691238-22:43713668
5660 22 42536214 42540576 CYP2D7P1 brain_cortex -2.29e+00 0.000449 0 22:42691238-22:43713668
11808 22 43231418 43411151 PACSIN2 psychencode 5.70e-01 0.000284 0 22:42691238-22:43713668
5585 22 42536214 42540576 CYP2D7P1 brain_cerebellum -3.21e+00 0.001850 0 22:42691238-22:43713668
5561 22 43013845 43045405 CYB5R3 cmc.brain.rnaseq_splicing -3.81e+00 0.014900 1 22:42691238-22:43713668
5798 22 43924623 44208217 EFCAB6 cmc.brain.rnaseq_splicing 2.69e-01 0.000241 0 22:42691238-22:43713668
5586 22 42536214 42540576 CYP2D7P1 pituitary -1.78e+00 0.001650 0 22:42691238-22:43713668
5779 22 43599228 43739394 SCUBE1 cmc.brain.rnaseq 3.96e-01 0.000254 0 22:42691238-22:43713668
5783 22 42528610 42529005 RP4-669P10.19 thyroid 4.96e-02 0.000253 0 22:42691238-22:43713668
5625 22 42485634 42486032 RP1-257I20.14 brain_hippocampus 2.63e+00 0.000642 0 22:42691238-22:43713668
5656 22 42951229 42978044 RRP7B pituitary 1.23e+00 0.000479 0 22:42691238-22:43713668
5774 22 43435522 43485434 TTLL1 cmc.brain.rnaseq 3.54e-01 0.000257 0 22:42691238-22:43713668
5785 22 43013846 43045574 CYB5R3 whole_blood -3.87e-01 0.000252 0 22:42691238-22:43713668
5609 22 42536214 42540576 CYP2D7P1 brain_nucleus_accumbens_basal_ganglia 2.84e+00 0.000839 0 22:42691238-22:43713668
5618 22 42536214 42540576 CYP2D7P1 brain_frontal_cortex_ba9 1.30e+00 0.000693 0 22:42691238-22:43713668
5729 22 43434591 43448372 AL022476.2 brain_cerebellum -6.38e-01 0.000303 0 22:42691238-22:43713668
5626 22 42522501 42526908 CYP2D6 brain_hypothalamus -2.14e+00 0.000640 0 22:42691238-22:43713668
5648 22 43562627 43583137 TTLL12 cmc.brain.rnaseq 1.11e+00 0.000508 0 22:42691238-22:43713668
5601 22 42535623 42535938 RP4-669P10.16 brain_putamen_basal_ganglia 2.94e+00 0.001110 0 22:42691238-22:43713668
5563 22 42522501 42526908 CYP2D6 whole_blood -3.83e+00 0.011900 1 22:42691238-22:43713668
5565 22 42522501 42526908 CYP2D6 brain_caudate_basal_ganglia -3.72e+00 0.008000 1 22:42691238-22:43713668
12553 22 42095503 42195460 MEI1 psychencode 2.39e+00 0.000636 0 22:42691238-22:43713668
5604 22 42522501 42526908 CYP2D6 brain_amygdala -1.71e+00 0.001020 0 22:42691238-22:43713668
5619 22 42535623 42535938 RP4-669P10.16 thyroid 2.19e+00 0.000690 0 22:42691238-22:43713668
5742 22 42896596 42905116 SERHL thyroid 3.36e-01 0.000290 0 22:42691238-22:43713668
5688 22 42481529 42486934 NDUFA6 thyroid -1.79e+00 0.000369 0 22:42691238-22:43713668
5620 22 42536214 42540576 CYP2D7P1 adrenal_gland -2.66e-01 0.000679 0 22:42691238-22:43713668
5760 22 42896596 42905116 SERHL brain_frontal_cortex_ba9 -5.67e-01 0.000274 0 22:42691238-22:43713668
5710 22 42535623 42535938 RP4-669P10.16 brain_hypothalamus -1.36e+00 0.000325 0 22:42691238-22:43713668
5654 22 42536214 42540576 CYP2D7P1 brain_hypothalamus -2.37e+00 0.000486 0 22:42691238-22:43713668
5564 22 42545877 42551007 CYP2D8P1 brain_hippocampus -3.78e+00 0.011100 1 22:42691238-22:43713668
5722 22 43434591 43448372 AL022476.2 brain_hypothalamus 7.58e-01 0.000311 0 22:42691238-22:43713668
5592 22 42528610 42529005 RP4-669P10.19 adrenal_gland -3.12e+00 0.001540 0 22:42691238-22:43713668
5671 22 42665759 42671202 Z83851.3 pituitary 1.08e+00 0.000405 0 22:42691238-22:43713668
5677 22 42481529 42486934 NDUFA6 brain_cerebellar_hemisphere 2.72e-01 0.000398 0 22:42691238-22:43713668
5642 22 42522501 42526908 CYP2D6 brain_putamen_basal_ganglia -9.84e-01 0.000546 0 22:42691238-22:43713668
5617 22 42485634 42486032 RP1-257I20.14 whole_blood 2.76e+00 0.000711 0 22:42691238-22:43713668
5691 22 43547520 43559248 TSPO thyroid 6.62e-01 0.000364 0 22:42691238-22:43713668
5696 22 43013846 43045574 CYB5R3 pituitary 1.40e+00 0.000351 0 22:42691238-22:43713668
5721 22 42522501 42526908 CYP2D6 brain_substantia_nigra 1.55e+00 0.000312 0 22:42691238-22:43713668
13079 22 43249409 43249805 AL049758.2 psychencode -1.10e+00 0.000356 0 22:42691238-22:43713668
5766 22 42905974 42915808 RRP7A whole_blood -2.88e-01 0.000265 0 22:42691238-22:43713668
12849 22 42905974 42915808 RRP7A psychencode 4.73e-01 0.000249 0 22:42691238-22:43713668
5633 22 42545877 42551007 CYP2D8P1 brain_cerebellum -2.45e+00 0.000593 0 22:42691238-22:43713668
5738 22 42951229 42978044 RRP7B brain_nucleus_accumbens_basal_ganglia 2.77e-01 0.000294 0 22:42691238-22:43713668
5706 22 42522501 42526908 CYP2D6 thyroid -1.63e+00 0.000329 0 22:42691238-22:43713668
5716 22 43013846 43045574 CYB5R3 brain_putamen_basal_ganglia -1.54e+00 0.000317 0 22:42691238-22:43713668
5694 22 42905974 42915808 RRP7A brain_hippocampus -6.15e-01 0.000358 0 22:42691238-22:43713668
5753 22 42348169 42354937 LINC00634 brain_frontal_cortex_ba9 -3.15e-01 0.000279 0 22:42691238-22:43713668
5680 22 42545877 42551007 CYP2D8P1 adrenal_gland -1.87e+00 0.000395 0 22:42691238-22:43713668
5678 22 42481529 42486888 NDUFA6 cmc.brain.rnaseq 2.10e+00 0.000397 0 22:42691238-22:43713668
5747 22 43442416 43485434 TTLL1 brain_frontal_cortex_ba9 5.25e-01 0.000282 0 22:42691238-22:43713668
5672 22 42951229 42978044 RRP7B brain_frontal_cortex_ba9 5.20e-01 0.000402 0 22:42691238-22:43713668
5576 22 43506754 43525718 BIK thyroid -2.41e+00 0.002460 1 22:42691238-22:43713668
5728 22 42951229 42978044 RRP7B brain_cortex 3.45e-01 0.000304 0 22:42691238-22:43713668
13111 22 42760406 42765242 Z83851.1 psychencode -9.38e-01 0.000368 0 22:42691238-22:43713668
5776 22 43265771 43411184 PACSIN2 cmc.brain.rnaseq_splicing 3.18e-01 0.000256 0 22:42691238-22:43713668
13116 22 43434591 43448372 AL022476.2 psychencode 4.65e-02 0.000246 0 22:42691238-22:43713668
5647 22 42485634 42486032 RP1-257I20.14 adrenal_gland 6.37e-01 0.000515 0 22:42691238-22:43713668
12728 22 42951229 42978044 RRP7B psychencode 3.18e-01 0.000256 0 22:42691238-22:43713668
5608 22 42951229 42978044 RRP7B brain_hippocampus 1.09e+00 0.000877 0 22:42691238-22:43713668
5781 22 42905974 42915808 RRP7A adrenal_gland 7.66e-03 0.000253 0 22:42691238-22:43713668
5734 22 43254393 43411151 PACSIN2 thyroid 4.67e-01 0.000298 0 22:42691238-22:43713668
5727 22 43924623 44208217 EFCAB6 cmc.brain.rnaseq 5.02e-01 0.000308 0 22:42691238-22:43713668
5569 22 42481529 42486934 NDUFA6 pituitary 3.46e+00 0.003620 1 22:42691238-22:43713668
5718 22 43013846 43045574 CYB5R3 thyroid 1.04e+00 0.000315 0 22:42691238-22:43713668
5686 22 42454358 42466846 NAGA yfs.blood.rnaarr -1.78e+00 0.000372 0 22:42691238-22:43713668
11809 22 43435522 43485434 TTLL1 psychencode 1.39e+00 0.000632 0 22:42691238-22:43713668
5725 22 43528211 43539403 MCAT cmc.brain.rnaseq_splicing -1.12e+00 0.000308 0 22:42691238-22:43713668
5581 22 42348169 42354937 LINC00634 brain_cerebellum 3.25e+00 0.002150 1 22:42691238-22:43713668
5600 22 42951229 42978044 RRP7B whole_blood 1.35e+00 0.001160 0 22:42691238-22:43713668
5739 22 43528211 43539403 MCAT cmc.brain.rnaseq -1.28e+00 0.000292 0 22:42691238-22:43713668
5724 22 42454461 42466846 NAGA brain_hippocampus -8.15e-01 0.000310 0 22:42691238-22:43713668
5705 22 43807202 43903728 MPPED1 brain_putamen_basal_ganglia -6.94e-01 0.000332 0 22:42691238-22:43713668
5632 22 42481529 42486934 NDUFA6 adrenal_gland 5.44e-01 0.000598 0 22:42691238-22:43713668
5627 22 43924624 44208185 EFCAB6 brain_putamen_basal_ganglia 1.32e+00 0.000640 0 22:42691238-22:43713668
5740 22 43013846 43045574 CYB5R3 yfs.blood.rnaarr -8.16e-01 0.000291 0 22:42691238-22:43713668
12615 22 42896585 42908566 SERHL psychencode 1.34e-01 0.000257 0 22:42691238-22:43713668
5638 22 42951229 42978044 RRP7B brain_putamen_basal_ganglia 1.10e+00 0.000560 0 22:42691238-22:43713668
11806 22 43013846 43045574 CYB5R3 psychencode 1.52e+00 0.000402 0 22:42691238-22:43713668
5795 22 43528212 43539400 MCAT whole_blood -1.44e-01 0.000244 0 22:42691238-22:43713668
5731 22 42535623 42535938 RP4-669P10.16 brain_frontal_cortex_ba9 -1.52e-01 0.000301 0 22:42691238-22:43713668
11811 22 43528212 43539400 MCAT psychencode 2.18e-02 0.000294 0 22:42691238-22:43713668
5777 22 43807202 43903728 MPPED1 brain_caudate_basal_ganglia -3.29e-01 0.000255 0 22:42691238-22:43713668
5751 22 42348169 42354937 LINC00634 brain_cortex 7.43e-01 0.000279 0 22:42691238-22:43713668
5577 22 43547520 43559248 TSPO whole_blood 2.26e+00 0.002460 1 22:42691238-22:43713668
13466 22 42485634 42486032 RP1-257I20.14 psychencode 2.38e+00 0.000623 0 22:42691238-22:43713668
5657 22 43088126 43117286 A4GALT cmc.brain.rnaseq 1.13e+00 0.000474 0 22:42691238-22:43713668
5702 22 42672361 42673058 Z83851.4 thyroid -2.82e-01 0.000338 0 22:42691238-22:43713668
5757 22 42545877 42551007 CYP2D8P1 brain_caudate_basal_ganglia -7.56e-01 0.000276 0 22:42691238-22:43713668
5589 22 42979727 43010968 POLDIP3 whole_blood -1.32e+00 0.001570 0 22:42691238-22:43713668
5735 22 43254393 43411151 PACSIN2 whole_blood 6.97e-01 0.000296 0 22:42691238-22:43713668
5765 22 42196683 42222303 CCDC134 yfs.blood.rnaarr -4.18e-01 0.000267 0 22:42691238-22:43713668
5658 22 43593289 43739394 SCUBE1 brain_putamen_basal_ganglia -8.65e-01 0.000469 0 22:42691238-22:43713668
5559 22 42485634 42486032 RP1-257I20.14 pituitary 4.68e+00 0.380000 1 22:42691238-22:43713668
5575 22 42979727 43010968 POLDIP3 pituitary -1.69e+00 0.002550 1 22:42691238-22:43713668
5661 22 42951229 42978044 RRP7B brain_cerebellum 7.77e-01 0.000448 0 22:42691238-22:43713668
5583 22 42949623 42968535 SERHL2 brain_cortex 1.57e+00 0.001920 1 22:42691238-22:43713668
5587 22 42949623 42968535 SERHL2 thyroid 1.47e+00 0.001630 0 22:42691238-22:43713668
5732 22 43192508 43254112 ARFGAP3 brain_frontal_cortex_ba9 -1.16e+00 0.000300 0 22:42691238-22:43713668
5622 22 42528610 42529005 RP4-669P10.19 brain_amygdala -1.63e+00 0.000660 0 22:42691238-22:43713668
5562 22 42485634 42486032 RP1-257I20.14 brain_cerebellum 3.88e+00 0.014600 1 22:42691238-22:43713668
5748 22 43013846 43045574 CYB5R3 brain_nucleus_accumbens_basal_ganglia -1.31e+00 0.000281 0 22:42691238-22:43713668
5598 22 43562628 43583139 TTLL12 brain_cortex -1.68e+00 0.001230 0 22:42691238-22:43713668
5662 22 43593289 43739394 SCUBE1 thyroid -8.63e-01 0.000435 0 22:42691238-22:43713668
5759 22 42545877 42551007 CYP2D8P1 pituitary 3.84e-02 0.000274 0 22:42691238-22:43713668
5591 22 42949623 42968535 SERHL2 pituitary 1.46e+00 0.001550 0 22:42691238-22:43713668
5629 22 43562628 43583139 TTLL12 whole_blood 1.07e+00 0.000611 0 22:42691238-22:43713668
5667 22 42536214 42540576 CYP2D7P1 brain_hippocampus 1.85e-01 0.000424 0 22:42691238-22:43713668
5635 22 43562628 43583139 TTLL12 brain_putamen_basal_ganglia 1.24e+00 0.000591 0 22:42691238-22:43713668
5584 22 42674194 42674852 CTA-989H11.1 whole_blood -3.22e+00 0.001870 1 22:42691238-22:43713668
5754 22 43088127 43117304 A4GALT yfs.blood.rnaarr 9.20e-01 0.000279 0 22:42691238-22:43713668
5711 22 43924624 44208185 EFCAB6 thyroid 1.17e+00 0.000323 0 22:42691238-22:43713668
5786 22 43442416 43485434 TTLL1 brain_caudate_basal_ganglia 2.23e-01 0.000252 0 22:42691238-22:43713668
5668 22 42481529 42486934 NDUFA6 brain_frontal_cortex_ba9 7.88e-02 0.000416 0 22:42691238-22:43713668
5665 22 42481529 42486934 NDUFA6 brain_hippocampus -9.36e-01 0.000428 0 22:42691238-22:43713668
5612 22 42949623 42968535 SERHL2 brain_hypothalamus 1.02e+00 0.000764 0 22:42691238-22:43713668
5602 22 42372276 42394225 SEPT3 whole_blood 2.90e+00 0.001100 0 22:42691238-22:43713668
5775 22 43088127 43117304 A4GALT whole_blood -2.19e-01 0.000257 0 22:42691238-22:43713668
5588 22 42896596 42905116 SERHL brain_hippocampus 2.16e+00 0.001610 0 22:42691238-22:43713668
5676 22 43562628 43583139 TTLL12 brain_anterior_cingulate_cortex_ba24 -5.45e-01 0.000399 0 22:42691238-22:43713668
5594 22 43924624 44208185 EFCAB6 pituitary 2.07e+00 0.001310 0 22:42691238-22:43713668
5712 22 42896596 42905116 SERHL brain_hypothalamus 5.56e-01 0.000321 0 22:42691238-22:43713668
5796 22 43807202 43903728 MPPED1 brain_cerebellum -8.76e-02 0.000243 0 22:42691238-22:43713668
12809 22 43924624 44208217 EFCAB6 psychencode 1.04e+00 0.000347 0 22:42691238-22:43713668
5590 22 43924624 44208185 EFCAB6 brain_caudate_basal_ganglia -2.21e+00 0.001550 0 22:42691238-22:43713668
5631 22 42556019 42739622 TCF20 whole_blood -2.61e+00 0.000603 0 22:42691238-22:43713668
5603 22 43547520 43559248 TSPO brain_cerebellar_hemisphere 1.95e+00 0.001100 0 22:42691238-22:43713668
5624 22 42949623 42968535 SERHL2 adrenal_gland -3.93e-01 0.000643 0 22:42691238-22:43713668
5595 22 43924624 44208185 EFCAB6 brain_nucleus_accumbens_basal_ganglia -2.10e+00 0.001270 0 22:42691238-22:43713668
5697 22 43562628 43583139 TTLL12 thyroid 8.45e-01 0.000349 0 22:42691238-22:43713668
5709 22 42485634 42486032 RP1-257I20.14 thyroid 1.31e+00 0.000326 0 22:42691238-22:43713668
12753 22 42949623 42970388 SERHL2 psychencode 5.19e-01 0.000303 0 22:42691238-22:43713668
5571 22 42949890 42970003 SERHL2 ntr.blood.rnaarr 1.75e+00 0.002910 1 22:42691238-22:43713668
5566 22 43088127 43117304 A4GALT brain_amygdala 1.25e+00 0.005550 1 22:42691238-22:43713668
5681 22 42896596 42905116 SERHL brain_cortex 7.66e-01 0.000393 0 22:42691238-22:43713668
5743 22 42949924 42970388 SERHL2 cmc.brain.rnaseq 6.10e-01 0.000289 0 22:42691238-22:43713668
5614 22 42485634 42486032 RP1-257I20.14 brain_cerebellar_hemisphere 2.60e+00 0.000758 0 22:42691238-22:43713668
5723 22 43562628 43583139 TTLL12 brain_cerebellum 1.42e+00 0.000310 0 22:42691238-22:43713668
5698 22 43088127 43117304 A4GALT brain_caudate_basal_ganglia -1.95e-01 0.000348 0 22:42691238-22:43713668
5726 22 43562628 43583139 TTLL12 brain_nucleus_accumbens_basal_ganglia -4.86e-01 0.000308 0 22:42691238-22:43713668
5689 22 42951228 42978017 RRP7B cmc.brain.rnaseq -1.37e+00 0.000367 0 22:42691238-22:43713668
5755 22 43562628 43583139 TTLL12 yfs.blood.rnaarr 3.23e-01 0.000278 0 22:42691238-22:43713668
11814 22 43562628 43583139 TTLL12 psychencode -1.78e-01 0.000247 0 22:42691238-22:43713668
5789 22 43088127 43117304 A4GALT adrenal_gland -5.33e-01 0.000251 0 22:42691238-22:43713668
5593 22 43593289 43739394 SCUBE1 adrenal_gland -1.82e+00 0.001480 0 22:42691238-22:43713668
12424 22 43593289 43739394 SCUBE1 psychencode 2.46e-01 0.000242 0 22:42691238-22:43713668
5788 22 43547520 43559248 TSPO yfs.blood.rnaarr 2.46e-01 0.000251 0 22:42691238-22:43713668
5640 22 43593289 43739394 SCUBE1 brain_caudate_basal_ganglia -1.11e+00 0.000554 0 22:42691238-22:43713668
5793 22 43442416 43485434 TTLL1 brain_cerebellum -4.73e-01 0.000247 0 22:42691238-22:43713668
12805 22 43807202 43903728 MPPED1 psychencode -2.32e-01 0.000241 0 22:42691238-22:43713668
5664 22 42951229 42978044 RRP7B brain_cerebellar_hemisphere 6.71e-01 0.000430 0 22:42691238-22:43713668
5630 22 42227219 42230669 RP5-821D11.7 whole_blood 2.50e+00 0.000606 0 22:42691238-22:43713668
11813 22 43547520 43559248 TSPO psychencode 8.83e-01 0.000433 0 22:42691238-22:43713668
5659 22 43442416 43485434 TTLL1 brain_substantia_nigra -1.20e+00 0.000455 0 22:42691238-22:43713668
5700 22 43442416 43485434 TTLL1 brain_cortex 8.73e-01 0.000345 0 22:42691238-22:43713668
5713 22 42334725 42343168 CENPM brain_hippocampus 9.97e-01 0.000320 0 22:42691238-22:43713668
6007 22 51061182 51066607 ARSA thyroid 6.66e-01 0.000254 0 22:49825112-22:51240820
6012 22 51061182 51066607 ARSA pituitary 4.22e-01 0.000248 0 22:49825112-22:51240820
5915 22 51021455 51022306 CHKB-AS1 adrenal_gland 9.83e-01 0.000424 0 22:49825112-22:51240820
5952 22 51061182 51066607 ARSA brain_cortex -1.09e+00 0.000328 0 22:49825112-22:51240820
5980 22 51061182 51066607 ARSA whole_blood 7.33e-01 0.000283 0 22:49825112-22:51240820
6029 22 51039114 51052409 MAPK8IP2 brain_cerebellum -2.05e-01 0.000241 0 22:49825112-22:51240820
5920 22 51205929 51222091 RABL2B thyroid 1.02e+00 0.000406 0 22:49825112-22:51240820
5940 22 51021455 51022306 CHKB-AS1 thyroid 9.73e-01 0.000350 0 22:49825112-22:51240820
6015 22 50006305 50009364 RP1-29C18.8 thyroid -3.36e-01 0.000246 0 22:49825112-22:51240820
5999 22 50293877 50312106 ALG12 adrenal_gland 1.80e-01 0.000262 0 22:49825112-22:51240820
11812 22 51061182 51066607 ARSA psychencode -4.07e-01 0.000265 0 22:49825112-22:51240820
5944 22 49808176 50051190 C22orf34 brain_putamen_basal_ganglia -8.08e-01 0.000346 0 22:49825112-22:51240820
5840 22 50293877 50312106 ALG12 brain_anterior_cingulate_cortex_ba24 -1.81e+00 0.001130 0 22:49825112-22:51240820
5842 22 50166936 50221196 BRD1 cmc.brain.rnaseq_splicing -1.93e+00 0.001100 0 22:49825112-22:51240820
6001 22 51061182 51066607 ARSA adrenal_gland 5.98e-01 0.000261 0 22:49825112-22:51240820
12971 22 51021455 51022306 CHKB-AS1 psychencode 8.46e-01 0.000482 0 22:49825112-22:51240820
5814 22 50226264 50231434 RP3-522J7.6 brain_cortex -3.00e+00 0.004260 1 22:49825112-22:51240820
5905 22 51007290 51017096 CPT1B brain_hypothalamus -1.06e+00 0.000446 0 22:49825112-22:51240820
5863 22 50781733 50883428 PPP6R2 brain_substantia_nigra 1.78e+00 0.000770 0 22:49825112-22:51240820
5834 22 51017378 51039884 CHKB brain_cortex -1.58e+00 0.001350 0 22:49825112-22:51240820
5843 22 51017378 51039884 CHKB brain_frontal_cortex_ba9 -1.97e+00 0.001070 0 22:49825112-22:51240820
5848 22 51017378 51039884 CHKB thyroid -1.62e+00 0.000996 0 22:49825112-22:51240820
5949 22 50781745 50883518 PPP6R2 cmc.brain.rnaseq_splicing 1.00e+00 0.000330 0 22:49825112-22:51240820
5809 22 50883515 50913454 SBF1 brain_cerebellum -3.15e+00 0.007180 1 22:49825112-22:51240820
5852 22 51017378 51039884 CHKB brain_cerebellum -1.30e+00 0.000903 0 22:49825112-22:51240820
5854 22 51017378 51039884 CHKB adrenal_gland -1.50e+00 0.000894 0 22:49825112-22:51240820
5855 22 51017378 51039884 CHKB brain_hippocampus -8.71e-01 0.000882 0 22:49825112-22:51240820
5870 22 51017378 51039884 CHKB pituitary -1.25e+00 0.000705 0 22:49825112-22:51240820
5880 22 51017378 51039884 CHKB brain_putamen_basal_ganglia -8.18e-01 0.000627 0 22:49825112-22:51240820
6031 22 50006305 50009364 RP1-29C18.8 pituitary -1.07e-01 0.000239 0 22:49825112-22:51240820
5998 22 50989541 51001334 SYCE3 thyroid 7.05e-01 0.000263 0 22:49825112-22:51240820
5889 22 51017378 51039884 CHKB whole_blood -1.49e+00 0.000550 0 22:49825112-22:51240820
5966 22 50781756 50883519 PPP6R2 ntr.blood.rnaarr 5.16e-01 0.000300 0 22:49825112-22:51240820
5931 22 51007290 51017096 CPT1B brain_cortex -9.26e-01 0.000361 0 22:49825112-22:51240820
5892 22 51017378 51039884 CHKB brain_caudate_basal_ganglia -1.14e+00 0.000523 0 22:49825112-22:51240820
5899 22 50293877 50312106 ALG12 brain_cortex 1.45e+00 0.000487 0 22:49825112-22:51240820
5977 22 50747459 50765489 DENND6B brain_cortex -4.31e-01 0.000289 0 22:49825112-22:51240820
5919 22 50781733 50883428 PPP6R2 brain_cerebellar_hemisphere -1.49e-01 0.000412 0 22:49825112-22:51240820
5885 22 51017386 51021428 CHKB cmc.brain.rnaseq -1.13e+00 0.000591 0 22:49825112-22:51240820
5961 22 50747459 50765489 DENND6B brain_cerebellar_hemisphere 1.61e-01 0.000306 0 22:49825112-22:51240820
12974 22 50747459 50765489 DENND6B psychencode -5.59e-01 0.000298 0 22:49825112-22:51240820
5850 22 50781733 50883428 PPP6R2 thyroid 1.72e+00 0.000962 0 22:49825112-22:51240820
11807 22 50941376 50946135 LMF2 psychencode -1.32e+00 0.000724 0 22:49825112-22:51240820
5833 22 51017378 51039884 CHKB brain_cerebellar_hemisphere -1.97e+00 0.001490 0 22:49825112-22:51240820
5969 22 50781733 50883428 PPP6R2 brain_cortex 5.71e-01 0.000297 0 22:49825112-22:51240820
5926 22 50311815 50321188 CRELD2 yfs.blood.rnaarr 1.10e+00 0.000378 0 22:49825112-22:51240820
5813 22 50609160 50618723 PANX2 thyroid -3.04e+00 0.004590 1 22:49825112-22:51240820
5895 22 51017378 51039884 CHKB brain_amygdala -1.11e+00 0.000518 0 22:49825112-22:51240820
5918 22 50311661 50321185 CRELD2 ntr.blood.rnaarr 1.18e+00 0.000413 0 22:49825112-22:51240820
5936 22 50311815 50321188 CRELD2 thyroid -1.04e+00 0.000354 0 22:49825112-22:51240820
11708 22 50639408 50656045 SELO psychencode 2.31e-01 0.000887 0 22:49825112-22:51240820
5955 22 51007290 51017096 CPT1B brain_nucleus_accumbens_basal_ganglia -7.99e-01 0.000317 0 22:49825112-22:51240820
5866 22 50638505 50638976 RP3-402G11.26 adrenal_gland 1.68e+00 0.000737 0 22:49825112-22:51240820
5803 22 50656118 50683381 TUBGCP6 brain_cerebellum 3.64e+00 0.029200 1 22:49825112-22:51240820
5805 22 50656118 50683381 TUBGCP6 whole_blood 3.39e+00 0.013400 1 22:49825112-22:51240820
5806 22 50656118 50683381 TUBGCP6 brain_nucleus_accumbens_basal_ganglia 3.34e+00 0.010900 1 22:49825112-22:51240820
11803 22 50781733 50883514 PPP6R2 psychencode 2.10e+00 0.001210 0 22:49825112-22:51240820
11810 22 51017378 51039884 CHKB psychencode -1.44e+00 0.000688 0 22:49825112-22:51240820
5954 22 50883515 50913454 SBF1 thyroid 2.89e-01 0.000318 0 22:49825112-22:51240820
6026 22 50006305 50009364 RP1-29C18.8 brain_cortex -2.83e-01 0.000243 0 22:49825112-22:51240820
5860 22 50781733 50883428 PPP6R2 brain_caudate_basal_ganglia 2.04e+00 0.000826 0 22:49825112-22:51240820
5945 22 50311815 50321188 CRELD2 adrenal_gland 1.00e+00 0.000337 0 22:49825112-22:51240820
5928 22 50713408 50746056 PLXNB2 yfs.blood.rnaarr 1.22e+00 0.000368 0 22:49825112-22:51240820
11707 22 50609160 50618723 PANX2 psychencode 1.86e+00 0.004080 1 22:49825112-22:51240820
5907 22 51017378 51039884 CHKB brain_hypothalamus -9.84e-01 0.000440 0 22:49825112-22:51240820
5990 22 51017378 51039884 CHKB yfs.blood.rnaarr -6.70e-01 0.000272 0 22:49825112-22:51240820
5933 22 50293877 50312106 ALG12 brain_frontal_cortex_ba9 1.01e+00 0.000357 0 22:49825112-22:51240820
5802 22 50646890 50647971 RP3-402G11.28 thyroid -3.85e+00 0.062500 1 22:49825112-22:51240820
5987 22 51007290 51017096 CPT1B pituitary -6.30e-01 0.000275 0 22:49825112-22:51240820
5838 22 50781733 50883428 PPP6R2 brain_amygdala 1.84e+00 0.001160 0 22:49825112-22:51240820
6008 22 50989541 51001334 SYCE3 brain_caudate_basal_ganglia -4.28e-02 0.000254 0 22:49825112-22:51240820
5934 22 50747459 50765489 DENND6B thyroid -9.90e-01 0.000355 0 22:49825112-22:51240820
5857 22 50781745 50883518 PPP6R2 cmc.brain.rnaseq 1.97e+00 0.000849 0 22:49825112-22:51240820
6002 22 50006305 50009364 RP1-29C18.8 brain_hypothalamus -4.95e-01 0.000260 0 22:49825112-22:51240820
5937 22 50781745 50883518 PPP6R2 cmc.brain.rnaseq_splicing -2.63e-01 0.000353 0 22:49825112-22:51240820
11804 22 50883429 50913454 SBF1 psychencode 6.43e-01 0.000318 0 22:49825112-22:51240820
5996 22 51007290 51017096 CPT1B brain_cerebellum -5.01e-01 0.000266 0 22:49825112-22:51240820
5800 22 50624344 50638027 TRABD brain_cerebellum 4.16e+00 0.205000 1 22:49825112-22:51240820
5821 22 50247490 50282090 ZBED4 yfs.blood.rnaarr 2.20e+00 0.002140 1 22:49825112-22:51240820
5971 22 50946645 50961901 NCAPH2 yfs.blood.rnaarr -7.40e-01 0.000295 0 22:49825112-22:51240820
5845 22 50687628 50700254 MAPK12 thyroid 1.05e+00 0.001010 0 22:49825112-22:51240820
5921 22 50296853 50312106 ALG12 cmc.brain.rnaseq 1.19e+00 0.000406 0 22:49825112-22:51240820
5948 22 50747459 50765489 DENND6B brain_nucleus_accumbens_basal_ganglia 5.89e-02 0.000331 0 22:49825112-22:51240820
5973 22 50941376 50946135 LMF2 yfs.blood.rnaarr 5.34e-01 0.000292 0 22:49825112-22:51240820
5891 22 50624344 50638027 TRABD whole_blood -1.39e+00 0.000526 0 22:49825112-22:51240820
5820 22 50638505 50638976 RP3-402G11.26 brain_anterior_cingulate_cortex_ba24 2.74e+00 0.002350 1 22:49825112-22:51240820
6011 22 51007290 51017096 CPT1B whole_blood -3.49e-01 0.000248 0 22:49825112-22:51240820
5829 22 51017378 51039884 CHKB brain_anterior_cingulate_cortex_ba24 -1.48e+00 0.001660 1 22:49825112-22:51240820
5828 22 50885184 50913454 SBF1 yfs.blood.rnaarr -1.79e+00 0.001700 1 22:49825112-22:51240820
5942 22 50747459 50765489 DENND6B whole_blood 8.74e-01 0.000349 0 22:49825112-22:51240820
5910 22 50497819 50524358 MLC1 cmc.brain.rnaseq_splicing 1.56e+00 0.000431 0 22:49825112-22:51240820
6006 22 50989541 51001334 SYCE3 brain_frontal_cortex_ba9 3.23e-01 0.000254 0 22:49825112-22:51240820
5804 22 50646890 50647971 RP3-402G11.28 brain_hypothalamus -3.41e+00 0.014400 1 22:49825112-22:51240820
5911 22 50247490 50283726 ZBED4 brain_cerebellar_hemisphere -1.20e+00 0.000429 0 22:49825112-22:51240820
5812 22 50702141 50708779 MAPK11 cmc.brain.rnaseq -3.03e+00 0.005040 1 22:49825112-22:51240820
5943 22 50941376 50946135 LMF2 brain_anterior_cingulate_cortex_ba24 -5.08e-01 0.000347 0 22:49825112-22:51240820
5927 22 51061182 51066607 ARSA brain_amygdala 1.22e+00 0.000373 0 22:49825112-22:51240820
5970 22 50528308 50600119 MOV10L1 pituitary -6.32e-01 0.000295 0 22:49825112-22:51240820
5967 22 50989541 51001334 SYCE3 pituitary -1.04e-01 0.000300 0 22:49825112-22:51240820
5871 22 50638505 50638976 RP3-402G11.26 brain_frontal_cortex_ba9 1.94e+00 0.000699 0 22:49825112-22:51240820
5924 22 50961996 50964035 SCO2 ntr.blood.rnaarr 8.46e-01 0.000388 0 22:49825112-22:51240820
6032 22 49808176 50051190 C22orf34 brain_cerebellar_hemisphere 1.14e-01 0.000239 0 22:49825112-22:51240820
5839 22 50683612 50688288 HDAC10 pituitary 6.54e-01 0.001160 0 22:49825112-22:51240820
5846 22 51021455 51022306 CHKB-AS1 brain_frontal_cortex_ba9 2.20e+00 0.001010 0 22:49825112-22:51240820
6014 22 50989541 51001334 SYCE3 brain_nucleus_accumbens_basal_ganglia 4.62e-01 0.000247 0 22:49825112-22:51240820
5916 22 49808176 50051190 C22orf34 brain_cerebellum 1.30e+00 0.000422 0 22:49825112-22:51240820
5978 22 51007290 51017096 CPT1B brain_caudate_basal_ganglia -7.07e-01 0.000287 0 22:49825112-22:51240820
6003 22 50925213 50929077 MIOX thyroid -1.84e-02 0.000258 0 22:49825112-22:51240820
5989 22 50013420 50051190 C22orf34 ntr.blood.rnaarr -6.12e-01 0.000273 0 22:49825112-22:51240820
5887 22 50638505 50638976 RP3-402G11.26 brain_nucleus_accumbens_basal_ganglia 1.78e+00 0.000573 0 22:49825112-22:51240820
5956 22 51007290 51017096 CPT1B thyroid -8.56e-01 0.000315 0 22:49825112-22:51240820
5896 22 50638505 50638976 RP3-402G11.26 brain_amygdala 1.57e+00 0.000506 0 22:49825112-22:51240820
5909 22 50968139 50971009 ODF3B yfs.blood.rnaarr 9.13e-01 0.000432 0 22:49825112-22:51240820
5929 22 50968838 50971009 ODF3B thyroid -6.96e-01 0.000366 0 22:49825112-22:51240820
5959 22 50311815 50321188 CRELD2 brain_cerebellum -5.80e-01 0.000312 0 22:49825112-22:51240820
6018 22 51007290 51017096 CPT1B brain_amygdala -2.90e-01 0.000245 0 22:49825112-22:51240820
5995 22 50311815 50321188 CRELD2 whole_blood 5.45e-01 0.000266 0 22:49825112-22:51240820
5941 22 50968838 50971009 ODF3B whole_blood 7.04e-01 0.000350 0 22:49825112-22:51240820
6019 22 51007290 51017096 CPT1B adrenal_gland 8.68e-03 0.000245 0 22:49825112-22:51240820
5815 22 50646890 50647971 RP3-402G11.28 brain_cerebellum -2.87e+00 0.003200 1 22:49825112-22:51240820
5917 22 50980734 50981078 CTA-384D8.35 whole_blood 8.58e-01 0.000416 0 22:49825112-22:51240820
5957 22 50989541 51001334 SYCE3 adrenal_gland 7.15e-01 0.000314 0 22:49825112-22:51240820
5962 22 51063446 51066607 ARSA yfs.blood.rnaarr 7.40e-01 0.000304 0 22:49825112-22:51240820
12761 22 50311815 50321188 CRELD2 psychencode -5.89e-01 0.000294 0 22:49825112-22:51240820
5997 22 51007290 51017096 CPT1B brain_hippocampus -5.49e-01 0.000264 0 22:49825112-22:51240820
13532 22 50637519 50638976 RP3-402G11.26 psychencode 3.69e+00 0.034400 1 22:49825112-22:51240820
5878 22 51021455 51022306 CHKB-AS1 brain_hypothalamus 1.89e+00 0.000647 0 22:49825112-22:51240820
5886 22 50941376 50946135 LMF2 pituitary 1.72e+00 0.000582 0 22:49825112-22:51240820
6016 22 51112843 51171726 SHANK3 thyroid 2.87e-01 0.000246 0 22:49825112-22:51240820
6020 22 49965912 49969074 RP1-29C18.9 whole_blood 1.08e-01 0.000245 0 22:49825112-22:51240820
12782 22 50702142 50709196 MAPK11 psychencode -1.41e+00 0.000387 0 22:49825112-22:51240820
5844 22 50226264 50231434 RP3-522J7.6 thyroid -1.88e+00 0.001030 0 22:49825112-22:51240820
13524 22 51035581 51036028 CTA-384D8.33 psychencode -1.29e+00 0.000385 0 22:49825112-22:51240820
5874 22 50247490 50283726 ZBED4 brain_cerebellum -2.08e+00 0.000683 0 22:49825112-22:51240820
5951 22 51205929 51222091 RABL2B brain_cerebellum 9.17e-01 0.000329 0 22:49825112-22:51240820
5819 22 50646890 50647971 RP3-402G11.28 brain_cerebellar_hemisphere -2.82e+00 0.002590 1 22:49825112-22:51240820
6009 22 51174253 51176567 AC000036.4 pituitary -3.82e-01 0.000253 0 22:49825112-22:51240820
5902 22 51195376 51239737 AC002055.4 brain_cortex -1.13e+00 0.000464 0 22:49825112-22:51240820
5972 22 51205929 51222091 RABL2B yfs.blood.rnaarr 4.17e-01 0.000294 0 22:49825112-22:51240820
5799 22 50630153 50630831 RP3-402G11.25 thyroid -4.18e+00 0.214000 1 22:49825112-22:51240820
5898 22 50638505 50638976 RP3-402G11.26 brain_putamen_basal_ganglia 1.61e+00 0.000493 0 22:49825112-22:51240820
6022 22 51007290 51017096 CPT1B brain_anterior_cingulate_cortex_ba24 -2.60e-01 0.000244 0 22:49825112-22:51240820
5894 22 50312282 50321186 CRELD2 cmc.brain.rnaseq 1.76e+00 0.000519 0 22:49825112-22:51240820
5841 22 50683612 50688288 HDAC10 whole_blood 3.21e-01 0.001100 0 22:49825112-22:51240820
5994 22 51195376 51239737 AC002055.4 thyroid 5.43e-01 0.000267 0 22:49825112-22:51240820
13025 22 50989541 51001334 SYCE3 psychencode -4.79e-01 0.000266 0 22:49825112-22:51240820
5900 22 50638505 50638976 RP3-402G11.26 whole_blood 1.76e+00 0.000482 0 22:49825112-22:51240820
5822 22 50656118 50683381 TUBGCP6 brain_caudate_basal_ganglia 2.75e+00 0.002100 1 22:49825112-22:51240820
11706 22 50528308 50600119 MOV10L1 psychencode 1.22e+00 0.000544 0 22:49825112-22:51240820
6021 22 51061181 51066601 ARSA cmc.brain.rnaseq -8.16e-02 0.000244 0 22:49825112-22:51240820
5968 22 50497820 50524331 MLC1 whole_blood 1.11e+00 0.000299 0 22:49825112-22:51240820
12864 22 50713408 50746056 PLXNB2 psychencode -6.13e-01 0.000258 0 22:49825112-22:51240820
5901 22 50961997 50964035 SCO2 adrenal_gland 1.08e+00 0.000471 0 22:49825112-22:51240820
5837 22 50646890 50647971 RP3-402G11.28 brain_caudate_basal_ganglia -2.45e+00 0.001260 0 22:49825112-22:51240820
5830 22 50624358 50638027 TRABD cmc.brain.rnaseq -1.13e+00 0.001600 0 22:49825112-22:51240820
5923 22 51021455 51022306 CHKB-AS1 pituitary 1.03e+00 0.000392 0 22:49825112-22:51240820
5988 22 50312282 50321186 CRELD2 cmc.brain.rnaseq_splicing 3.29e-01 0.000273 0 22:49825112-22:51240820
5984 22 50528308 50600119 MOV10L1 thyroid -4.21e-01 0.000278 0 22:49825112-22:51240820
11629 22 50964181 50968485 TYMP psychencode -5.02e-01 0.000290 0 22:49825112-22:51240820
5912 22 50638505 50638976 RP3-402G11.26 brain_hypothalamus 1.27e+00 0.000428 0 22:49825112-22:51240820
5932 22 50638505 50638976 RP3-402G11.26 thyroid -8.58e-01 0.000358 0 22:49825112-22:51240820
5938 22 50638505 50638976 RP3-402G11.26 brain_cerebellum 8.95e-01 0.000352 0 22:49825112-22:51240820
12834 22 49808176 50051190 C22orf34 psychencode 2.51e-01 0.000242 0 22:49825112-22:51240820
6000 22 51007290 51017096 CPT1B brain_putamen_basal_ganglia -5.34e-01 0.000262 0 22:49825112-22:51240820
5947 22 50638505 50638976 RP3-402G11.26 brain_cerebellar_hemisphere 3.53e-01 0.000332 0 22:49825112-22:51240820
5974 22 51007290 51017096 CPT1B brain_cerebellar_hemisphere -7.31e-01 0.000292 0 22:49825112-22:51240820
5816 22 50226264 50231434 RP3-522J7.6 brain_cerebellum -2.53e+00 0.002800 1 22:49825112-22:51240820
6027 22 50293877 50312106 ALG12 brain_caudate_basal_ganglia 2.29e-01 0.000242 0 22:49825112-22:51240820
5903 22 50639407 50656045 SELO cmc.brain.rnaseq 5.23e-01 0.000462 0 22:49825112-22:51240820
5963 22 50006305 50009364 RP1-29C18.8 brain_frontal_cortex_ba9 -7.70e-01 0.000302 0 22:49825112-22:51240820
5875 22 50354139 50357720 PIM3 ntr.blood.rnaarr 1.58e+00 0.000676 0 22:49825112-22:51240820
5856 22 50638505 50638976 RP3-402G11.26 brain_hippocampus 2.10e+00 0.000881 0 22:49825112-22:51240820
5982 22 50941376 50946135 LMF2 brain_cerebellum -9.91e-01 0.000281 0 22:49825112-22:51240820
5825 22 50528434 50600116 MOV10L1 cmc.brain.rnaseq 2.49e+00 0.001890 1 22:49825112-22:51240820
5906 22 50986462 50989451 KLHDC7B whole_blood 1.01e+00 0.000443 0 22:49825112-22:51240820
6034 22 51061181 51066601 ARSA cmc.brain.rnaseq_splicing 1.12e-01 0.000236 0 22:49825112-22:51240820
6023 22 51007290 51017096 CPT1B brain_frontal_cortex_ba9 -2.18e-01 0.000243 0 22:49825112-22:51240820
5964 22 50941376 50946135 LMF2 thyroid -6.24e-01 0.000302 0 22:49825112-22:51240820
5817 22 50609160 50618723 PANX2 adrenal_gland -2.79e+00 0.002790 1 22:49825112-22:51240820
5811 22 50639408 50656045 SELO thyroid 3.13e+00 0.005950 1 22:49825112-22:51240820
5992 22 50293877 50312106 ALG12 thyroid 4.24e-01 0.000270 0 22:49825112-22:51240820
5935 22 51021455 51022306 CHKB-AS1 brain_anterior_cingulate_cortex_ba24 1.12e+00 0.000355 0 22:49825112-22:51240820
5865 22 50639408 50656045 SELO brain_cerebellar_hemisphere 1.77e+00 0.000746 0 22:49825112-22:51240820
5867 22 50354161 50357728 PIM3 whole_blood 1.59e+00 0.000733 0 22:49825112-22:51240820
5824 22 50638505 50638976 RP3-402G11.26 brain_caudate_basal_ganglia 2.62e+00 0.001940 1 22:49825112-22:51240820
5883 22 50639408 50656045 SELO brain_cerebellum 7.28e-01 0.000602 0 22:49825112-22:51240820
6024 22 51007290 51017899 CPT1B yfs.blood.rnaarr -2.88e-01 0.000243 0 22:49825112-22:51240820
5872 22 50989541 51001334 SYCE3 brain_putamen_basal_ganglia 1.98e+00 0.000694 0 22:49825112-22:51240820
5950 22 50989541 51001334 SYCE3 brain_hypothalamus 1.16e+00 0.000330 0 22:49825112-22:51240820
5879 22 50354161 50357728 PIM3 brain_cerebellum -1.54e+00 0.000628 0 22:49825112-22:51240820
12729 22 50293877 50312106 ALG12 psychencode -9.44e-02 0.000246 0 22:49825112-22:51240820
5890 22 50639408 50656045 SELO whole_blood 1.77e+00 0.000536 0 22:49825112-22:51240820
5914 22 50656118 50683381 TUBGCP6 brain_hypothalamus 1.33e+00 0.000424 0 22:49825112-22:51240820
5925 22 50609160 50618723 PANX2 pituitary -1.44e+00 0.000384 0 22:49825112-22:51240820
6005 22 50013289 50051190 C22orf34 cmc.brain.rnaseq -2.48e-01 0.000255 0 22:49825112-22:51240820
6004 22 50964181 50968485 TYMP whole_blood -4.61e-01 0.000257 0 22:49825112-22:51240820
6028 22 51007290 51017096 CPT1B brain_substantia_nigra -1.44e-01 0.000242 0 22:49825112-22:51240820
6017 22 49808176 50051190 C22orf34 brain_caudate_basal_ganglia -1.21e-01 0.000245 0 22:49825112-22:51240820
5908 22 50354161 50357728 PIM3 thyroid 1.20e+00 0.000433 0 22:49825112-22:51240820
5991 22 50247490 50283726 ZBED4 whole_blood -3.16e-01 0.000270 0 22:49825112-22:51240820
12149 22 50656118 50683421 TUBGCP6 psychencode 3.16e+00 0.006360 1 22:49825112-22:51240820
5826 22 50497819 50524358 MLC1 cmc.brain.rnaseq -2.62e+00 0.001860 1 22:49825112-22:51240820
5818 22 50297715 50298224 CITF22-1A6.3 thyroid -2.40e+00 0.002650 1 22:49825112-22:51240820
12913 22 50354161 50357728 PIM3 psychencode 1.37e+00 0.000715 0 22:49825112-22:51240820
12830 22 50683879 50700254 MAPK12 psychencode 4.01e-01 0.000614 0 22:49825112-22:51240820
5993 22 50432942 50451088 IL17REL brain_frontal_cortex_ba9 -4.23e-01 0.000268 0 22:49825112-22:51240820
5981 22 50609160 50618723 PANX2 whole_blood 3.15e-01 0.000282 0 22:49825112-22:51240820
11830 22 50683612 50689834 HDAC10 psychencode 6.27e-01 0.002700 1 22:49825112-22:51240820
5864 22 50687628 50700254 MAPK12 pituitary 3.11e-01 0.000755 0 22:49825112-22:51240820
6030 22 51195376 51239737 AC002055.4 brain_cerebellar_hemisphere -1.71e-01 0.000240 0 22:49825112-22:51240820
5958 22 50713408 50746056 PLXNB2 thyroid -1.13e+00 0.000314 0 22:49825112-22:51240820
11829 22 50497820 50524331 MLC1 psychencode 1.43e+00 0.000784 0 22:49825112-22:51240820
6025 22 51195513 51238065 RPL23AP82 cmc.brain.rnaseq 3.82e-01 0.000243 0 22:49825112-22:51240820
12833 22 50432942 50451088 IL17REL psychencode -1.13e+00 0.000403 0 22:49825112-22:51240820
5930 22 50961997 50964035 SCO2 thyroid 8.79e-01 0.000365 0 22:49825112-22:51240820
5807 22 50656118 50683381 TUBGCP6 brain_cortex 3.26e+00 0.008830 1 22:49825112-22:51240820
6010 22 50646890 50647971 RP3-402G11.28 brain_anterior_cingulate_cortex_ba24 2.40e-01 0.000251 0 22:49825112-22:51240820
5939 22 50609160 50618723 PANX2 yfs.blood.rnaarr -3.97e-01 0.000351 0 22:49825112-22:51240820
5832 22 50638505 50638976 RP3-402G11.26 pituitary 1.72e+00 0.001520 0 22:49825112-22:51240820
5868 22 50687628 50700254 MAPK12 brain_cerebellar_hemisphere 5.02e-01 0.000730 0 22:49825112-22:51240820
5953 22 51007289 51017096 CPT1B cmc.brain.rnaseq 1.27e+00 0.000325 0 22:49825112-22:51240820
5869 22 50687628 50700254 MAPK12 brain_anterior_cingulate_cortex_ba24 6.08e-01 0.000722 0 22:49825112-22:51240820
5853 22 50683612 50688288 HDAC10 brain_cerebellum 4.35e-01 0.000894 0 22:49825112-22:51240820
5976 22 49808176 50051190 C22orf34 whole_blood 8.77e-01 0.000289 0 22:49825112-22:51240820
5847 22 50687628 50700254 MAPK12 brain_hypothalamus 1.03e+00 0.001000 0 22:49825112-22:51240820
5897 22 50687628 50700254 MAPK12 brain_cortex 2.01e-01 0.000500 0 22:49825112-22:51240820
5965 22 50528308 50600119 MOV10L1 brain_caudate_basal_ganglia -9.40e-02 0.000301 0 22:49825112-22:51240820
12972 22 51007290 51017899 CPT1B psychencode -3.10e-01 0.000244 0 22:49825112-22:51240820
5979 22 50639408 50656045 SELO brain_hypothalamus 3.45e-01 0.000284 0 22:49825112-22:51240820
12164 22 50961997 50964868 SCO2 psychencode 1.04e+00 0.000545 0 22:49825112-22:51240820
5873 22 50687628 50700254 MAPK12 brain_nucleus_accumbens_basal_ganglia 4.72e-01 0.000688 0 22:49825112-22:51240820
5849 22 50687628 50700254 MAPK12 brain_frontal_cortex_ba9 5.84e-01 0.000980 0 22:49825112-22:51240820
5858 22 50687628 50700254 MAPK12 adrenal_gland 7.92e-01 0.000847 0 22:49825112-22:51240820
5882 22 50961997 50964035 SCO2 whole_blood 1.23e+00 0.000621 0 22:49825112-22:51240820
13516 22 50962355 50963209 CTA-384D8.36 psychencode -3.13e-01 0.000253 0 22:49825112-22:51240820
13314 22 51007298 51021394 CHKB-CPT1B psychencode -4.34e-01 0.000247 0 22:49825112-22:51240820
5801 22 50656117 50683400 TUBGCP6 cmc.brain.rnaseq 3.91e+00 0.086600 1 22:49825112-22:51240820
6013 22 50006305 50009364 RP1-29C18.8 brain_cerebellum -3.61e-01 0.000248 0 22:49825112-22:51240820
5985 22 50226264 50231434 RP3-522J7.6 pituitary 6.62e-01 0.000276 0 22:49825112-22:51240820
5922 22 50962854 50963209 CTA-384D8.36 whole_blood 7.37e-01 0.000400 0 22:49825112-22:51240820
5827 22 50683612 50689834 HDAC10 yfs.blood.rnaarr 1.13e+00 0.001790 1 22:49825112-22:51240820
5831 22 50683612 50688288 HDAC10 thyroid 6.47e-01 0.001520 0 22:49825112-22:51240820
5862 22 50683612 50688288 HDAC10 adrenal_gland 7.43e-01 0.000784 0 22:49825112-22:51240820
5808 22 50656118 50683381 TUBGCP6 brain_cerebellar_hemisphere 3.21e+00 0.007450 1 22:49825112-22:51240820
5884 22 50226264 50231434 RP3-522J7.6 brain_cerebellar_hemisphere -1.56e+00 0.000599 0 22:49825112-22:51240820
5836 22 50683612 50688288 HDAC10 brain_hippocampus 6.08e-01 0.001300 0 22:49825112-22:51240820
5877 22 50688491 50700089 MAPK12 cmc.brain.rnaseq 2.45e-01 0.000649 0 22:49825112-22:51240820
6033 22 49808176 50051190 C22orf34 thyroid 8.55e-02 0.000239 0 22:49825112-22:51240820
5861 22 50687628 50700254 MAPK12 brain_putamen_basal_ganglia 7.97e-01 0.000793 0 22:49825112-22:51240820
5975 22 51007289 51021394 CHKB-CPT1B ntr.blood.rnaarr 5.38e-01 0.000289 0 22:49825112-22:51240820
5851 22 50638505 50638976 RP3-402G11.26 brain_cortex 2.23e+00 0.000940 0 22:49825112-22:51240820
5810 22 50656118 50683381 TUBGCP6 thyroid 3.15e+00 0.006340 1 22:49825112-22:51240820
5835 22 50683612 50688288 HDAC10 brain_anterior_cingulate_cortex_ba24 6.46e-01 0.001320 0 22:49825112-22:51240820
5859 22 50961997 50964868 SCO2 yfs.blood.rnaarr 1.43e+00 0.000828 0 22:49825112-22:51240820
5893 22 50683612 50688288 HDAC10 brain_nucleus_accumbens_basal_ganglia 1.21e-01 0.000520 0 22:49825112-22:51240820
5823 22 50702142 50709196 MAPK11 thyroid -2.67e+00 0.001970 1 22:49825112-22:51240820
5946 22 50293877 50312106 ALG12 pituitary -1.07e+00 0.000335 0 22:49825112-22:51240820
5913 22 51205929 51222091 RABL2B whole_blood 1.06e+00 0.000426 0 22:49825112-22:51240820
5876 22 50687628 50700254 MAPK12 brain_cerebellum -1.13e-01 0.000671 0 22:49825112-22:51240820
5986 22 49808176 50051190 C22orf34 brain_frontal_cortex_ba9 5.48e-01 0.000275 0 22:49825112-22:51240820
11630 22 50946645 50961901 NCAPH2 psychencode -3.38e-01 0.000252 0 22:49825112-22:51240820
5983 22 50006305 50009364 RP1-29C18.8 whole_blood -6.28e-01 0.000279 0 22:49825112-22:51240820
5904 22 50964181 50968485 TYMP thyroid -1.01e+00 0.000461 0 22:49825112-22:51240820
5888 22 50961996 50964905 SCO2 cmc.brain.rnaseq 1.21e+00 0.000572 0 22:49825112-22:51240820
5960 22 50964181 50968485 TYMP yfs.blood.rnaarr -7.31e-01 0.000310 0 22:49825112-22:51240820
5881 22 50713408 50746056 PLXNB2 brain_cerebellum -1.88e+00 0.000626 0 22:49825112-22:51240820

Show FOCUS and other combined results

MDD TWAS Results with FOCUS
Location SNP.weight.Set ID TWAS.Z TWAS.P FOCUS_twas_z FOCUS_in_cred_set FOCUS_pip FOCUS_region
chr1:8412457-8877702 GTEx Whole Blood RERE -5.095707 3.47e-07 -4.890 1 0.110000 1:7247335-1:9365199
chr1:8412457-8877702 YFS Blood RERE -5.310078 1.10e-07 -5.200 1 0.504000 1:7247335-1:9365199
chr1:8484705-8494898 GTEx Thyroid RP5-1115A15.1 -5.175240 2.28e-07 -5.070 1 0.269000 1:7247335-1:9365199
chr1:8484705-8494898 GTEx Whole Blood RP5-1115A15.1 -4.866386 1.14e-06 -4.810 0 0.078100 1:7247335-1:9365199
chr1:36884051-36884179 GTEx Nucleus accumbens SNORA63 4.848870 1.24e-06 4.980 1 0.734000 1:34799758-1:37549183
chr1:71861623-72748417 GTEx Caudate NEGR1 5.780100 7.47e-09 5.910 0 0.000216 1:71684606-1:74326484
chr1:71861623-72748417 GTEx Putamen NEGR1 5.548510 2.88e-08 5.660 0 0.000185 1:71684606-1:74326484
chr1:71861623-72748417 GTEx Whole Blood NEGR1 8.760622 1.94e-18 8.760 1 1.000000 1:71684606-1:74326484
chr1:72767155-72767512 GTEx Cerebellar Hemispher… RPL31P12 -7.785520 6.94e-15 -7.480 0 0.000323 1:71684606-1:74326484
chr1:72767155-72767512 GTEx Cerebellum RPL31P12 -7.708820 1.27e-14 -7.530 0 0.000407 1:71684606-1:74326484
chr1:72767155-72767512 PsychENCODE RPL31P12 -7.742756 9.73e-15 -7.690 0 0.000644 1:71684606-1:74326484
chr1:175873898-175889649 GTEx Thyroid RP11-318C24.2 -5.027510 4.97e-07 -4.880 1 0.613000 1:175089768-1:177433331
chr1:175913966-176176370 CMC DLPFC Splicing RFWD2 -4.958690 7.10e-07 -4.540 1 0.088200 1:175089768-1:177433331
chr1:175913966-176176370 CMC DLPFC Splicing RFWD2 -4.958690 7.10e-07 -4.350 0 0.084500 1:175089768-1:177433331
chr1:175913966-176176370 CMC DLPFC Splicing RFWD2 5.039850 4.66e-07 -4.540 1 0.088200 1:175089768-1:177433331
chr1:175913966-176176370 CMC DLPFC Splicing RFWD2 5.039850 4.66e-07 -4.350 0 0.084500 1:175089768-1:177433331
chr1:175913966-176176370 CMC DLPFC Splicing RFWD2 -5.005960 5.56e-07 -4.540 1 0.088200 1:175089768-1:177433331
chr1:175913966-176176370 CMC DLPFC Splicing RFWD2 -5.005960 5.56e-07 -4.350 0 0.084500 1:175089768-1:177433331
chr1:181452685-181775921 CMC DLPFC Splicing CACNA1E -4.989390 6.06e-07 -4.790 1 0.518000 1:181144121-1:182755356
chr1:197473878-197744623 CMC DLPFC DENND1B 4.848374 1.24e-06 5.370 1 0.991000 1:197311514-1:199239815
chr1:197473878-197744623 CMC DLPFC Splicing DENND1B -5.421950 5.90e-08 -2.340 0 0.000437 1:197311514-1:199239815
chr1:197473878-197744623 CMC DLPFC Splicing DENND1B -5.421950 5.90e-08 -1.830 0 0.000252 1:197311514-1:199239815
chr1:197473878-197744623 CMC DLPFC Splicing DENND1B 5.018050 5.22e-07 -2.340 0 0.000437 1:197311514-1:199239815
chr1:197473878-197744623 CMC DLPFC Splicing DENND1B 5.018050 5.22e-07 -1.830 0 0.000252 1:197311514-1:199239815
chr2:58386377-58468515 CMC DLPFC FANCL -5.183180 2.18e-07 -4.410 0 0.007500 2:57429100-2:58296890
chr2:58386377-58468515 CMC DLPFC FANCL -5.183180 2.18e-07 -4.130 0 0.389000 2:58297664-2:60292000
chr2:58386377-58468515 CMC DLPFC Splicing FANCL 4.897476 9.71e-07 5.540 1 0.800000 2:57429100-2:58296890
chr2:58386377-58468515 CMC DLPFC Splicing FANCL 4.897476 9.71e-07 0.998 0 0.000373 2:57429100-2:58296890
chr2:58386377-58468515 CMC DLPFC Splicing FANCL 4.897476 9.71e-07 -0.769 0 0.000284 2:57429100-2:58296890
chr2:58386377-58468515 CMC DLPFC Splicing FANCL 4.897476 9.71e-07 1.820 0 0.000687 2:58297664-2:60292000
chr2:58386377-58468515 CMC DLPFC Splicing FANCL 4.897476 9.71e-07 -0.746 0 0.000234 2:58297664-2:60292000
chr2:58386377-58468515 CMC DLPFC Splicing FANCL 4.897476 9.71e-07 0.622 0 0.000233 2:58297664-2:60292000
chr2:197831741-198175897 YFS Blood ANKRD44 -5.690140 1.27e-08 -5.000 1 0.320000 2:198078110-2:199311125
chr2:198254508-198299815 GTEx Hypothalamus SF3B1 5.214900 1.84e-07 4.810 1 0.130000 2:198078110-2:199311125
chr3:44481261-44561226 CMC DLPFC ZNF445 -5.103280 3.34e-07 -5.120 1 0.308000 3:42540002-3:45165153
chr4:41937137-41962589 PsychENCODE TMEM33 4.837418 1.32e-06 4.520 0 0.009620 4:40202609-4:42213058
chr4:41983713-41988476 GTEx Thyroid DCAF4L1 -5.128000 2.93e-07 -5.000 0 0.017700 4:40202609-4:42213058
chr4:41990758-41991254 GTEx Cerebellar Hemispher… RP11-814H16.2 5.009600 5.45e-07 4.710 0 0.004720 4:40202609-4:42213058
chr4:41992489-42092474 GTEx Amygdala SLC30A9 -5.253400 1.49e-07 -5.050 1 0.020000 4:40202609-4:42213058
chr4:41992489-42092474 GTEx ACC SLC30A9 -5.001690 5.68e-07 -5.230 1 0.047900 4:40202609-4:42213058
chr4:41992489-42092474 GTEx Caudate SLC30A9 -4.854800 1.21e-06 -4.720 0 0.004440 4:40202609-4:42213058
chr4:41992489-42092474 GTEx Cortex SLC30A9 -5.774530 7.72e-09 -5.730 1 0.655000 4:40202609-4:42213058
chr4:41992489-42092474 GTEx Hypothalamus SLC30A9 -5.085140 3.67e-07 -5.030 0 0.018200 4:40202609-4:42213058
chr4:41992489-42092474 GTEx Nucleus accumbens SLC30A9 -5.602700 2.11e-08 -5.500 1 0.191000 4:40202609-4:42213058
chr4:41992489-42092474 PsychENCODE SLC30A9 -5.259200 1.45e-07 -4.590 0 0.002740 4:40202609-4:42213058
chr5:87564712-87732502 PsychENCODE TMEM161B-AS1 6.091010 1.12e-09 4.460 0 0.003040 5:87390031-5:88891530
chr5:87564888-87732502 GTEx Adrenal Gland TMEM161B-AS1 5.360090 8.32e-08 5.350 0 0.008360 5:87390031-5:88891530
chr5:87564888-87732502 GTEx Amygdala TMEM161B-AS1 6.118500 9.45e-10 5.930 1 0.117000 5:87390031-5:88891530
chr5:87564888-87732502 GTEx ACC TMEM161B-AS1 6.445500 1.15e-10 6.280 1 0.136000 5:87390031-5:88891530
chr5:87564888-87732502 GTEx Caudate TMEM161B-AS1 6.282167 3.34e-10 6.130 1 0.082400 5:87390031-5:88891530
chr5:87564888-87732502 GTEx Cerebellar Hemispher… TMEM161B-AS1 6.011700 1.84e-09 5.780 0 0.025000 5:87390031-5:88891530
chr5:87564888-87732502 GTEx Cerebellum TMEM161B-AS1 6.053050 1.42e-09 5.830 1 0.088000 5:87390031-5:88891530
chr5:87564888-87732502 GTEx Cortex TMEM161B-AS1 6.021420 1.73e-09 5.930 0 0.048200 5:87390031-5:88891530
chr5:87564888-87732502 GTEx Frontal Cortex TMEM161B-AS1 6.720000 1.82e-11 6.420 1 0.126000 5:87390031-5:88891530
chr5:87564888-87732502 GTEx Hypothalamus TMEM161B-AS1 5.875800 4.21e-09 5.610 1 0.057200 5:87390031-5:88891530
chr5:87564888-87732502 GTEx Nucleus accumbens TMEM161B-AS1 6.010490 1.85e-09 5.850 1 0.056900 5:87390031-5:88891530
chr5:87564888-87732502 GTEx Putamen TMEM161B-AS1 6.372050 1.87e-10 6.120 1 0.059300 5:87390031-5:88891530
chr5:87564888-87732502 GTEx Substantia nigra TMEM161B-AS1 6.057270 1.38e-09 5.790 0 0.049800 5:87390031-5:88891530
chr5:87564888-87732502 GTEx Pituitary TMEM161B-AS1 6.048500 1.46e-09 5.770 1 0.070200 5:87390031-5:88891530
chr5:87564888-87732502 GTEx Thyroid TMEM161B-AS1 5.889760 3.87e-09 5.820 0 0.035900 5:87390031-5:88891530
chr5:87564888-87732502 GTEx Whole Blood TMEM161B-AS1 5.526440 3.27e-08 5.420 0 0.008200 5:87390031-5:88891530
chr5:87729709-87794514 GTEx Substantia nigra CTC-498M16.4 5.403610 6.53e-08 5.450 0 0.004490 5:87390031-5:88891530
chr5:87988462-87989789 GTEx ACC CTC-467M3.3 -5.813700 6.11e-09 -5.760 0 0.000351 5:87390031-5:88891530
chr5:87988462-87989789 GTEx Cerebellar Hemispher… CTC-467M3.3 -5.861000 4.60e-09 -5.740 1 0.135000 5:87390031-5:88891530
chr5:87988462-87989789 GTEx Cortex CTC-467M3.3 -6.510990 7.47e-11 -6.360 0 0.004320 5:87390031-5:88891530
chr5:87988462-87989789 GTEx Frontal Cortex CTC-467M3.3 -7.091600 1.33e-12 -7.070 1 0.839000 5:87390031-5:88891530
chr5:87988462-87989789 PsychENCODE CTC-467M3.3 -6.097890 1.07e-09 -5.910 0 0.021700 5:87390031-5:88891530
chr5:140024947-140027370 CMC DLPFC NDUFA2 5.190020 2.10e-07 5.160 1 0.346000 5:139265072-5:140645971
chr5:140201222-140203811 GTEx Thyroid PCDHA5 -5.402970 6.55e-08 -4.470 1 0.015000 5:139265072-5:140645971
chr5:140220907-140223351 GTEx Cerebellar Hemispher… PCDHA8 -4.980100 6.36e-07 -4.960 1 0.106000 5:139265072-5:140645971
chr6:26188921-26189323 NTR Blood HIST1H4D -4.987600 6.11e-07 -5.040 1 0.187000 6:25684587-6:26789628
chr6:26365386-26378540 NTR Blood BTN3A2 5.326600 1.00e-07 5.320 1 0.038900 6:25684587-6:26789628
chr6:26365387-26378546 GTEx Cerebellar Hemispher… BTN3A2 5.188200 2.12e-07 5.030 1 0.016800 6:25684587-6:26789628
chr6:26365387-26378546 GTEx Hippocampus BTN3A2 4.963000 6.96e-07 4.810 1 0.008270 6:25684587-6:26789628
chr6:26365387-26378546 GTEx Pituitary BTN3A2 5.898930 3.66e-09 5.750 1 0.277000 6:25684587-6:26789628
chr6:26365387-26378546 GTEx Thyroid BTN3A2 5.481600 4.22e-08 5.380 1 0.069000 6:25684587-6:26789628
chr6:26365387-26378546 GTEx Whole Blood BTN3A2 5.086960 3.64e-07 5.060 1 0.037800 6:25684587-6:26789628
chr6:26538633-26546482 GTEx Cerebellum HMGN4 5.395400 6.84e-08 5.360 1 0.043100 6:25684587-6:26789628
chr6:26538633-26546482 GTEx Cerebellum HMGN4 5.395400 6.84e-08 -1.730 0 0.000403 6:26791421-6:28017629
chr6:27215480-27224250 GTEx Cerebellar Hemispher… PRSS16 -4.891200 1.00e-06 -4.820 0 0.001250 6:26791421-6:28017629
chr6:27215480-27224250 GTEx Cerebellum PRSS16 -4.947900 7.50e-07 -4.810 0 0.001470 6:26791421-6:28017629
chr6:27215480-27224250 GTEx Frontal Cortex PRSS16 -5.045000 4.54e-07 -4.890 0 0.000813 6:26791421-6:28017629
chr6:27215480-27224250 GTEx Pituitary PRSS16 -5.916080 3.30e-09 -5.720 1 0.077000 6:26791421-6:28017629
chr6:27215480-27224250 GTEx Whole Blood PRSS16 -5.335920 9.51e-08 -5.090 1 0.006580 6:26791421-6:28017629
chr6:27325604-27339304 GTEx Adrenal Gland ZNF204P -5.032700 4.84e-07 -4.890 1 0.008260 6:26791421-6:28017629
chr6:27371789-27374743 GTEx Hippocampus RP1-153G14.4 5.354000 8.60e-08 5.360 1 0.018300 6:26791421-6:28017629
chr6:27418522-27440897 GTEx Caudate ZNF184 -6.325200 2.53e-10 -6.260 1 0.111000 6:26791421-6:28017629
chr6:27418522-27440897 GTEx Hypothalamus ZNF184 -4.952200 7.34e-07 -4.850 0 0.000884 6:26791421-6:28017629
chr6:27840926-27841289 NTR Blood HIST1H4L 4.870800 1.11e-06 2.800 0 0.000344 6:26791421-6:28017629
chr6:27840926-27841289 NTR Blood HIST1H4L 4.870800 1.11e-06 5.290 0 0.003760 6:28018353-6:28917525
chr6:28058932-28061442 PsychENCODE ZSCAN12P1 6.268010 3.66e-10 5.810 1 0.018100 6:26791421-6:28017629
chr6:28058932-28061442 PsychENCODE ZSCAN12P1 6.268010 3.66e-10 5.090 1 0.302000 6:28018353-6:28917525
chr6:28058932-28061442 GTEx Whole Blood ZSCAN12P1 -4.936930 7.94e-07 -4.390 0 0.000506 6:26791421-6:28017629
chr6:28058932-28061442 GTEx Whole Blood ZSCAN12P1 -4.936930 7.94e-07 -4.940 0 0.003590 6:28018353-6:28917525
chr6:28083406-28084329 GTEx Hippocampus RP1-265C24.5 5.532000 3.16e-08 4.690 1 0.007530 6:26791421-6:28017629
chr6:28083406-28084329 GTEx Hippocampus RP1-265C24.5 5.532000 3.16e-08 5.330 1 0.008010 6:28018353-6:28917525
chr6:28092338-28097860 YFS Blood ZSCAN16 -6.109000 1.00e-09 -6.040 1 0.052900 6:26791421-6:28017629
chr6:28092338-28097860 YFS Blood ZSCAN16 -6.109000 1.00e-09 -5.560 1 0.086800 6:28018353-6:28917525
chr6:28192664-28201260 GTEx Cerebellum ZSCAN9 -5.307800 1.11e-07 -5.380 1 0.011800 6:26791421-6:28017629
chr6:28192664-28201260 GTEx Cerebellum ZSCAN9 -5.307800 1.11e-07 -3.420 0 0.000599 6:28018353-6:28917525
chr6:28192664-28201260 GTEx Hippocampus ZSCAN9 -6.017000 1.77e-09 -5.790 1 0.014300 6:26791421-6:28017629
chr6:28192664-28201260 GTEx Hippocampus ZSCAN9 -6.017000 1.77e-09 -2.710 0 0.000730 6:28018353-6:28917525
chr6:28192664-28201260 GTEx Pituitary ZSCAN9 -6.159020 7.32e-10 -2.020 0 0.000231 6:26791421-6:28017629
chr6:28192664-28201260 GTEx Pituitary ZSCAN9 -6.159020 7.32e-10 -5.800 1 0.057900 6:28018353-6:28917525
chr6:28227098-28228736 PsychENCODE NKAPL 5.002860 5.65e-07 3.570 0 0.000507 6:26791421-6:28017629
chr6:28227098-28228736 PsychENCODE NKAPL 5.002860 5.65e-07 4.710 1 0.021200 6:28018353-6:28917525
chr6:28234788-28245974 GTEx Adrenal Gland RP5-874C20.3 5.094600 3.49e-07 5.530 1 0.005860 6:26791421-6:28017629
chr6:28234788-28245974 GTEx Adrenal Gland RP5-874C20.3 5.094600 3.49e-07 4.750 0 0.003250 6:28018353-6:28917525
chr6:28234788-28245974 GTEx Cerebellum RP5-874C20.3 5.062800 4.13e-07 2.550 0 0.000540 6:26791421-6:28017629
chr6:28234788-28245974 GTEx Cerebellum RP5-874C20.3 5.062800 4.13e-07 5.360 1 0.025800 6:28018353-6:28917525
chr6:28234788-28245974 GTEx Hippocampus RP5-874C20.3 5.198000 2.01e-07 6.530 1 0.546000 6:26791421-6:28017629
chr6:28234788-28245974 GTEx Hippocampus RP5-874C20.3 5.198000 2.01e-07 4.520 1 0.017600 6:28018353-6:28917525
chr6:28234788-28245974 GTEx Putamen RP5-874C20.3 5.739000 9.52e-09 5.330 1 0.005060 6:26791421-6:28017629
chr6:28234788-28245974 GTEx Putamen RP5-874C20.3 5.739000 9.52e-09 5.280 1 0.033500 6:28018353-6:28917525
chr6:28234788-28245974 GTEx Thyroid RP5-874C20.3 5.338400 9.38e-08 5.570 1 0.010900 6:26791421-6:28017629
chr6:28234788-28245974 GTEx Thyroid RP5-874C20.3 5.338400 9.38e-08 4.930 0 0.003480 6:28018353-6:28917525
chr6:28234788-28245974 GTEx Whole Blood RP5-874C20.3 5.662330 1.49e-08 3.980 0 0.001660 6:26791421-6:28017629
chr6:28234788-28245974 GTEx Whole Blood RP5-874C20.3 5.662330 1.49e-08 5.450 1 0.029900 6:28018353-6:28917525
chr6:28249314-28270326 GTEx Cerebellar Hemispher… PGBD1 -6.313100 2.74e-10 -6.050 1 0.141000 6:28018353-6:28917525
chr6:28292470-28324048 GTEx Amygdala ZSCAN31 -5.084150 3.69e-07 -4.220 0 0.000740 6:26791421-6:28017629
chr6:28292470-28324048 GTEx Amygdala ZSCAN31 -5.084150 3.69e-07 -4.940 0 0.004060 6:28018353-6:28917525
chr6:28317691-28336947 GTEx Amygdala ZKSCAN3 4.949900 7.43e-07 3.980 0 0.001330 6:26791421-6:28017629
chr6:28317691-28336947 GTEx Amygdala ZKSCAN3 4.949900 7.43e-07 4.950 1 0.054800 6:28018353-6:28917525
chr6:28317691-28336947 GTEx Hippocampus ZKSCAN3 4.951000 7.37e-07 -0.863 0 0.000232 6:26791421-6:28017629
chr6:28317691-28336947 GTEx Hippocampus ZKSCAN3 4.951000 7.37e-07 4.970 0 0.004190 6:28018353-6:28917525
chr6:28317691-28336947 GTEx Thyroid ZKSCAN3 6.093300 1.11e-09 4.840 1 0.008910 6:26791421-6:28017629
chr6:28317691-28336947 GTEx Thyroid ZKSCAN3 6.093300 1.11e-09 5.630 1 0.037600 6:28018353-6:28917525
chr6:28399707-28411279 GTEx Hypothalamus ZSCAN23 -5.777500 7.58e-09 -4.850 1 0.006160 6:26791421-6:28017629
chr6:28399707-28411279 GTEx Hypothalamus ZSCAN23 -5.777500 7.58e-09 -5.770 1 0.067400 6:28018353-6:28917525
chr6:28399707-28411279 GTEx Putamen ZSCAN23 -4.894000 9.90e-07 4.330 0 0.002130 6:26791421-6:28017629
chr6:28399707-28411279 GTEx Putamen ZSCAN23 -4.894000 9.90e-07 -5.130 1 0.011300 6:28018353-6:28917525
chr6:28399707-28411279 GTEx Pituitary ZSCAN23 -4.953290 7.30e-07 -4.370 0 0.001390 6:26791421-6:28017629
chr6:28399707-28411279 GTEx Pituitary ZSCAN23 -4.953290 7.30e-07 -4.880 1 0.017000 6:28018353-6:28917525
chr6:30644166-30655672 GTEx Adrenal Gland PPP1R18 4.910200 9.10e-07 5.550 1 0.019800 6:30798168-6:31571218
chr6:30695485-30710682 CMC DLPFC Splicing FLOT1 -5.299700 1.16e-07 -5.430 0 0.000868 6:30798168-6:31571218
chr6:30695485-30710682 CMC DLPFC Splicing FLOT1 -5.067100 4.04e-07 -5.430 0 0.000868 6:30798168-6:31571218
chr6:30695485-30710682 CMC DLPFC Splicing FLOT1 4.936600 7.95e-07 -5.430 0 0.000868 6:30798168-6:31571218
chr6:30695486-30710510 GTEx Cerebellum FLOT1 -5.299000 1.16e-07 -5.300 0 0.000762 6:30798168-6:31571218
chr6:30695486-30710510 GTEx Pituitary FLOT1 -5.253270 1.49e-07 -5.300 0 0.000753 6:30798168-6:31571218
chr6:30695486-30710510 GTEx Thyroid FLOT1 -5.557400 2.74e-08 -5.390 0 0.000964 6:30798168-6:31571218
chr6:30881982-30894236 GTEx Cortex VARS2 5.922000 3.18e-09 5.950 1 0.022000 6:30798168-6:31571218
chr6:30881982-30894236 GTEx Whole Blood VARS2 6.323130 2.56e-10 6.380 1 0.089500 6:30798168-6:31571218
chr6:31255287-31256741 GTEx Pituitary WASF5P -5.156240 2.52e-07 -4.500 1 0.002330 6:30798168-6:31571218
chr6:31255287-31256741 GTEx Pituitary WASF5P -5.156240 2.52e-07 -4.220 1 0.003750 6:31571218-6:32682664
chr6:31368479-31445283 GTEx Thyroid HCP5 6.400800 1.55e-10 6.750 1 0.860000 6:30798168-6:31571218
chr6:31368479-31445283 GTEx Thyroid HCP5 6.400800 1.55e-10 4.550 1 0.019500 6:31571218-6:32682664
chr6:31462658-31478901 GTEx Thyroid MICB -5.557000 2.74e-08 -5.360 1 0.067600 6:30798168-6:31571218
chr6:31462658-31478901 GTEx Thyroid MICB -5.557000 2.74e-08 -1.140 0 0.000296 6:31571218-6:32682664
chr6:31606805-31620482 CMC DLPFC Splicing BAG6 -5.580000 2.40e-08 -3.940 0 0.000713 6:30798168-6:31571218
chr6:31606805-31620482 CMC DLPFC Splicing BAG6 -5.580000 2.40e-08 -0.306 0 0.000184 6:30798168-6:31571218
chr6:31606805-31620482 CMC DLPFC Splicing BAG6 -5.580000 2.40e-08 -5.480 1 0.538000 6:31571218-6:32682664
chr6:31606805-31620482 CMC DLPFC Splicing BAG6 -5.580000 2.40e-08 -4.410 1 0.024200 6:31571218-6:32682664
chr6:31694815-31698357 GTEx Frontal Cortex DDAH2 5.409500 6.32e-08 4.750 1 0.005450 6:30798168-6:31571218
chr6:31694815-31698357 GTEx Frontal Cortex DDAH2 5.409500 6.32e-08 4.360 1 0.006750 6:31571218-6:32682664
chr6:31694816-31698039 CMC DLPFC DDAH2 5.344500 9.07e-08 5.330 1 0.005700 6:30798168-6:31571218
chr6:31694816-31698039 CMC DLPFC DDAH2 5.344500 9.07e-08 4.200 1 0.004890 6:31571218-6:32682664
chr6:99817347-99842082 CMC DLPFC Splicing COQ3 5.146560 2.65e-07 5.100 1 0.972000 6:97842747-6:100629728
chr6:99817347-99842082 CMC DLPFC Splicing COQ3 5.146560 2.65e-07 0.118 1 0.000536 6:97842747-6:100629728
chr6:105404922-105531207 CMC DLPFC LIN28B -5.232050 1.68e-07 -5.080 1 0.127000 6:103983395-6:106056733
chr6:105404923-105531207 PsychENCODE LIN28B -5.105689 3.30e-07 -5.020 0 0.092400 6:103983395-6:106056733
chr6:105584224-105617820 GTEx Amygdala BVES-AS1 -5.578300 2.43e-08 -5.430 1 0.742000 6:103983395-6:106056733
chr7:12250867-12282993 GTEx Adrenal Gland TMEM106B 5.505026 3.69e-08 5.290 0 0.062900 7:11299198-7:12635461
chr7:12250867-12282993 PsychENCODE TMEM106B -5.790690 7.01e-09 -5.560 1 0.259000 7:11299198-7:12635461
chr7:12250867-12282993 GTEx Whole Blood TMEM106B 5.531000 3.18e-08 5.720 1 0.614000 7:11299198-7:12635461
chr7:12250867-12276886 YFS Blood TMEM106B 5.373600 7.72e-08 5.270 0 0.057400 7:11299198-7:12635461
chr7:24836158-25021253 GTEx Pituitary OSBPL3 -5.622890 1.88e-08 -5.320 1 0.982000 7:23471523-7:25077097
chr8:52232136-52722005 CMC DLPFC PXDNL 5.887460 3.92e-09 5.930 1 0.998000 8:50082470-8:53302930
chr8:61297147-61429354 GTEx Thyroid RP11-163N6.2 -5.336530 9.47e-08 -5.320 1 0.923000 8:59728421-8:62328644
chr9:126605315-126605965 PsychENCODE PIGFP2 -5.305600 1.12e-07 -5.180 1 0.944000 9:124871322-9:126971353
chr11:57067112-57092426 GTEx Adrenal Gland TNKS1BP1 4.922610 8.54e-07 4.880 1 0.214000 11:55082693-11:58457495
chr11:57405497-57420263 GTEx Thyroid AP000662.4 -4.980256 6.35e-07 -4.870 1 0.205000 11:55082693-11:58457495
chr11:57424488-57429340 GTEx Whole Blood CLP1 5.195860 2.04e-07 5.040 1 0.449000 11:55082693-11:58457495
chr11:61535973-61560274 PsychENCODE TMEM258 5.021730 5.12e-07 4.580 1 0.251000 11:58780549-11:62223771
chr11:113280318-113346111 GTEx Frontal Cortex DRD2 -5.073787 3.90e-07 -4.970 1 0.967000 11:112459488-11:114256749
chr13:53602875-53626196 CMC DLPFC OLFM4 5.091290 3.56e-07 5.310 1 0.992000 13:53339645-13:54682393
chr14:42057064-42074059 GTEx Thyroid CTD-2298J14.2 -5.678860 1.36e-08 -5.640 1 0.549000 14:41615719-14:43137256
chr14:42076773-42373752 GTEx Cerebellar Hemispher… LRFN5 5.423400 5.85e-08 5.120 0 0.035200 14:41615719-14:43137256
chr14:42076773-42373752 GTEx Cerebellum LRFN5 5.597540 2.17e-08 5.590 0 0.416000 14:41615719-14:43137256
chr14:59951161-59971429 GTEx Thyroid JKAMP -5.125100 2.97e-07 -5.190 0 0.210000 14:59448336-14:61680201
chr14:59971779-60043549 GTEx Thyroid CCDC175 -5.478850 4.28e-08 -5.350 1 0.481000 14:59448336-14:61680201
chr14:60062693-60337557 CMC DLPFC Splicing RTN1 -4.874920 1.09e-06 1.580 0 0.000260 14:59448336-14:61680201
chr14:60062695-60337684 GTEx Thyroid RTN1 -5.348450 8.87e-08 -5.250 1 0.305000 14:59448336-14:61680201
chr14:64319682-64693151 NTR Blood SYNE2 5.609528 2.03e-08 5.670 1 0.253000 14:63790015-14:65220117
chr14:64550950-64770377 GTEx Pituitary ESR2 -5.982300 2.20e-09 -5.820 1 0.593000 14:63790015-14:65220117
chr14:64550950-64770377 GTEx Whole Blood ESR2 -5.655371 1.56e-08 -5.580 0 0.157000 14:63790015-14:65220117
chr14:75120140-75179818 PsychENCODE AREL1 -5.015110 5.30e-07 -4.810 0 0.007350 14:72889754-14:76444767
chr14:75319736-75330537 GTEx Thyroid PROX2 -5.758100 8.51e-09 -5.820 1 0.867000 14:72889754-14:76444767
chr14:75348593-75370450 CMC DLPFC DLST 4.981400 6.31e-07 4.910 1 0.012900 14:72889754-14:76444767
chr14:75348594-75370448 PsychENCODE DLST 5.089700 3.59e-07 5.430 1 0.111000 14:72889754-14:76444767
chr14:75370656-75389188 CMC DLPFC Splicing RPS6KL1 -5.023810 5.07e-07 0.257 0 0.000236 14:72889754-14:76444767
chr14:75370656-75389188 CMC DLPFC Splicing RPS6KL1 -5.023810 5.07e-07 0.578 0 0.000216 14:72889754-14:76444767
chr14:75370657-75390099 PsychENCODE RPS6KL1 -4.952550 7.32e-07 -4.660 0 0.003030 14:72889754-14:76444767
chr14:103878456-103879098 PsychENCODE RP11-600F24.2 5.185660 2.15e-07 4.930 1 0.039400 14:103012102-14:105001723
chr14:103985996-103989448 YFS Blood CKB 5.346000 8.99e-08 5.190 1 0.146000 14:103012102-14:105001723
chr14:103995508-104003410 CMC DLPFC TRMT61A 5.051300 4.39e-07 4.910 1 0.039200 14:103012102-14:105001723
chr14:103995521-104003410 GTEx Whole Blood TRMT61A 4.977593 6.44e-07 4.820 1 0.025400 14:103012102-14:105001723
chr14:104019758-104028214 GTEx Thyroid RP11-894P9.2 -5.462560 4.69e-08 -5.290 1 0.233000 14:103012102-14:105001723
chr14:104153913-104154464 PsychENCODE RP11-73M18.6 5.031320 4.87e-07 5.240 1 0.181000 14:103012102-14:105001723
chr14:104160897-104161507 PsychENCODE RP11-73M18.7 4.856130 1.20e-06 4.720 1 0.016000 14:103012102-14:105001723
chr14:104162690-104163500 GTEx Amygdala RP11-73M18.8 5.142000 2.72e-07 5.070 1 0.078400 14:103012102-14:105001723
chr14:104177607-104179149 GTEx Cerebellum AL049840.1 5.029540 4.92e-07 4.880 1 0.031400 14:103012102-14:105001723
chr14:104177607-104179149 GTEx Cortex AL049840.1 5.143620 2.69e-07 4.900 1 0.034600 14:103012102-14:105001723
chr14:104179904-104180441 GTEx Cortex RP11-73M18.9 4.977330 6.45e-07 4.890 1 0.032100 14:103012102-14:105001723
chr14:104179904-104180586 PsychENCODE RP11-73M18.9 4.830100 1.36e-06 4.650 1 0.011600 14:103012102-14:105001723
chr16:72146056-72210777 PsychENCODE PMFBP1 -5.160620 2.46e-07 -5.210 1 0.959000 16:71054116-16:72935146
chr17:27400528-27507430 GTEx Adrenal Gland MYO18A -5.128570 2.92e-07 -4.890 1 0.197000 17:27334244-17:29786491
chr17:27401933-27405875 GTEx Adrenal Gland TIAF1 -5.361200 8.27e-08 -5.100 1 0.524000 17:27334244-17:29786491
chr17:65520597-65521538 PsychENCODE CTD-2653B5.1 5.105730 3.30e-07 NA NA NA NA
chr18:52385091-52562747 PsychENCODE RAB27B 5.012900 5.36e-07 5.050 1 0.585000 18:51554430-18:55213838
chr18:52495707-52562747 CMC DLPFC Splicing RAB27B 4.843190 1.28e-06 -0.893 0 0.000247 18:51554430-18:55213838
chr20:47835831-47860614 CMC DLPFC DDX27 4.836260 1.32e-06 4.750 1 0.354000 20:47199980-20:49239658
chr22:41165634-41215403 GTEx Nucleus accumbens SLC25A17 5.076990 3.83e-07 4.850 1 0.011100 22:40545828-22:42690262
chr22:41165634-41215403 GTEx Thyroid SLC25A17 4.896100 9.78e-07 4.990 1 0.025800 22:40545828-22:42690262
chr22:41253088-41351450 GTEx Frontal Cortex XPNPEP3 4.951000 7.38e-07 4.990 1 0.021000 22:40545828-22:42690262
chr22:41258260-41363888 CMC DLPFC XPNPEP3 5.110000 3.21e-07 5.010 1 0.024200 22:40545828-22:42690262
chr22:41487790-41576081 GTEx Cerebellum EP300 5.493900 3.93e-08 5.540 1 0.332000 22:40545828-22:42690262
chr22:41487790-41576081 YFS Blood EP300 5.059100 4.21e-07 4.870 1 0.019200 22:40545828-22:42690262
chr22:41641614-41682216 CMC DLPFC Splicing RANGAP1 5.240100 1.61e-07 1.810 1 0.003720 22:40545828-22:42690262
chr22:41641614-41682216 CMC DLPFC Splicing RANGAP1 5.240100 1.61e-07 -3.310 0 0.000513 22:40545828-22:42690262
chr22:41641615-41682255 PsychENCODE RANGAP1 -5.575273 2.47e-08 -4.840 1 0.009810 22:40545828-22:42690262
chr22:41697526-41756151 GTEx Cerebellum ZC3H7B 5.729100 1.01e-08 5.630 1 0.511000 22:40545828-22:42690262

3.8 TWAS-GSEA

Combine the predicted expression files for FUSION and PsychENCODE

library(data.table)

FUSION<-fread(cmd='zcat /scratch/groups/biomarkers-brc-mh/TWAS_resource/FUSION/Predicted_expression/FUSION_1KG/FUSION_1KG_Expr_AllSets.csv.gz')
PsychENCODE<-fread(cmd='zcat /scratch/groups/biomarkers-brc-mh/TWAS_resource/PsychEncode/Predicted_expression/FeaturePredictions.csv.gz')

both<-merge(FUSION, PsychENCODE, by=c('FID','IID'))

fwrite(both, '/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/FUSION_PsychENCODE_FeaturePredictions.csv', row.names=F, quote=F)
gzip /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/FUSION_PsychENCODE_FeaturePredictions.csv

TWAS-GSEA: All tissues

# Using TWAS from all PANELs, removing duplicate genes.
sbatch -p brc,shared --mem=60G -n 3 /users/k1806347/brc_scratch/Software/Rscript.sh /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/Scripts/Git/opain/TWAS-GSEA/TWAS-GSEA.V1.2.R \
  --twas_results /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues.txt \
  --pos /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/MDD_TWAS.pos \
  --gmt_file /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/candidate.gmt \
  --qqplot F \
  --use_alt_id ID \
  --expression_ref /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/FUSION_PsychENCODE_FeaturePredictions.csv.gz \
  --n_cores 3 \
  --self_contained F \
  --min_r2 0.05 \
  --competitive T \
  --covar GeneLength,NSNP \
  --output /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/MDD_TWAS_GSEA_Candidate_Wray

# hypothesis-free analysis
sbatch -p brc,shared --mem=60G -n 3 /users/k1806347/brc_scratch/Software/Rscript.sh /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/Scripts/Git/opain/TWAS-GSEA/TWAS-GSEA.V1.2.R \
  --twas_results /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues.txt \
  --pos /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/MDD_TWAS.pos \
  --gmt_file /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/hypofree.gmt \
  --qqplot F \
  --use_alt_id ID \
  --expression_ref /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/FUSION_PsychENCODE_FeaturePredictions.csv.gz \
  --self_contained F \
  --min_r2 0.05 \
  --n_cores 3 \
  --competitive T \
  --covar GeneLength,NSNP \
  --output /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/MDD_TWAS_GSEA_Hypo_free

# brainspan
sbatch -p brc,shared --mem=60G -n 3 /users/k1806347/brc_scratch/Software/Rscript.sh /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/Scripts/Git/opain/TWAS-GSEA/TWAS-GSEA.V1.2.R \
  --twas_results /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues.txt \
  --pos /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/MDD_TWAS.pos \
  --prop_file /mnt/lustre/users/k1806347/Data/Gene_properties/Gusev_DPFC_BRAINSPAN/DFC_RIN_CLEANED.DE_ZScores.symbol.txt \
  --qqplot F \
  --use_alt_id ID \
  --expression_ref /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/FUSION_PsychENCODE_FeaturePredictions.csv.gz \
  --self_contained F \
  --min_r2 0.05 \
  --linear_p_thresh 1 \
  --n_cores 3 \
  --competitive T \
  --covar GeneLength,NSNP \
  --output /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/MDD_TWAS_GSEA_brainspan

TWAS-GSEA: Tissue groups

library(data.table)
res<-fread('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues.txt')
Brain_res<-res[grepl('Brain|BRAIN|PsychENCODE', res$PANEL),]
HPA_res<-res[grepl('Adrenal|Pituitary|Hypothalamus', res$PANEL),]
HPT_res<-res[grepl('Thyroid|Pituitary|Hypothalamus', res$PANEL),]
BLOOD_res<-res[grepl('BLOOD', res$PANEL),]

write.table(Brain_res, '/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/ByPanelSet/MDD_TWAS_BRAIN.GW', row.names=F, col.names=T, quote=F)
write.table(HPA_res, '/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/ByPanelSet/MDD_TWAS_HPA.GW', row.names=F, col.names=T, quote=F)
write.table(HPT_res, '/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/ByPanelSet/MDD_TWAS_HPT.GW', row.names=F, col.names=T, quote=F)
write.table(BLOOD_res, '/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/ByPanelSet/MDD_TWAS_BLOOD.GW', row.names=F, col.names=T, quote=F)
# Candidate
for set in $(echo BRAIN HPA HPT BLOOD);do
sbatch -p brc,shared --mem=20G /users/k1806347/brc_scratch/Software/Rscript.sh /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/Scripts/Git/opain/TWAS-GSEA/TWAS-GSEA.V1.2.R \
  --twas_results /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/ByPanelSet/MDD_TWAS_${set}.GW \
  --pos /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/MDD_TWAS.pos \
  --gmt_file /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/candidate.gmt \
  --qqplot F \
  --use_alt_id ID \
  --expression_ref /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/FUSION_PsychENCODE_FeaturePredictions.csv.gz \
  --n_cores 1 \
  --self_contained F \
  --min_r2 0.05 \
  --competitive T \
  --linear_p_thresh 1 \
  --covar GeneLength,NSNP \
  --output /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanelSet/${set}_GSEA_Candidate_Wray
done

# Hypo-free
for set in $(echo BRAIN HPA HPT BLOOD);do
sbatch -p brc,shared --mem=20G /users/k1806347/brc_scratch/Software/Rscript.sh /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/Scripts/Git/opain/TWAS-GSEA/TWAS-GSEA.V1.2.R \
  --twas_results /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/ByPanelSet/MDD_TWAS_${set}.GW \
  --pos /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/MDD_TWAS.pos \
  --gmt_file /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/hypofree.gmt \
  --qqplot F \
  --use_alt_id ID \
  --expression_ref /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/FUSION_PsychENCODE_FeaturePredictions.csv.gz \
  --n_cores 1 \
  --self_contained F \
  --min_r2 0.05 \
  --competitive T \
  --covar GeneLength,NSNP \
  --output /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanelSet/${set}_GSEA_Hypo_free
done

# brainspan
for set in $(echo BRAIN HPA HPT BLOOD);do
sbatch -p brc,shared --mem=20G -n 1 /users/k1806347/brc_scratch/Software/Rscript.sh /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/Scripts/Git/opain/TWAS-GSEA/TWAS-GSEA.V1.2.R \
  --twas_results /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/ByPanelSet/MDD_TWAS_${set}.GW \
  --pos /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/MDD_TWAS.pos \
  --prop_file /mnt/lustre/users/k1806347/Data/Gene_properties/Gusev_DPFC_BRAINSPAN/DFC_RIN_CLEANED.DE_ZScores.symbol.txt \
  --qqplot F \
  --use_alt_id ID \
  --expression_ref /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/FUSION_PsychENCODE_FeaturePredictions.csv.gz \
  --self_contained F \
  --min_r2 0.05 \
  --n_cores 3 \
  --linear_p_thresh 1 \
  --competitive T \
  --covar GeneLength,NSNP \
  --output /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanelSet/${set}_brainspan

done

TWAS-GSEA: Tissue-specific

library(data.table)
res<-fread('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/MDD_TWAS_AllTissues.txt')

for(i in unique(res$PANEL)){
  write.table(res[res$PANEL == i,], paste0('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/ByPanel/MDD_TWAS_',i,'.GW'), row.names=F, col.names=T, quote=F)
}
for tissue in $(cat /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWASweights_list_withPsychENCODE.txt); do

sbatch -p brc,shared --mem=20G /users/k1806347/brc_scratch/Software/Rscript.sh /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/Scripts/Git/opain/TWAS-GSEA/TWAS-GSEA.V1.2.R \
  --twas_results /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/ByPanel/MDD_TWAS_${tissue}.GW \
  --pos /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/MDD_TWAS.pos \
  --gmt_file /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/candidate.gmt \
  --qqplot F \
  --use_alt_id ID \
  --expression_ref /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/FUSION_PsychENCODE_FeaturePredictions.csv.gz \
  --n_cores 1 \
  --self_contained F \
  --linear_p_thresh 1 \
  --competitive T \
  --min_r2 0.05 \
  --covar GeneLength,NSNP \
  --output /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanel/${tissue}_GSEA_Candidate_Wray

done

for tissue in $(cat /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWASweights_list_withPsychENCODE.txt); do

sbatch -p brc,shared --mem=20G /users/k1806347/brc_scratch/Software/Rscript.sh /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/Scripts/Git/opain/TWAS-GSEA/TWAS-GSEA.V1.2.R \
  --twas_results /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/ByPanel/MDD_TWAS_${tissue}.GW \
  --pos /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/MDD_TWAS.pos \
  --gmt_file /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/hypofree.gmt \
  --qqplot F \
  --use_alt_id ID \
  --expression_ref /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/FUSION_PsychENCODE_FeaturePredictions.csv.gz \
  --self_contained F \
  --competitive T \
  --min_r2 0.05 \
  --covar GeneLength,NSNP \
  --output /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanel/${tissue}_GSEA_Hypo_free

done

# brainspan
for tissue in $(cat /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWASweights_list_withPsychENCODE.txt); do

sbatch -p brc,shared --mem=20G -n 1 /users/k1806347/brc_scratch/Software/Rscript.sh /mnt/lustre/groups/biomarkers-brc-mh/TWAS_resource/FUSION/Scripts/Git/opain/TWAS-GSEA/TWAS-GSEA.V1.2.R \
  --twas_results /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS/ByPanel/MDD_TWAS_${tissue}.GW \
  --pos /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/MDD_TWAS.pos \
  --prop_file /mnt/lustre/users/k1806347/Data/Gene_properties/Gusev_DPFC_BRAINSPAN/DFC_RIN_CLEANED.DE_ZScores.symbol.txt \
  --qqplot F \
  --use_alt_id ID \
  --expression_ref /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/FUSION_PsychENCODE_FeaturePredictions.csv.gz \
  --self_contained F \
  --min_r2 0.05 \
  --linear_p_thresh 1 \
  --n_cores 3 \
  --competitive T \
  --covar GeneLength,NSNP \
  --output /users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanel/${tissue}_brainspan

done

# Note. The individual tissue analyses return more significant findings. Instead of aggregating tissues, perhaps meta-analysis of per tissue results would be more effective.

Tabulate the results

library(data.table)

#####
# AllTissue results
#####
##
# Candidate
##

res<-fread('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/MDD_TWAS_GSEA_Candidate_Wray.competitive.txt')

res<-res[res$P.CORR < 0.05,]
res<-data.frame( GeneSet=gsub('\\.getlink.*','',res$GeneSet),
                            PMID=gsub('.*\\.','',res$GeneSet),
                            res[,c('Estimate','SE','T','N_Mem_Avail','N_Mem','P','P.CORR'),with=F])

write.csv(res, '/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/AllTissue_GSEA_Candidate_Wray_latest.competitive.Significant.csv', col.names=T, row.names=F, quote=F)

##
# Hpothesis free
##

res<-fread('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/MDD_TWAS_GSEA_Hypo_free.competitive.txt')

res<-res[res$P.CORR < 0.05,]
res<-data.frame( GeneSet=gsub('\\.getlink.*','',res$GeneSet),
                            PMID=gsub('.*\\.','',res$GeneSet),
                            res[,c('Estimate','SE','T','N_Mem_Avail','N_Mem','P','P.CORR'),with=F])

####
# Tissue-set analysis
####

res_files<-list.files(path='/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanelSet', pattern='competitive.txt')

res_files<-res_files[grepl('Candidate', res_files)]

tissue_cand_res<-list()
for(i in res_files){
tissue_cand_res[[i]]<-fread(paste0('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanelSet/',i))
tissue_cand_res[[i]]<-tissue_cand_res[[i]][tissue_cand_res[[i]]$P.CORR < 0.05,]
tissue_cand_res[[i]]<-data.frame( GeneSet=gsub('\\.getlink.*','',tissue_cand_res[[i]]$GeneSet),
                            PMID=gsub('.*\\.','',tissue_cand_res[[i]]$GeneSet),
                            tissue_cand_res[[i]][,c('Estimate','SE','T','N_Mem_Avail','N_Mem','P','P.CORR'),with=F])
}

tissue_cand_res_all<-do.call(rbind, tissue_cand_res)
tissue_cand_res_all<-tissue_cand_res_all[order(tissue_cand_res_all$P.CORR),]
tissue_cand_res_all$Tissue<-gsub('_GSEA_Candidate.*','',row.names(tissue_cand_res_all))
row.names(tissue_cand_res_all)<-NULL

write.csv(tissue_cand_res_all, '/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanelSet/TissueSet_GSEA_Candidate_Wray_latest.competitive.Significant.csv', col.names=T, row.names=F, quote=F)

res_files<-list.files(path='/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanelSet', pattern='competitive.txt')

res_files<-res_files[grepl('Hypo_free', res_files)]

tissue_hypo_res<-list()
for(i in res_files){
tissue_hypo_res[[i]]<-fread(paste0('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanelSet/',i))
tissue_hypo_res[[i]]<-tissue_hypo_res[[i]][tissue_hypo_res[[i]]$P.CORR < 0.05,]
tissue_hypo_res[[i]]<-data.frame( GeneSet=gsub('\\.getlink.*','',tissue_hypo_res[[i]]$GeneSet),
                            tissue_hypo_res[[i]][,c('Estimate','SE','T','N_Mem_Avail','N_Mem','P','P.CORR'),with=F])
}

tissue_hypo_res_all<-do.call(rbind, tissue_hypo_res)
tissue_hypo_res_all<-tissue_hypo_res_all[order(tissue_hypo_res_all$P.CORR),]
tissue_hypo_res_all$Tissue<-gsub('_GSEA_Hypo.*','',row.names(tissue_hypo_res_all))
row.names(tissue_hypo_res_all)<-NULL

####
# Tissue specific analyses
####

res_files<-list.files(path='/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanel', pattern='competitive.txt')

res_files<-res_files[grepl('Candidate', res_files)]

tissue_cand_res<-list()
for(i in res_files){
tissue_cand_res[[i]]<-fread(paste0('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanel/',i))
tissue_cand_res[[i]]<-tissue_cand_res[[i]][tissue_cand_res[[i]]$P.CORR < 0.05,]
tissue_cand_res[[i]]<-data.frame( GeneSet=gsub('\\.getlink.*','',tissue_cand_res[[i]]$GeneSet),
                            PMID=gsub('.*\\.','',tissue_cand_res[[i]]$GeneSet),
                            tissue_cand_res[[i]][,c('Estimate','SE','T','N_Mem_Avail','N_Mem','P','P.CORR'),with=F])
}

tissue_cand_res_all<-do.call(rbind, tissue_cand_res)
tissue_cand_res_all<-tissue_cand_res_all[order(tissue_cand_res_all$P.CORR),]
tissue_cand_res_all$Tissue<-gsub('_GSEA_Candidate.*','',row.names(tissue_cand_res_all))
row.names(tissue_cand_res_all)<-NULL

write.csv(tissue_cand_res_all, '/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanel/TissueSpecific_GSEA_Candidate_Wray_latest.competitive.Significant.csv', col.names=T, row.names=F, quote=F)

res_files<-list.files(path='/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanel', pattern='competitive.txt')

res_files<-res_files[grepl('Hypo_free', res_files)]

tissue_hypo_res<-list()
for(i in res_files){
tissue_hypo_res[[i]]<-fread(paste0('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanel/',i))
tissue_hypo_res[[i]]<-tissue_hypo_res[[i]][tissue_hypo_res[[i]]$P.CORR < 0.05,]
tissue_hypo_res[[i]]<-data.frame( GeneSet=gsub('\\.getlink.*','',tissue_hypo_res[[i]]$GeneSet),
                            tissue_hypo_res[[i]][,c('Estimate','SE','T','N_Mem_Avail','N_Mem','P','P.CORR'),with=F])
}

tissue_hypo_res_all<-do.call(rbind, tissue_hypo_res)
tissue_hypo_res_all<-tissue_hypo_res_all[order(tissue_hypo_res_all$P.CORR),]
tissue_hypo_res_all$Tissue<-gsub('_GSEA_Hypo.*','',row.names(tissue_hypo_res_all))
row.names(tissue_hypo_res_all)<-NULL

write.csv(tissue_hypo_res_all, '/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanel/TissueSpecific_GSEA_Hypo_free_latest.competitive.Significant.csv', col.names=T, row.names=F, quote=F)

############
# Table and make figures for brainspan enrichment analysis
############

##
# All tissue
##

library(ggplot2)
library(stringr)
library(cowplot)

res_files<-list.files(path='/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA', pattern='competitive.txt')

res_files<-res_files[grepl('brainspan', res_files)]

res<-list()
res_plot<-list()
for(i in res_files){
res[[i]]<-fread(paste0('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/',i))

res[[i]]$P.CORR<-NULL
res[[i]]$P<-2*pnorm(-abs(res[[i]]$T))

res[[i]]$Stage<-gsub('^X','',res[[i]]$GeneSet)
res[[i]]$Stage<-gsub('_pcw',' pcw',res[[i]]$Stage)
res[[i]]$Stage<-gsub('_years',' yrs',res[[i]]$Stage)
res[[i]]$Stage<-gsub('_mos',' mos',res[[i]]$Stage)
res[[i]]$Stage<-gsub('_',' - ',res[[i]]$Stage)

res[[i]]<-cbind(res[[i]],data.frame(str_split_fixed(res[[i]]$Stage, " ", 2)))
res[[i]]$X1<-as.numeric(as.character(res[[i]]$X1))
res[[i]]$X2<-factor(res[[i]]$X2, levels=c('pcw','mos','yrs'))
res[[i]]<-res[[i]][order(res[[i]]$X2,res[[i]]$X1),]
res[[i]]$Stage<-factor(res[[i]]$Stage, levels=res[[i]]$Stage)
res[[i]]$Z<-sign(res[[i]]$Estimate)*(qnorm(1-(res[[i]]$P/2)))
res[[i]]$Group<-"None"
res[[i]]$Group[res[[i]]$Estimate > 0 & res[[i]]$P < 0.05]<-'Positive'
res[[i]]$Group[res[[i]]$Estimate < 0 & res[[i]]$P < 0.05]<-'Negative'

res_plot[[i]]<-ggplot(res[[i]], aes(x=Stage, y=Z, fill=Group)) +
  geom_bar(stat="identity", position=position_dodge()) +
  theme_half_open() +
  background_grid() +
  scale_fill_manual(values=c(Positive = "#FF3333", Negative = "#3399FF", None="#999999")) +
  theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust=1), 
        legend.position = 'none') +
  ggtitle('All Tissues') +
  geom_hline(yintercept=qnorm(1-(0.05/2)),linetype="dotted") +
  geom_hline(yintercept=qnorm(1-(((0.05/dim(res[[i]])[1])/2))),linetype="dashed") +
  geom_hline(yintercept=-qnorm(1-(0.05/2)),linetype="dotted") +
  geom_hline(yintercept=-qnorm(1-(((0.05/dim(res[[i]])[1])/2))),linetype="dashed")
}

png('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/MDD_TWAS_AllTissue_BrainSpan.png', units='px', res=300, width=1500, height=1000)
plot_grid(plotlist=res_plot, ncol=1)
dev.off()

##
# Tissue set
##

library(ggplot2)
library(stringr)
library(cowplot)

res_files<-list.files(path='/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanelSet', pattern='competitive.txt')

res_files<-res_files[grepl('brainspan', res_files)]

res<-list()
res_plot<-list()
for(i in res_files){
res[[i]]<-fread(paste0('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanelSet/',i))

res[[i]]$P.CORR<-NULL
res[[i]]$P<-2*pnorm(-abs(res[[i]]$T))

res[[i]]$Stage<-gsub('^X','',res[[i]]$GeneSet)
res[[i]]$Stage<-gsub('_pcw',' pcw',res[[i]]$Stage)
res[[i]]$Stage<-gsub('_years',' yrs',res[[i]]$Stage)
res[[i]]$Stage<-gsub('_mos',' mos',res[[i]]$Stage)
res[[i]]$Stage<-gsub('_',' - ',res[[i]]$Stage)

res[[i]]<-cbind(res[[i]],data.frame(str_split_fixed(res[[i]]$Stage, " ", 2)))
res[[i]]$X1<-as.numeric(as.character(res[[i]]$X1))
res[[i]]$X2<-factor(res[[i]]$X2, levels=c('pcw','mos','yrs'))
res[[i]]<-res[[i]][order(res[[i]]$X2,res[[i]]$X1),]
res[[i]]$Stage<-factor(res[[i]]$Stage, levels=res[[i]]$Stage)
res[[i]]$Z<-sign(res[[i]]$Estimate)*(qnorm(1-(res[[i]]$P/2)))
res[[i]]$Group<-"None"
res[[i]]$Group[res[[i]]$Estimate > 0 & res[[i]]$P < 0.05]<-'Positive'
res[[i]]$Group[res[[i]]$Estimate < 0 & res[[i]]$P < 0.05]<-'Negative'

res_plot[[i]]<-ggplot(res[[i]], aes(x=Stage, y=Z, fill=Group)) +
  geom_bar(stat="identity", position=position_dodge()) +
  theme_half_open() +
  background_grid() +
  theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust=1), 
        legend.position = 'none') +
  ggtitle(gsub('_brainspan.competitive.txt','',i)) +
  geom_hline(yintercept=qnorm(1-(0.05/2)),linetype="dotted") +
  geom_hline(yintercept=qnorm(1-(((0.05/dim(res[[i]])[1])/2))),linetype="dashed") +
  scale_fill_manual(values=c(Positive = "#FF3333", Negative = "#3399FF", None="#999999")) +
  geom_hline(yintercept=-qnorm(1-(0.05/2)),linetype="dotted") +
  geom_hline(yintercept=-qnorm(1-(((0.05/dim(res[[i]])[1])/2))),linetype="dashed")
}

png('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanelSet/MDD_TWAS_ByPanelSet_BrainSpan.png', units='px', res=300, width=2500, height=1500)
plot_grid(plotlist=res_plot, ncol=2)
dev.off()

##
# Tissue-specific
##

library(ggplot2)
library(stringr)
library(cowplot)

res_files<-list.files(path='/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanel', pattern='competitive.txt')

res_files<-res_files[grepl('brainspan', res_files)]

res<-list()
res_plot<-list()
for(i in res_files){
res[[i]]<-fread(paste0('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanel/',i))

res[[i]]$P.CORR<-NULL
res[[i]]$P<-2*pnorm(-abs(res[[i]]$T))

res[[i]]$Stage<-gsub('^X','',res[[i]]$GeneSet)
res[[i]]$Stage<-gsub('_pcw',' pcw',res[[i]]$Stage)
res[[i]]$Stage<-gsub('_years',' yrs',res[[i]]$Stage)
res[[i]]$Stage<-gsub('_mos',' mos',res[[i]]$Stage)
res[[i]]$Stage<-gsub('_',' - ',res[[i]]$Stage)

res[[i]]<-cbind(res[[i]],data.frame(str_split_fixed(res[[i]]$Stage, " ", 2)))
res[[i]]$X1<-as.numeric(as.character(res[[i]]$X1))
res[[i]]$X2<-factor(res[[i]]$X2, levels=c('pcw','mos','yrs'))
res[[i]]<-res[[i]][order(res[[i]]$X2,res[[i]]$X1),]
res[[i]]$Stage<-factor(res[[i]]$Stage, levels=res[[i]]$Stage)
res[[i]]$Z<-sign(res[[i]]$Estimate)*(qnorm(1-(res[[i]]$P/2)))
res[[i]]$Group<-"None"
res[[i]]$Group[res[[i]]$Estimate > 0 & res[[i]]$P < 0.05]<-'Positive'
res[[i]]$Group[res[[i]]$Estimate < 0 & res[[i]]$P < 0.05]<-'Negative'

res_plot[[i]]<-ggplot(res[[i]], aes(x=Stage, y=Z, fill=Group)) +
  geom_bar(stat="identity", position=position_dodge()) +
  theme_half_open() +
  background_grid() +
  scale_fill_manual(values=c(Positive = "#FF3333", Negative = "#3399FF", None="#999999")) +
  theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust=1), 
        legend.position = 'none') +
  ggtitle(gsub('_brainspan.competitive.txt','',i)) +
  geom_hline(yintercept=qnorm(1-(0.05/2)),linetype="dotted") +
  geom_hline(yintercept=qnorm(1-(((0.05/dim(res[[i]])[1])/2))),linetype="dashed") +
  geom_hline(yintercept=-qnorm(1-(0.05/2)),linetype="dotted") +
  geom_hline(yintercept=-qnorm(1-(((0.05/dim(res[[i]])[1])/2))),linetype="dashed")
}

png('/users/k1806347/brc_scratch/Analyses/Lorenza/Clean/TWAS-GSEA/ByPanel/MDD_TWAS_ByPanel_BrainSpan.png', units='px', res=300, width=3000, height=7000)
plot_grid(plotlist=res_plot, ncol=2)
dev.off()

Show candidate TWAS-GSEA results

All tissue results
GeneSet PMID Estimate SE T N_Mem_Avail N_Mem P P.CORR
RBFOX2 24613350 0.08092875 0.02482267 3.260276 2445 3031 0.0005565194 0.03951288
Tissue-Set results
GeneSet PMID Estimate SE T N_Mem_Avail N_Mem P P.CORR Tissue
RBFOX2 24613350 0.10697919 0.02587590 4.134318 2373 3031 1.780048e-05 0.001263834 BRAIN
SCZ.COMPOSITE 24463508 0.11324126 0.03114801 3.635586 1343 1787 1.386748e-04 0.004922957 BRAIN
RBFOX1.RBFOX3 24613350 0.08366670 0.02424599 3.450744 2627 3400 2.795220e-04 0.006615355 BRAIN
FMRP 21784246 0.12461728 0.03715019 3.354419 937 1240 3.976596e-04 0.007058457 BRAIN
POTENTIALLY.SYNAPTIC.ALL 27694994 0.06031635 0.01988561 3.033166 4384 5736 1.210011e-03 0.017182151 BRAIN
PGC.BP.P10.4 21926972 0.18130846 0.06366349 2.847919 324 629 2.200306e-03 0.026036954 BRAIN
NEURONAL.PSD 23071613 0.08920852 0.03345738 2.666333 1131 1444 3.834183e-03 0.038889571 BRAIN
Tissue-Specific results
GeneSet PMID Estimate SE T N_Mem_Avail N_Mem P P.CORR Tissue
MIR.137 24463508 0.3550824 0.09912228 3.582266 130 421 0.0001703133 0.01021880 CMC.BRAIN.RNASEQ
SCZ.DENOVO.NONSYN 24463508 0.4039377 0.11510465 3.509308 83 604 0.0002246369 0.01168112 Pituitary
SCZ.COMPOSITE 24463508 0.2323825 0.07087671 3.278687 233 1787 0.0005214569 0.01355788 Pituitary
SCZ.COMPOSITE 24463508 0.2677617 0.08385283 3.193234 188 1787 0.0007034446 0.03235845 Brain_Caudate_basal_ganglia
CONSTRAINED 25086666 0.2667025 0.08985060 2.968289 157 1003 0.0014973135 0.03436180 CMC.BRAIN.RNASEQ
RBFOX1.RBFOX3 24613350 0.1219388 0.04167769 2.925758 938 3400 0.0017180898 0.03436180 CMC.BRAIN.RNASEQ
PGC.SCZ.P10.4 24463508 0.2749434 0.10082558 2.726921 155 442 0.0031964205 0.04794631 CMC.BRAIN.RNASEQ

Show hypothesis-free TWAS-GSEA results

Tissue-Specific results
GeneSet Estimate SE T N_Mem_Avail N_Mem P P.CORR Tissue
GO.MACROMOLECULAR.COMPLEX.BINDING 0.4625439 0.09122296 5.070477 152 1365 1.984100e-07 0.000598603 Brain_Caudate_basal_ganglia
GO.MICROTUBULE.BINDING 1.0368947 0.22172666 4.676455 25 191 1.459384e-06 0.002201480 Brain_Caudate_basal_ganglia
GO.ALCOHOL.BINDING 1.7881848 0.38352213 4.662534 8 99 1.561701e-06 0.005161421 Pituitary
GO.CHROMATIN.BINDING 0.7897970 0.18867269 4.186070 35 422 1.419132e-05 0.014077837 Brain_Caudate_basal_ganglia
GO.PROTEIN.COMPLEX.BINDING 0.4429150 0.10741456 4.123417 110 913 1.866468e-05 0.014077837 Brain_Caudate_basal_ganglia
GO.LIGAND.DEPENDENT.NUCLEAR.RECEPTOR.BINDING 1.9756846 0.49658009 3.978582 5 22 3.466376e-05 0.020916114 Brain_Caudate_basal_ganglia
GO.REGULATION.OF.INTRINSIC.APOPTOTIC.SIGNALING.PATHWAY 1.7918397 0.43272770 4.140802 6 138 1.730469e-05 0.032982733 Brain_Amygdala

Show developmental stage enrichment plots

MDD TWAS: All Tissues BrainSpan

MDD TWAS: All Tissues BrainSpan


MDD TWAS: Tissue-sets BrainSpan

MDD TWAS: Tissue-sets BrainSpan


MDD TWAS: Tissue-specific BrainSpan ***


4 Comparison with previous TWAS literature

I need Lorenza to send me the results files whe prepared previously for this comparison. Alternatively, Lorenza could run this section. The below code has not been run or edited to work with new files yet.

4.1 Wray et al. (2018) and Gaspar et al. (2019)

Show code

########################################
# Comparing our results to previous TWASs
###############################################
# our TWAS, Wray et al TWAS, Gaspar et al. TWAS

rm(list=ls())
###
# Load data
###
library(data.table)
#these are all files with significant features only. NB the Gaspar file includes findings from all snp weights from any 
#gene sign. in at least one tissue
our_hits <- fread("/users/k1806347/brc_scratch/Analyses/Lorenza/Output/raw_findings/AllTissues_CLEAN.txt")
our_hits_sign <- fread("/users/k1806347/brc_scratch/Analyses/Lorenza/Output/raw_findings/signtest.AllTissues_CLEAN.txt")
Gaspar_hits <- fread("C:/Users/loryd/Desktop/MSc dissertation/mock data/Gaspar et al. hits.txt")
Wray_hits <- fread("C:/Users/loryd/Desktop/MSc dissertation/mock data/Wray et al. hits.csv")

###
# Structure df so that they are similar
###

#1. GASPAR (NB this includes info on TWAS.Z values not p values!!!)
#melt the gaspar hits df so that it presents one column with all SNP-weigths and one with the values
Gaspar_hits2 <- melt(Gaspar_hits, id = c("target", "CHROMOSOME"))
head(Gaspar_hits2)

#rename cols
Gaspar_hits2$PANEL <- Gaspar_hits2$variable
Gaspar_hits2$TWAS.Z <- Gaspar_hits2$value

Gaspar_hits2$variable <- NULL
Gaspar_hits2$value <- NULL

#2. Wray et al 

#keep panel, ID, and TWAS.P & TWAS.Z info only 
library(tidyverse)
Wray_hits <- as_tibble(Wray_hits)
Wray_hits
Wray_hits_filt <- Wray_hits %>% select("Gene", "CHR", "TWAS.Z", "TWAS.P")


#ALL
#rename columns so they all correspond 
Gaspar_hits2$ID <- Gaspar_hits2$target
Gaspar_hits2$CHR <- Gaspar_hits2$CHROMOSOME
str(Gaspar_hits2)

Gaspar_hits2$target <- NULL
Gaspar_hits2$CHROMOSOME <- NULL

Wray_hits_filt$ID <- Wray_hits_filt$Gene
Wray_hits_filt$Gene <- NULL


#filter our findings for the  cols needed only 
our_hits <- as_tibble(our_hits)
colnames(our_hits)
our_hits_filt <- our_hits %>% select("PANEL", "PANEL_clean_short", "ID", "CHR", "P0", "P1", "TWAS.Z", "TWAS.P")

###
# Fix SNP-weights 
###
#No need for this
#Wray_hits_filt$PANEL_Wray <- "CMC DLPFC"
#our_hits_filt$PANEL_DallAglio <- our_hits_filt$PANEL_clean_short
#Gaspar_hits2$PANEL_Gaspar <- Gaspar_hits2$PANEL_Gaspar

###
# Filter our findings for any gene significant in either study 
###

sign_genes_our <- our_hits_sign$ID
sign_genes_Wray <- Wray_hits_filt$ID
sign_genes_Gaspar <- Gaspar_hits2$ID

Gaspar <- unique(sign_genes_Gaspar) #25 unique genes
Wray <- unique(sign_genes_Wray) #17 unique genes
Us <- unique(sign_genes_our) #91 unique genes 

#create a general variable with all sign. genes in any paper
All <- c(Gaspar, Wray, Us)
All #133 features

#keep only unique gene IDs
All_unique <- unique(All)
All_unique #106 genes

###
#Keep only genes sign, in either of the three studies
###

#filter by genes which are in the vector containing sign. features in any of the studies
our_hits_final <- our_hits_filt[(our_hits_filt$ID %in% All_unique), ]  #629 observations

#keep only unique genes in our study (those with the greatest absolute z-score)
our_hits_final<-our_hits_final[!is.na(our_hits_final$TWAS.Z),]
our_hits_final2 <- our_hits_final[order(abs(our_hits_final$TWAS.Z), decreasing = T), ]
library(dplyr)
our_hits_final3  <- our_hits_final2 %>% distinct(ID, .keep_all = T) #102 obs.

our_hits_correct <- our_hits_final3

#keep only unique genes in the Gaspar et al study 
Gaspar_hits2b<-Gaspar_hits2[!is.na(Gaspar_hits2$TWAS.Z),]
Gaspar_hits3 <- Gaspar_hits2b[order(abs(Gaspar_hits2b$TWAS.Z), decreasing = T), ]
library(dplyr)
Gaspar_hits4  <- Gaspar_hits3 %>% distinct(ID, .keep_all = T) #25 gene IDs, as expected 

Gaspar_correct <- Gaspar_hits4

#NB no need to keep only unique genes for the Wray et al TWAS as that is tested in one tissue only
#exclude missings in the Wray et al 
Wray_hits_correct <- Wray_hits_filt[!is.na(Wray_hits_filt$TWAS.Z), ] 
Wray_hits_correct

###
# Change the names of variables which have the same col name but distinct values across the three df
###

Gaspar_correct$Gaspar_TWAS.Z <- Gaspar_correct$TWAS.Z
Gaspar_correct$TWAS.Z <- NULL

Wray_hits_correct$Wray_TWAS.Z <- Wray_hits_correct$TWAS.Z
Wray_hits_correct$TWAS.Z <- NULL

Wray_hits_correct$Wray_TWAS.P <- Wray_hits_correct$TWAS.P
Wray_hits_correct$TWAS.P <- NULL

our_hits_correct$DallAglio_TWAS.Z <- our_hits_correct$TWAS.Z
our_hits_correct$DallAglio_TWAS.P <- our_hits_correct$TWAS.P

our_hits_correct$TWAS.Z <- NULL
our_hits_correct$TWAS.P <- NULL
our_hits_correct$PANEL <- NULL
our_hits_correct$PANEL_clean_short <- NULL


Wray_hits_correct$CHR <- NULL
Wray_hits_correct$Wray_TWAS.P <- NULL
Wray_hits_correct$TWAS.P <- NULL


Gaspar_correct$CHR <- NULL
Gaspar_correct$PANEL <- NULL

###
#join your hits with the hits from the wray et al. paper and Gaspar et al paper
###
#since the three tibbles do not have the same nrow, we cannot use merge. But we can use full_join

Gaspar_correct <- as_tibble(Gaspar_correct) #transform all df into tibbles to use full join. the other two
##df are already tibbles. this was the only one left to convert

#join hits bw Gaspar and our study
table_correct<- full_join(our_hits_correct, Gaspar_correct) #dim 106, 7

#merge the newly created table with the wray et al findings too
table_correct2 <- full_join(table_correct, Wray_hits_correct)  #dim 106, 8 


#check that no gene is repeated and that z-scores are present for the three studies (should be high z-scores)
table_correct2 <- table_correct2[order(table_correct2$ID), ]
table_correct2 #everything looks fine

#delete the Dall'Aglio TWAS.P col 
table_correct2$DallAglio_TWAS.P <- NULL

#add a column saying whether the gene was transcriptome-wide sign. in our study 
table_correct2$Transcriptome_wide_sign_DallAglio <- ifelse(table_correct2$DallAglio_TWAS.Z > 4.74 | table_correct2$DallAglio_TWAS.Z < -4.74, "Sign.", "Not Sign.")

###
# Clean up and save
###

my_data <- as_data_frame(table_correct2)
colnames(my_data)

col_order <- c("ID", "Gaspar_TWAS.Z", "Wray_TWAS.Z", "DallAglio_TWAS.Z", "Transcriptome_wide_sign_DallAglio")
my_data2 <- my_data[, col_order]
my_data2


#save as csv file (each df col is treated as independent col, +excel format)
write.csv(my_data2, '/users/k1806347/brc_scratch/Analyses/Lorenza/Output/table/comparison_previousTWASs.csv', row.names=F)
my_data2

Findings When comparing the Wray et al. (2018) results from the CMC DLPFC with our findings, we can observe that we obtained identical results in terms of TWAS z-values. This is true also for two genes which do not show concordance in effect size: SLC25A17 and DENND1B. This is due to us findings stronger associations in those genes in panels which were not tested by the Wray et al study (i.e. the nucleus accumbens and the CMC DLPFC splicing). Generally, Wray et al. (2018) identified a greater number of associations, but this was due to the lower multiple testing burden they presented as opposed to our study which tested 20 SNP-weight sets instead of one.

When comparing the Gaspar et al. (2019) results with our findings, it can be noted that results were generally very similar. Inconsistencies were present in four genes (DENND1B, KLC1, ZMYND8, ZNF165), where different directions of effect were identified. This is due to (i) the association being the strongest in our study within the CMC DLPFC splicing panel (where inconsistent direction of effects are generally present), (ii) our finding being from a SNP-weight panel not tested in the Gaspar et al. study (e.g. KLC1 z-score = -4.7 for the thyroid and ZNF165 z-score = 4.18 for the thyroid tissue), (iii) the Gaspar et al. study testing SNP-weight panels we did not test (e.g. for ZMYND8, a high z-score was found by them in the DGN whole blood panel). Interestingly, four associations within genes which were not tested in our study due to their low heritability in the tested SNP-weights were instead identified by the Gaspar study, namely BTN1A1, HIST1H2AK, TMEM33, TMX2.These were the strongest and significant in the DGN blood weight set (for BTN1A1, HIST1H2AK and TMX2), and in the GTEx cerebellum SNPweight set for TMEM33. The latter is of high interest since the same SNP-weight was tested in our study, but it could not surpass the heritability threshold for feature selection.

5 Comparison with the observed gene expression TWAS of depression

5.1 Our finding compared to those from Jansen et al. (2016)

Show code

##################
# Comparing our findings to the findings from Jansen et al. (TWAS of observed gene expression)
##################

###
# Load data
###

rm(list=ls())

library(data.table)
library(dplyr)
our_hits <- fread("/users/k1806347/brc_scratch/Analyses/Lorenza/Output/raw_findings/signtest.AllTissues_CLEAN.txt")
Jansen_alloutput <- fread("C:/Users/loryd/Desktop/MSc dissertation/mock data/Jansen et al. hits.csv")
our_alloutput <- fread("/users/k1806347/brc_scratch/Analyses/Lorenza/Output/raw_findings/AllTissues_CLEAN.txt")

#filter for significant features only in the Jansen paper
colnames(Jansen_alloutput)
Jansen_sign <- filter(Jansen_alloutput, Jansen_alloutput$`FDR control vs current`< 0.1) #this is for the Jansenvsour study comparison

#keep only needed columns in both df 
library(tidyverse)
our_hits <- as_tibble(our_hits)
our_hits
our_hits_filt <- our_hits %>% select("ID", "CHR", "P0", "P1", "TWAS.Z", "TWAS.P", "PANEL_clean_short")


###
#Comparing our results vs Jansen et al's 
###
our_hits[order(our_hits$ID), ]
Jansen_alloutput[order(Jansen_alloutput$Gene), ]

table_ourvsJansen2 <- merge(our_hits, Jansen_alloutput, by.x = "ID", by.y = "Gene")

validated <- table_ourvsJansen2[(table_ourvsJansen2$`P control vs current`< 0.05), ]
#42 features which were significant in our study, were also nominally significant in their study (for either one of the three comparison types)

unique(validated$ID)
#these 42 hits corresponded to 14 unique genes
#[1] "ANKRD44"  "CKB"      "COQ3"     "DLST"     "EP300"    "FLOT1"    "OSBPL3"   "PCDHA8"   "RAB27B"  
#[10] "RERE"     "SYNE2"    "TMEM106B" "TRMT61A"  "ZSCAN16" 

nrow(validated)  #42 rows


###
#create a table comparing our findings to theirs
###

#Order cols as you like
library(tibble)
validated <- as_data_frame(validated)
colnames(validated)

#order the table by CHR and then P0
str(validated)
validated$CHR <- as.numeric(as.character(validated$CHR))
validated$P0 <- as.numeric(as.character(validated$P0))
validated <- validated[order(validated$CHR, validated$P0), ]


#fix columns
validated$Location <- paste0('chr',validated$CHR,':', validated$P0,'-',validated$P1)
validated$DallAglio_Zscore <- validated$TWAS.Z
validated$DallAglio_pvalue <- validated$TWAS.P
validated$Jansen_pvalue_controlsvscurrent <- validated$`P control vs current` 
validated$Jansen_zscore_controlsvscurrent <- validated$`B control vs current`

#set a column order
col_order <- c("Location", "ID", "PANEL_clean_short", "DallAglio_Zscore", "Jansen_zscore_controlsvscurrent", "DallAglio_pvalue", "Jansen_pvalue_controlsvscurrent")

validated <- validated[, col_order]
validated

#add columns with 1) whether assoc. surpass the bonferroni threshold, 2) specifying whether the direction
# of effects is consistent across the two studies

#1) Add the column with surpassing the Bonferroni sign. or not
0.05 / 14    #Bonf. significance = nominal p value / number of unique genes
# = 0.003571429

validated$Bonf_validated <- ifelse(validated$Jansen_pvalue_controlsvscurrent < 0.003571429, "Yes", "No")

#2) add the column specifying whether direction of effects is consistent

validated$Consistent_dir_effect <- ifelse((validated$Jansen_zscore_controlsvscurrent > 0 & validated$DallAglio_Zscore > 0) | (validated$Jansen_zscore_controlsvscurrent < 0 & validated$DallAglio_Zscore <0), "Yes", "No")

sum(validated$Consistent_dir_effect == "Yes")  #17 associations present the same direction of effect
sum(validated$Consistent_dir_effect == "No") #25 associations present a different direction of effect

sum(validated$Bonf_validated == "Yes") #12 associations Bonferroni validated
print(validated$ID[validated$Bonf_validated == "Yes"]) # "RERE"     "RERE"     "TMEM106B" "TMEM106B" "TMEM106B" "TMEM106B" "TMEM106B" "TMEM106B" "TMEM106B"
#"TMEM106B" "EP300"    "EP300" 

#these 12 validated associations come from 3 unique genes = RERE, TMEM106B, EP300

#change col order again
col_order_2 <- c("Location", "ID", "PANEL_clean_short", "DallAglio_Zscore", "Jansen_zscore_controlsvscurrent", "DallAglio_pvalue", "Jansen_pvalue_controlsvscurrent", "Consistent_dir_effect", "Bonf_validated")

validated <- validated[, col_order_2]
head(validated)


#save as csv file (each df col is treated as independent col, +excel format)
write.csv(validated, '/users/k1806347/brc_scratch/Analyses/Lorenza/Output/table/OurFindingsvsJansen_correct.csv', row.names = F)

validated

Findings When comparing our findings to those from Jansen et al. (2016) it can be observed that their results could validate 42 of our associations at a nominal p-value level and 12 at a Bonferroni significance level. Of these associations, 14 and 3 unique genes could be validated, respectively. The three Bonferroni validated genes include RERE, TMEM106B, EP300. However, for RERE, TMEM106B, inconsistent direction of effect was generally present. Contrarily, EP300 was consistently upregulated in both studies.

5.1.1 Jansen et al. (2016) findings compared to ours

Show code

####
# Comparing the Jansen et al results to ours 
####
#this script is the continuation of the one before

#order both df by gene ID
our_alloutput[order(our_alloutput$ID), ]
Jansen_sign[order(Jansen_sign$Gene), ]

#merge
table_Jansenvsours <- merge(our_alloutput, Jansen_sign, by.x = "ID", by.y = "Gene")

Replicated_byus <- table_Jansenvsours[(table_Jansenvsours$TWAS.P < 0.05), ]
#54 observations

unique(Replicated_byus$ID)
#pertain to 28 IDs:  [1] "AMICA1"  "ARHGEF7" "ARL4C"   "ASPH"    "CCDC116" "CD47"    "COA1"    "CPEB4"   "DDHD1"   "DENND4C" "FBXO3"   "GNPTAB" 
#[13] "GOT2"    "IL6R"    "INVS"    "KTN1"    "MBNL1"   "MEFV"    "MTSS1"   "MYH9"    "NAPG"    "NCALD"   "NUPL2"   "OSTM1"  
#[25] "PAPPA2"  "SP4"     "TMEM136" "TMEM64"

###
#FIx the table
###

#Order cols as you like
library(tibble)
Replicated_byus <- as_data_frame(Replicated_byus)
colnames(Replicated_byus)

#order the table by CHR and then P0
str(Replicated_byus)
Replicated_byus$CHR <- as.numeric(as.character(Replicated_byus$CHR))
Replicated_byus$P0 <- as.numeric(as.character(Replicated_byus$P0))
Replicated_byus$P1 <- as.numeric(as.character(Replicated_byus$P1))

Replicated_byus <- Replicated_byus[order(Replicated_byus$CHR, Replicated_byus$P0), ]


#fix columns
Replicated_byus$Location <- paste0('chr',Replicated_byus$CHR,':', Replicated_byus$P0,'-',Replicated_byus$P1)
Replicated_byus$DallAglio_Zscore <- Replicated_byus$TWAS.Z
Replicated_byus$DallAglio_pvalue <- Replicated_byus$TWAS.P
Replicated_byus$Jansen_pvalue_controlsvscurrent <- Replicated_byus$`P control vs current` 
Replicated_byus$Jansen_zscore_controlsvscurrent <- Replicated_byus$`B control vs current`

#set a column order
col_order3 <- c("Location", "ID", "PANEL_clean_short", "DallAglio_Zscore", "Jansen_zscore_controlsvscurrent", "DallAglio_pvalue", "Jansen_pvalue_controlsvscurrent")

Replicated_byus <- Replicated_byus[, col_order3]
Replicated_byus

#add columns with 1) whether assoc. surpass the bonferroni threshold, 2) specifying whether the direction
# of effects is consistent across the two studies

#1) Add the column with surpassing the Bonferroni sign. or not
0.05 / 28    #Bonf. significance = nominal p value / number of unique genes
# = 0.001785714

Replicated_byus$Bonf_validated <- ifelse(Replicated_byus$DallAglio_pvalue < 0.001785714, "Yes", "No")

#2) add the column specifying whether direction of effects is consistent

Replicated_byus$Consistent_dir_effect <- ifelse((Replicated_byus$Jansen_zscore_controlsvscurrent > 0 & Replicated_byus$DallAglio_Zscore > 0) | (Replicated_byus$Jansen_zscore_controlsvscurrent < 0 & Replicated_byus$DallAglio_Zscore <0), "Yes", "No")

sum(Replicated_byus$Consistent_dir_effect == "Yes")  #26 associations present the same direction of effect
sum(Replicated_byus$Consistent_dir_effect == "No") #28 associations present a different direction of effect

sum(Replicated_byus$Bonf_validated == "Yes") #9 associations Bonferroni validated
print(Replicated_byus$ID[Replicated_byus$Bonf_validated == "Yes"]) 
# "PAPPA2" "MBNL1"  "TMEM64" "TMEM64" "TMEM64" "TMEM64" "GNPTAB" "KTN1"   "KTN1"

#these come from 5 unique genes = PAPPA2, MBNL1, TMEM64, GNPTAB, KTN1 

#change col order again
col_order_3 <- c("Location", "ID", "PANEL_clean_short", "DallAglio_Zscore", "Jansen_zscore_controlsvscurrent", "DallAglio_pvalue", "Jansen_pvalue_controlsvscurrent", "Consistent_dir_effect", "Bonf_validated")

Replicated_byus <- Replicated_byus[, col_order_3]
head(Replicated_byus)


#save as csv file 
write.csv(Replicated_byus, '/users/k1806347/brc_scratch/Analyses/Lorenza/Output/table/Jansenvsourfindings_correct.csv', row.names = F)

Replicated_byus

Findings 54 associations in the Jansen et al. (2016) study were replicated by our findings at the nominal level in any tissue, while 9 at a Bonferroni significance threshold. Of these, 28 and 5 were from unique genes, respectively. Such unique genes are PAPPA2, MBNL1, TMEM64, GNPTAB, KTN1. Of note, half of the feature associations presented the same direction of effect.


Report ended